Update of /cvsroot/sunxacml/sunxacml/com/sun/xacml
In directory sc8-pr-cvs1:/tmp/cvs-serv8392/com/sun/xacml
Modified Files:
Target.java
Log Message:
Updated comments for constructor
Index: Target.java
===================================================================
RCS file: /cvsroot/sunxacml/sunxacml/com/sun/xacml/Target.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Target.java 29 Aug 2003 18:58:32 -0000 1.4
--- Target.java 30 Sep 2003 14:51:58 -0000 1.5
***************
*** 70,79 ****
* Constructor that creates a <code>Target</code> from components.
*
! * @param subjects a <code>List</code> containing the subjects or null
! * if this represents AnySubject
! * @param resources a <code>List</code> containing the resources or null
! * if this represents AnyResource
! * @param actions a <code>List</code> containing the actions or null
! * if this represents AnyAction
*/
public Target(List subjects, List resources, List actions) {
--- 70,82 ----
* Constructor that creates a <code>Target</code> from components.
*
! * @param subjects A <code>List</code> containing the subjects or null
! * if this represents AnySubject. The list is of the
! * form described in <code>getSubjects</code>.
! * @param resources A <code>List</code> containing the resources or null
! * if this represents AnyResource The list is of the
! * form described in <code>getResources</code>.
! * @param actions A <code>List</code> containing the actions or null
! * if this represents AnyAction The list is of the
! * form described in <code>getActions</code>.
*/
public Target(List subjects, List resources, List actions) {
|