Apache Tomcat 7.0.0

org.apache.catalina.deploy
Class LoginConfig

java.lang.Object
  extended by org.apache.catalina.deploy.LoginConfig
All Implemented Interfaces:
Serializable

public class LoginConfig
extends Object
implements Serializable

Representation of a login configuration element for a web application, as represented in a <login-config> element in the deployment descriptor.

Version:
$Id: LoginConfig.java 939305 2010-04-29 13:43:39Z kkolinko $
Author:
Craig R. McClanahan
See Also:
Serialized Form

Constructor Summary
LoginConfig()
          Construct a new LoginConfig with default properties.
LoginConfig(String authMethod, String realmName, String loginPage, String errorPage)
          Construct a new LoginConfig with the specified properties.
 
Method Summary
 boolean equals(Object obj)
           
 String getAuthMethod()
           
 String getErrorPage()
           
 String getLoginPage()
           
 String getRealmName()
           
 int hashCode()
           
 void setAuthMethod(String authMethod)
           
 void setErrorPage(String errorPage)
           
 void setLoginPage(String loginPage)
           
 void setRealmName(String realmName)
           
 String toString()
          Return a String representation of this object.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

LoginConfig

public LoginConfig()
Construct a new LoginConfig with default properties.


LoginConfig

public LoginConfig(String authMethod,
                   String realmName,
                   String loginPage,
                   String errorPage)
Construct a new LoginConfig with the specified properties.

Parameters:
authMethod - The authentication method
realmName - The realm name
loginPage - The login page URI
errorPage - The error page URI
Method Detail

getAuthMethod

public String getAuthMethod()

setAuthMethod

public void setAuthMethod(String authMethod)

getErrorPage

public String getErrorPage()

setErrorPage

public void setErrorPage(String errorPage)

getLoginPage

public String getLoginPage()

setLoginPage

public void setLoginPage(String loginPage)

getRealmName

public String getRealmName()

setRealmName

public void setRealmName(String realmName)

toString

public String toString()
Return a String representation of this object.

Overrides:
toString in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object

Apache Tomcat 7.0.0

Copyright © 2000-2010 Apache Software Foundation. All Rights Reserved.