[jboss-cvs] jboss-tomcat/src/main/org/jboss/web/tomcat/security/authorization ...

Anil Saldhana anil.saldhana at jboss.com
Tue Jul 25 13:07:23 EDT 2006


  User: asaldhana
  Date: 06/07/25 13:07:23

  Modified:    src/main/org/jboss/web/tomcat/security/authorization 
                        WebXACMLPolicyModuleHelper.java
  Log:
  JBAS-3374: Use the base class logger
  
  Revision  Changes    Path
  1.4       +5 -7      jboss-tomcat/src/main/org/jboss/web/tomcat/security/authorization/WebXACMLPolicyModuleHelper.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: WebXACMLPolicyModuleHelper.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-tomcat/src/main/org/jboss/web/tomcat/security/authorization/WebXACMLPolicyModuleHelper.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- WebXACMLPolicyModuleHelper.java	7 Jul 2006 16:42:28 -0000	1.3
  +++ WebXACMLPolicyModuleHelper.java	25 Jul 2006 17:07:23 -0000	1.4
  @@ -37,24 +37,22 @@
   import com.sun.xacml.Policy;
   import com.sun.xacml.ctx.RequestCtx; 
   
  -//$Id: WebXACMLPolicyModuleHelper.java,v 1.3 2006/07/07 16:42:28 asaldhana Exp $
  +//$Id: WebXACMLPolicyModuleHelper.java,v 1.4 2006/07/25 17:07:23 asaldhana Exp $
   
   /**
    *  XACML based authorization module helper that deals with the web layer 
    *  authorization decisions
    *  @author <a href="mailto:Anil.Saldhana at jboss.org">Anil Saldhana</a>
    *  @since  Jun 13, 2006 
  - *  @version $Revision: 1.3 $
  + *  @version $Revision: 1.4 $
    */
   public class WebXACMLPolicyModuleHelper extends AuthorizationModuleHelper
   { 
  -   private static Logger log = Logger.getLogger(WebXACMLPolicyModuleHelper.class);
  -   private boolean trace = log.isTraceEnabled();
  -   
  -   private PolicyRegistration authzManager = null;
      
      public WebXACMLPolicyModuleHelper()
      {  
  +      log = Logger.getLogger(getClass());
  +      trace = log.isTraceEnabled();
      }
    
      /**
  
  
  



More information about the jboss-cvs-commits mailing list