Update of /cvsroot/sunxacml/sunxacml/com/sun/xacml/finder
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21703/com/sun/xacml/finder
Modified Files:
AttributeFinder.java PolicyFinder.java ResourceFinder.java
Log Message:
updated javadoc to make get/set module parameters clearer
Index: ResourceFinder.java
===================================================================
RCS file: /cvsroot/sunxacml/sunxacml/com/sun/xacml/finder/ResourceFinder.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** ResourceFinder.java 4 Jun 2004 17:50:40 -0000 1.5
--- ResourceFinder.java 18 Jan 2006 15:49:26 -0000 1.6
***************
*** 3,7 ****
* @(#)ResourceFinder.java
*
! * Copyright 2003-2004 Sun Microsystems, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
--- 3,7 ----
* @(#)ResourceFinder.java
*
! * Copyright 2003-2006 Sun Microsystems, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
***************
*** 104,111 ****
/**
! * Returns the ordered <code>List</code> of modules used by this class
! * to find resources.
*
! * @return the list of modules used by this class
*/
public List getModules() {
--- 104,111 ----
/**
! * Returns the ordered <code>List</code> of
! * <code>ResourceFinderModule</code>s used by this class to find resources.
*
! * @return a <code>List</code> of <code>ResourceFinderModule</code>s
*/
public List getModules() {
***************
*** 114,121 ****
/**
! * Sets the ordered <code>List</code> of modules used by this class
! * to find resources. The ordering will be maintained.
*
! * @param modules the modules this class will use
*/
public void setModules(List modules) {
--- 114,121 ----
/**
! * Sets the ordered <code>List</code> of <code>ResourceFinderModule</code>s
! * used by this class to find resources. The ordering will be maintained.
*
! * @param modules a code>List</code> of <code>ResourceFinderModule</code>s
*/
public void setModules(List modules) {
Index: AttributeFinder.java
===================================================================
RCS file: /cvsroot/sunxacml/sunxacml/com/sun/xacml/finder/AttributeFinder.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** AttributeFinder.java 4 Jun 2004 17:50:40 -0000 1.5
--- AttributeFinder.java 18 Jan 2006 15:49:26 -0000 1.6
***************
*** 3,7 ****
* @(#)AttributeFinder.java
*
! * Copyright 2003-2004 Sun Microsystems, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
--- 3,7 ----
* @(#)AttributeFinder.java
*
! * Copyright 2003-2006 Sun Microsystems, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
***************
*** 100,107 ****
/**
! * Returns the ordered <code>List</code> of modules used by this class
! * to find attribute values.
*
! * @return the list of modules used by this class
*/
public List getModules() {
--- 100,108 ----
/**
! * Returns the ordered <code>List</code> of
! * <code>AttributeFinderModule</code>s used by this class to find
! * attribute values.
*
! * @return a <code>List</code> of <code>AttributeFinderModule</code>s
*/
public List getModules() {
***************
*** 110,117 ****
/**
! * Sets the ordered <code>List</code> of modules used by this class
! * to find attribute values. The ordering will be maintained.
*
! * @param modules the modules this class will use
*/
public void setModules(List modules) {
--- 111,120 ----
/**
! * Sets the ordered <code>List</code> of
! * <code>AttributeFinderModule</code>s used by this class to find
! * attribute values. The ordering will be maintained.
*
! * @param modules a <code>List</code> of
! * <code>AttributeFinderModule</code>s
*/
public void setModules(List modules) {
Index: PolicyFinder.java
===================================================================
RCS file: /cvsroot/sunxacml/sunxacml/com/sun/xacml/finder/PolicyFinder.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** PolicyFinder.java 13 Jan 2006 22:32:52 -0000 1.6
--- PolicyFinder.java 18 Jan 2006 15:49:26 -0000 1.7
***************
*** 3,7 ****
* @(#)PolicyFinder.java
*
! * Copyright 2003-2005 Sun Microsystems, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
--- 3,7 ----
* @(#)PolicyFinder.java
*
! * Copyright 2003-2006 Sun Microsystems, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
***************
*** 98,105 ****
/**
! * Returns the unordered <code>Set</code> of modules used by this class
! * to find policies.
*
! * @return the set of modules used by this class
*/
public Set getModules() {
--- 98,105 ----
/**
! * Returns the unordered <code>Set</code> of
! * <code>PolicyFinderModule</code>s used by this class to find policies.
*
! * @return a <code>Set</code> of <code>PolicyFinderModule</code>s
*/
public Set getModules() {
***************
*** 108,115 ****
/**
! * Sets the unordered <code>Set</code> of modules used by this class
! * to find policies.
*
! * @param modules the modules this class will use
*/
public void setModules(Set modules) {
--- 108,115 ----
/**
! * Sets the unordered <code>Set</code> of <code>PolicyFinderModule</code>s
! * used by this class to find policies.
*
! * @param modules a <code>Set</code> of <code>PolicyFinderModule</code>s
*/
public void setModules(Set modules) {
|