[jboss-cvs] jboss-seam/src/main/org/jboss/seam/security/acl ...

Shane Bryzak Shane_Bryzak at symantec.com
Thu Oct 19 00:13:45 EDT 2006


  User: sbryzak2
  Date: 06/10/19 00:13:45

  Modified:    src/main/org/jboss/seam/security/acl  AclProvider.java
  Log:
  changed parameter type, fixed javadoc
  
  Revision  Changes    Path
  1.2       +6 -7      jboss-seam/src/main/org/jboss/seam/security/acl/AclProvider.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: AclProvider.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/security/acl/AclProvider.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- AclProvider.java	18 Oct 2006 05:16:33 -0000	1.1
  +++ AclProvider.java	19 Oct 2006 04:13:45 -0000	1.2
  @@ -1,9 +1,8 @@
   package org.jboss.seam.security.acl;
   
  +import java.security.Principal;
   import java.security.acl.Acl;
   
  -import org.jboss.seam.security.Authentication;
  -
   /**
    * Provides a list of Acls for an object.
    *
  @@ -15,16 +14,16 @@
      * Return all Acls for the specified object.
      *
      * @param value Object
  -   * @return Permissions
  +   * @return Acl
      */
     Acl getAcls(Object value);
   
     /**
  -   * Return all Acls for the specified object that apply to the specified Authentication.
  +   * Return all Acls for the specified object that apply to the specified Principal.
      *
      * @param value Object
  -   * @param auth Authentication
  -   * @return Permissions
  +   * @param principal Principal
  +   * @return Acl
      */
  -  Acl getAcls(Object value, Authentication auth);
  +  Acl getAcls(Object value, Principal principal);
   }
  
  
  



More information about the jboss-cvs-commits mailing list