You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2011/10/22 23:07:54 UTC

svn commit: r1187784 - in /tomcat/trunk/java/org/apache/catalina/authenticator: Constants.java LocalStrings.properties SavedRequest.java SingleSignOnEntry.java mbeans-descriptors.xml

Author: markt
Date: Sat Oct 22 21:07:53 2011
New Revision: 1187784

URL: http://svn.apache.org/viewvc?rev=1187784&view=rev
Log:
Whitespace removal from /java/org/apache/catalina/authenticator

Modified:
    tomcat/trunk/java/org/apache/catalina/authenticator/Constants.java
    tomcat/trunk/java/org/apache/catalina/authenticator/LocalStrings.properties
    tomcat/trunk/java/org/apache/catalina/authenticator/SavedRequest.java
    tomcat/trunk/java/org/apache/catalina/authenticator/SingleSignOnEntry.java
    tomcat/trunk/java/org/apache/catalina/authenticator/mbeans-descriptors.xml

Modified: tomcat/trunk/java/org/apache/catalina/authenticator/Constants.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/authenticator/Constants.java?rev=1187784&r1=1187783&r2=1187784&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/authenticator/Constants.java (original)
+++ tomcat/trunk/java/org/apache/catalina/authenticator/Constants.java Sat Oct 22 21:07:53 2011
@@ -5,9 +5,9 @@
  * The ASF licenses this file to You under the Apache License, Version 2.0
  * (the "License"); you may not use this file except in compliance with
  * the License.  You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

Modified: tomcat/trunk/java/org/apache/catalina/authenticator/LocalStrings.properties
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/authenticator/LocalStrings.properties?rev=1187784&r1=1187783&r2=1187784&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/authenticator/LocalStrings.properties (original)
+++ tomcat/trunk/java/org/apache/catalina/authenticator/LocalStrings.properties Sat Oct 22 21:07:53 2011
@@ -29,9 +29,9 @@ authenticator.unauthorized=Cannot authen
 authenticator.userDataConstraint=This request violates a User Data constraint for this application
 
 digestAuthenticator.cacheRemove=A valid entry has been removed from client nonce cache to make room for new entries. A replay attack is now possible. To prevent the possibility of replay attacks, reduce nonceValidity or increase cnonceCacheSize. Further warnings of this type will be suppressed for 5 minutes.
- 
+
 formAuthenticator.forwardErrorFail=Unexpected error forwarding to error page
-formAuthenticator.forwardLogin=Forwarding request for [{0}] made with method [{1}] to login page [{2}] of context [{3}] using request method GET  
+formAuthenticator.forwardLogin=Forwarding request for [{0}] made with method [{1}] to login page [{2}] of context [{3}] using request method GET
 formAuthenticator.forwardLoginFail=Unexpected error forwarding to login page
 formAuthenticator.noErrorPage=No error page was defined for FORM authentication in context [{0}]
 formAuthenticator.noLoginPage=No login page was defined for FORM authentication in context [{0}]

Modified: tomcat/trunk/java/org/apache/catalina/authenticator/SavedRequest.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/authenticator/SavedRequest.java?rev=1187784&r1=1187783&r2=1187784&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/authenticator/SavedRequest.java (original)
+++ tomcat/trunk/java/org/apache/catalina/authenticator/SavedRequest.java Sat Oct 22 21:07:53 2011
@@ -5,9 +5,9 @@
  * The ASF licenses this file to You under the Apache License, Version 2.0
  * (the "License"); you may not use this file except in compliance with
  * the License.  You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -145,12 +145,12 @@ public final class SavedRequest {
         this.requestURI = requestURI;
     }
 
-    
+
     /**
      * The body of this request.
      */
     private ByteChunk body = null;
-    
+
     public ByteChunk getBody() {
         return (this.body);
     }
@@ -158,16 +158,16 @@ public final class SavedRequest {
     public void setBody(ByteChunk body) {
         this.body = body;
     }
-    
+
     /**
      * The content type of the request, used if this is a POST.
      */
     private String contentType = null;
-    
+
     public String getContentType() {
         return (this.contentType);
     }
-    
+
     public void setContentType(String contentType) {
         this.contentType = contentType;
     }

Modified: tomcat/trunk/java/org/apache/catalina/authenticator/SingleSignOnEntry.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/authenticator/SingleSignOnEntry.java?rev=1187784&r1=1187783&r2=1187784&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/authenticator/SingleSignOnEntry.java (original)
+++ tomcat/trunk/java/org/apache/catalina/authenticator/SingleSignOnEntry.java Sat Oct 22 21:07:53 2011
@@ -5,9 +5,9 @@
  * The ASF licenses this file to You under the Apache License, Version 2.0
  * (the "License"); you may not use this file except in compliance with
  * the License.  You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

Modified: tomcat/trunk/java/org/apache/catalina/authenticator/mbeans-descriptors.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/authenticator/mbeans-descriptors.xml?rev=1187784&r1=1187783&r2=1187784&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/authenticator/mbeans-descriptors.xml (original)
+++ tomcat/trunk/java/org/apache/catalina/authenticator/mbeans-descriptors.xml Sat Oct 22 21:07:53 2011
@@ -22,61 +22,61 @@
          domain="Catalina"
          group="Valve"
          type="org.apache.catalina.authenticator.BasicAuthenticator">
-    
+
     <attribute name="alwaysUseSession"
                description="Should a session always be used once a user is authenticated?"
                type="boolean"/>
-      
+
     <attribute name="cache"
                description="Should we cache authenticated Principals if the request is part of an HTTP session?"
                type="boolean"/>
-      
+
     <attribute name="changeSessionIdOnAuthentication"
                description="Controls if the session ID is changed if a session exists at the point where users are authenticated"
                type="boolean"/>
-      
+
     <attribute name="className"
                description="Fully qualified class name of the managed object"
                type="java.lang.String"
                writeable="false"/>
-      
+
     <attribute name="disableProxyCaching"
                description="Controls the caching of pages that are protected by security constraints"
                type="boolean"/>
-      
+
     <attribute name="securePagesWithPragma"
                description="Controls the caching of pages that are protected by security constraints"
                type="boolean"/>
-      
+
     <attribute name="secureRandomAlgorithm"
                description="The name of the algorithm to use for SSO session ID generation"
                type="java.lang.String"/>
-      
+
     <attribute name="secureRandomClass"
                description="The name of the class to use for SSO session ID generation"
                type="java.lang.String"/>
-      
+
     <attribute name="secureRandomProvider"
                description="The name of the provider to use for SSO session ID generation"
                type="java.lang.String"/>
-      
+
     <attribute name="stateName"
                description="The name of the LifecycleState that this component is currently in"
                type="java.lang.String"
                writeable="false"/>
   </mbean>
-  
-  
+
+
   <mbean name="DigestAuthenticator"
          description="An Authenticator and Valve implementation of HTTP DIGEST Authentication"
          domain="Catalina"
          group="Valve"
          type="org.apache.catalina.authenticator.DigestAuthenticator">
-    
+
     <attribute name="alwaysUseSession"
                description="Should a session always be used once a user is authenticated?"
                type="boolean"/>
-      
+
     <attribute name="cache"
                description="Should we cache authenticated Principals if the request is part of an HTTP session?"
                type="boolean"/>
@@ -84,24 +84,24 @@
     <attribute name="changeSessionIdOnAuthentication"
                description="Controls if the session ID is changed if a session exists at the point where users are authenticated"
                type="boolean"/>
-      
+
     <attribute name="className"
                description="Fully qualified class name of the managed object"
                type="java.lang.String"
                writeable="false"/>
-      
+
     <attribute name="cnonceCacheSize"
                description="The size of the cnonce cache used to prevent replay attacks"
                type="int"/>
-      
+
     <attribute name="disableProxyCaching"
                description="Controls the caching of pages that are protected by security constraints"
                type="boolean"/>
-      
+
     <attribute name="key"
                description="The secret key used by digest authentication"
                type="java.lang.String"/>
-      
+
     <attribute name="nonceValidity"
                description="The time, in milliseconds, for which a server issued nonce will be valid"
                type="long"/>
@@ -109,23 +109,23 @@
     <attribute name="opaque"
                description="The opaque server string used by digest authentication"
                type="java.lang.String"/>
-      
+
     <attribute name="securePagesWithPragma"
                description="Controls the caching of pages that are protected by security constraints"
                type="boolean"/>
-      
+
     <attribute name="secureRandomAlgorithm"
                description="The name of the algorithm to use for SSO session ID generation"
                type="java.lang.String"/>
-      
+
     <attribute name="secureRandomClass"
                description="The name of the class to use for SSO session ID generation"
                type="java.lang.String"/>
-      
+
     <attribute name="secureRandomProvider"
                description="The name of the provider to use for SSO session ID generation"
                type="java.lang.String"/>
-      
+
     <attribute name="stateName"
                description="The name of the LifecycleState that this component is currently in"
                type="java.lang.String"
@@ -135,13 +135,13 @@
                description="Should the uri be validated as required by RFC2617?"
                type="boolean"/>
   </mbean>
-  
+
   <mbean name="FormAuthenticator"
          description="An Authenticator and Valve implementation of FORM BASED Authentication"
          domain="Catalina"
          group="Valve"
          type="org.apache.catalina.authenticator.FormAuthenticator">
-    
+
     <attribute name="changeSessionIdOnAuthentication"
                description="Controls if the session ID is changed if a session exists at the point where users are authenticated"
                type="boolean"/>
@@ -158,7 +158,7 @@
     <attribute name="disableProxyCaching"
                description="Controls the caching of pages that are protected by security constraints"
                type="boolean"/>
-      
+
     <attribute name="landingPage"
                description="Controls the behavior of the FORM authentication process if the process is misused, for example by directly requesting the login page or delaying logging in for so long that the session expires"
                type="java.lang.String"/>
@@ -166,35 +166,35 @@
     <attribute name="securePagesWithPragma"
                description="Controls the caching of pages that are protected by security constraints"
                type="boolean"/>
-      
+
     <attribute name="secureRandomAlgorithm"
                description="The name of the algorithm to use for SSO session ID generation"
                type="java.lang.String"/>
-      
+
     <attribute name="secureRandomClass"
                description="The name of the class to use for SSO session ID generation"
                type="java.lang.String"/>
-      
+
     <attribute name="secureRandomProvider"
                description="The name of the provider to use for SSO session ID generation"
                type="java.lang.String"/>
-      
+
     <attribute name="stateName"
                description="The name of the LifecycleState that this component is currently in"
                type="java.lang.String"
                writeable="false"/>
   </mbean>
-  
+
   <mbean name="NonLoginAuthenticator"
          description="An Authenticator and Valve implementation that checks only security constraints not involving user authentication"
          domain="Catalina"
          group="Valve"
          type="org.apache.catalina.authenticator.NonLoginAuthenticator">
-    
+
     <attribute name="cache"
                description="Should we cache authenticated Principals if the request is part of an HTTP session?"
                type="boolean"/>
-      
+
     <attribute name="changeSessionIdOnAuthentication"
                description="Controls if the session ID is changed if a session exists at the point where users are authenticated"
                type="boolean"/>
@@ -207,29 +207,29 @@
     <attribute name="disableProxyCaching"
                description="Controls the caching of pages that are protected by security constraints"
                type="boolean"/>
-      
+
     <attribute name="securePagesWithPragma"
                description="Controls the caching of pages that are protected by security constraints"
                type="boolean"/>
-      
+
     <attribute name="stateName"
                description="The name of the LifecycleState that this component is currently in"
                type="java.lang.String"
                writeable="false"/>
   </mbean>
-  
-  
+
+
   <mbean name="SingleSignOn"
          description="A Valve that supports a 'single signon' user experience"
          domain="Catalina"
          group="Valve"
          type="org.apache.catalina.authenticator.SingleSignOn">
-    
+
     <attribute name="className"
                description="Fully qualified class name of the managed object"
                type="java.lang.String"
                writeable="false"/>
-      
+
     <attribute name="requireReauthentication"
                description="Should we attempt to reauthenticate each request against the security Realm?"
                type="boolean"/>
@@ -267,27 +267,27 @@
     <attribute name="disableProxyCaching"
                description="Controls the caching of pages that are protected by security constraints"
                type="boolean"/>
-      
+
     <attribute name="securePagesWithPragma"
                description="Controls the caching of pages that are protected by security constraints"
                type="boolean"/>
-      
+
     <attribute name="secureRandomAlgorithm"
                description="The name of the algorithm to use for SSO session ID generation"
                type="java.lang.String"/>
-      
+
     <attribute name="secureRandomClass"
                description="The name of the class to use for SSO session ID generation"
                type="java.lang.String"/>
-      
+
     <attribute name="secureRandomProvider"
                description="The name of the provider to use for SSO session ID generation"
                type="java.lang.String"/>
-      
+
     <attribute name="stateName"
                description="The name of the LifecycleState that this component is currently in"
                type="java.lang.String"
                writeable="false"/>
   </mbean>
-  
+
 </mbeans-descriptors>



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