Author: markt
Date: Tue Dec 16 21:50:49 2014
New Revision: 1646098
URL: http://svn.apache.org/r1646098
Log:
Whitespace clean-up
Modified:
tomcat/trunk/java/org/apache/catalina/authenticator/SingleSignOn.java
tomcat/trunk/java/org/apache/catalina/ha/authenticator/ClusterSingleSignOn.java
Modified: tomcat/trunk/java/org/apache/catalina/authenticator/SingleSignOn.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/authenticator/SingleSignOn.java?rev=1646098&r1=1646097&r2=1646098&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/authenticator/SingleSignOn.java
(original)
+++ tomcat/trunk/java/org/apache/catalina/authenticator/SingleSignOn.java Tue
Dec 16 21:50:49 2014
@@ -14,11 +14,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-
-
package org.apache.catalina.authenticator;
-
import java.io.IOException;
import java.security.Principal;
import java.util.HashMap;
@@ -35,7 +32,6 @@ import org.apache.catalina.connector.Req
import org.apache.catalina.connector.Response;
import org.apache.catalina.valves.ValveBase;
-
/**
* A <strong>Valve</strong> that supports a "single sign on" user experience,
* where the security identity of a user who successfully authenticates to one
@@ -58,12 +54,13 @@ import org.apache.catalina.valves.ValveB
public class SingleSignOn extends ValveBase implements SessionListener {
//------------------------------------------------------ Constructor
+
public SingleSignOn() {
super(true);
}
- // ----------------------------------------------------- Instance Variables
+ // ----------------------------------------------------- Instance Variables
/**
* The cache of SingleSignOnEntry instances for authenticated Principals,
@@ -91,6 +88,7 @@ public class SingleSignOn extends ValveB
*/
private String cookieDomain;
+
// ------------------------------------------------------------- Properties
/**
@@ -102,6 +100,8 @@ public class SingleSignOn extends ValveB
public String getCookieDomain() {
return cookieDomain;
}
+
+
/**
* Sets the domain to be used for sso cookies.
*
@@ -115,6 +115,7 @@ public class SingleSignOn extends ValveB
}
}
+
/**
* Gets whether each request needs to be reauthenticated (by an
* Authenticator downstream in the pipeline) to the security
@@ -132,8 +133,7 @@ public class SingleSignOn extends ValveB
*
* @see #setRequireReauthentication
*/
- public boolean getRequireReauthentication()
- {
+ public boolean getRequireReauthentication() {
return requireReauthentication;
}
@@ -178,15 +178,13 @@ public class SingleSignOn extends ValveB
*
* @see AuthenticatorBase#reauthenticateFromSSO
*/
- public void setRequireReauthentication(boolean required)
- {
+ public void setRequireReauthentication(boolean required) {
this.requireReauthentication = required;
}
// ------------------------------------------------ SessionListener Methods
-
/**
* Acknowledge the occurrence of the specified event.
*
@@ -344,7 +342,6 @@ public class SingleSignOn extends ValveB
// ------------------------------------------------------ Protected Methods
-
/**
* Associate the specified single sign on identifier with the
* specified Session.
@@ -368,6 +365,7 @@ public class SingleSignOn extends ValveB
}
+
/**
* Deregister the specified session. If it is the last session,
* then also get rid of the single sign on identifier
@@ -441,6 +439,7 @@ public class SingleSignOn extends ValveB
}
+
/**
* Attempts reauthentication to the given <code>Realm</code> using
* the credentials associated with the single sign-on session
@@ -609,5 +608,4 @@ public class SingleSignOn extends ValveB
deregister(ssoId);
}
}
-
}
Modified:
tomcat/trunk/java/org/apache/catalina/ha/authenticator/ClusterSingleSignOn.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/ha/authenticator/ClusterSingleSignOn.java?rev=1646098&r1=1646097&r2=1646098&view=diff
==============================================================================
---
tomcat/trunk/java/org/apache/catalina/ha/authenticator/ClusterSingleSignOn.java
(original)
+++
tomcat/trunk/java/org/apache/catalina/ha/authenticator/ClusterSingleSignOn.java
Tue Dec 16 21:50:49 2014
@@ -14,11 +14,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-
-
package org.apache.catalina.ha.authenticator;
-
import java.security.Principal;
import org.apache.catalina.Container;
@@ -33,8 +30,6 @@ import org.apache.catalina.ha.ClusterVal
import org.apache.catalina.realm.GenericPrincipal;
import org.apache.tomcat.util.ExceptionUtils;
-
-
/**
* A <strong>Valve</strong> that supports a "single sign on" user experience on
* each nodes of a cluster, where the security identity of a user who
successfully
@@ -76,7 +71,6 @@ public class ClusterSingleSignOn extends
// ------------------------------------------------------ Lifecycle Methods
-
/**
* Start this component and implement the requirements
* of {@link org.apache.catalina.util.LifecycleBase#startInternal()}.
@@ -135,7 +129,6 @@ public class ClusterSingleSignOn extends
// ------------------------------------------------------ Protected Methods
-
/**
* Notify the cluster of the addition of a Session to
* an SSO session and associate the specified single
@@ -169,15 +162,14 @@ public class ClusterSingleSignOn extends
}
associateLocal(ssoId, session);
-
}
- protected void associateLocal(String ssoId, Session session) {
+ protected void associateLocal(String ssoId, Session session) {
super.associate(ssoId, session);
-
}
+
/**
* Notify the cluster of the removal of a Session from an
* SSO session and deregister the specified session. If it is the last
@@ -210,15 +202,14 @@ public class ClusterSingleSignOn extends
}
deregisterLocal(ssoId, session);
-
}
- protected void deregisterLocal(String ssoId, Session session) {
+ protected void deregisterLocal(String ssoId, Session session) {
super.deregister(ssoId, session);
-
}
+
/**
* Notifies the cluster that a single sign on session
* has been terminated due to a user logout, deregister
@@ -245,15 +236,14 @@ public class ClusterSingleSignOn extends
}
deregisterLocal(ssoId);
-
}
- protected void deregisterLocal(String ssoId) {
+ protected void deregisterLocal(String ssoId) {
super.deregister(ssoId);
-
}
+
/**
* Notifies the cluster of the creation of a new SSO entry
* and register the specified Principal as being associated
@@ -292,14 +282,12 @@ public class ClusterSingleSignOn extends
}
registerLocal(ssoId, principal, authType, username, password);
-
}
+
protected void registerLocal(String ssoId, Principal principal, String
authType,
String username, String password) {
-
super.register(ssoId, principal, authType, username, password);
-
}
@@ -355,14 +343,12 @@ public class ClusterSingleSignOn extends
}
updateLocal(ssoId, principal, authType, username, password);
-
}
+
protected void updateLocal(String ssoId, Principal principal, String
authType,
String username, String password) {
-
super.update(ssoId, principal, authType, username, password);
-
}
@@ -399,10 +385,8 @@ public class ClusterSingleSignOn extends
removeSessionLocal(ssoId, session);
}
- protected void removeSessionLocal(String ssoId, Session session) {
+ protected void removeSessionLocal(String ssoId, Session session) {
super.removeSession(ssoId, session);
-
}
-
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]