You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by at...@apache.org on 2008/09/05 09:26:09 UTC

svn commit: r692363 - /portals/jetspeed-2/portal/branches/security-refactoring/jetspeed-api/src/main/java/org/apache/jetspeed/security/spi/JetspeedPrincipalAccessManager.java

Author: ate
Date: Fri Sep  5 00:26:09 2008
New Revision: 692363

URL: http://svn.apache.org/viewvc?rev=692363&view=rev
Log:
Fixing the associations acess methods

Modified:
    portals/jetspeed-2/portal/branches/security-refactoring/jetspeed-api/src/main/java/org/apache/jetspeed/security/spi/JetspeedPrincipalAccessManager.java

Modified: portals/jetspeed-2/portal/branches/security-refactoring/jetspeed-api/src/main/java/org/apache/jetspeed/security/spi/JetspeedPrincipalAccessManager.java
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/branches/security-refactoring/jetspeed-api/src/main/java/org/apache/jetspeed/security/spi/JetspeedPrincipalAccessManager.java?rev=692363&r1=692362&r2=692363&view=diff
==============================================================================
--- portals/jetspeed-2/portal/branches/security-refactoring/jetspeed-api/src/main/java/org/apache/jetspeed/security/spi/JetspeedPrincipalAccessManager.java (original)
+++ portals/jetspeed-2/portal/branches/security-refactoring/jetspeed-api/src/main/java/org/apache/jetspeed/security/spi/JetspeedPrincipalAccessManager.java Fri Sep  5 00:26:09 2008
@@ -37,21 +37,21 @@
 
     List<String> getPrincipalNames(String nameFilter, JetspeedPrincipalType type);
 
-    List<JetspeedPrincipal> getAssociatedFrom(String principalName, JetspeedPrincipalType type, String associationName);
+    List<JetspeedPrincipal> getAssociatedFrom(String principalName, JetspeedPrincipalType from, JetspeedPrincipalType to, String associationName);
 
-    List<JetspeedPrincipal> getAssociatedFrom(Long principalId, JetspeedPrincipalType type, String associationName);
+    List<JetspeedPrincipal> getAssociatedFrom(Long principalId, JetspeedPrincipalType from, JetspeedPrincipalType to, String associationName);
 
-    List<JetspeedPrincipal> getAssociatedTo(String principalName, JetspeedPrincipalType type, String associationName);
+    List<JetspeedPrincipal> getAssociatedTo(String principalName, JetspeedPrincipalType from, JetspeedPrincipalType to, String associationName);
 
-    List<JetspeedPrincipal> getAssociatedTo(Long principalId, JetspeedPrincipalType type, String associationName);
+    List<JetspeedPrincipal> getAssociatedTo(Long principalId, JetspeedPrincipalType from, JetspeedPrincipalType to, String associationName);
 
-    List<String> getAssociatedNamesFrom(String principalName, JetspeedPrincipalType type, String associationName);
+    List<String> getAssociatedNamesFrom(String principalName, JetspeedPrincipalType from, JetspeedPrincipalType to, String associationName);
 
-    List<String> getAssociatedNamesFrom(Long principalId, JetspeedPrincipalType type, String associationName);
+    List<String> getAssociatedNamesFrom(Long principalId, JetspeedPrincipalType from, JetspeedPrincipalType to, String associationName);
 
-    List<String> getAssociatedNamesTo(String principalName, JetspeedPrincipalType type, String associationName);
+    List<String> getAssociatedNamesTo(String principalName, JetspeedPrincipalType from, JetspeedPrincipalType to, String associationName);
 
-    List<String> getAssociatedNamesTo(Long principalId, JetspeedPrincipalType type, String associationName);
+    List<String> getAssociatedNamesTo(Long principalId, JetspeedPrincipalType from, JetspeedPrincipalType to, String associationName);
 
     List<String> getPrincipals(JetspeedPermission permission);
 



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-dev-help@portals.apache.org