adc         2004/07/11 14:37:10

  Modified:    modules/security/src/java/org/apache/geronimo/security/deploy
                        Security.java
  Log:
  Updated to reflect schema.
  
  Revision  Changes    Path
  1.3       +10 -1     
incubator-geronimo/modules/security/src/java/org/apache/geronimo/security/deploy/Security.java
  
  Index: Security.java
  ===================================================================
  RCS file: 
/home/cvs/incubator-geronimo/modules/security/src/java/org/apache/geronimo/security/deploy/Security.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Security.java     27 Jun 2004 18:17:52 -0000      1.2
  +++ Security.java     11 Jul 2004 21:37:10 -0000      1.3
  @@ -26,9 +26,18 @@
    */
   public class Security implements Serializable {
   
  +    private boolean doAsCurrentCaller;
       private boolean useContextHandler;
       private DefaultPrincipal defaultPrincipal;
       private Set roleMappings = new HashSet();
  +
  +    public boolean isDoAsCurrentCaller() {
  +        return doAsCurrentCaller;
  +    }
  +
  +    public void setDoAsCurrentCaller(boolean doAsCurrentCaller) {
  +        this.doAsCurrentCaller = doAsCurrentCaller;
  +    }
   
       public boolean isUseContextHandler() {
           return useContextHandler;
  
  
  

Reply via email to