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

Shane Bryzak Shane_Bryzak at symantec.com
Wed Dec 13 00:08:53 EST 2006


  User: sbryzak2
  Date: 06/12/13 00:08:53

  Modified:    src/main/org/jboss/seam/security  Identity.java
  Log:
  added security manager dependencies
  
  Revision  Changes    Path
  1.3       +3 -2      jboss-seam/src/main/org/jboss/seam/security/Identity.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Identity.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/security/Identity.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- Identity.java	4 Dec 2006 04:23:51 -0000	1.2
  +++ Identity.java	13 Dec 2006 05:08:53 -0000	1.3
  @@ -1,18 +1,19 @@
   package org.jboss.seam.security;
   
  -import static org.jboss.seam.ScopeType.SESSION;
  -
   import java.io.Serializable;
   import java.security.Principal;
   
  +import static org.jboss.seam.ScopeType.SESSION;
   import org.jboss.seam.Component;
   import org.jboss.seam.ScopeType;
  +import org.jboss.seam.annotations.Install;
   import org.jboss.seam.annotations.Name;
   import org.jboss.seam.annotations.Scope;
   import org.jboss.seam.contexts.Contexts;
   
   @Name("org.jboss.seam.security.identity")
   @Scope(SESSION)
  + at Install(dependencies = "org.jboss.seam.securityManager")
   public abstract class Identity implements Principal, Serializable
   {
     protected boolean authenticated;
  
  
  



More information about the jboss-cvs-commits mailing list