org.apache.catalina.deploy
クラス LoginConfig

java.lang.Object
  |
  +--org.apache.catalina.deploy.LoginConfig

public final class LoginConfig
extends java.lang.Object

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

バージョン:
$Revision: 1.6 $ $Date: 2001/07/22 20:25:10 $
作成者:
Craig R. McClanahan

コンストラクタの概要
LoginConfig()
          Construct a new LoginConfig with default properties.
LoginConfig(java.lang.String authMethod, java.lang.String realmName, java.lang.String loginPage, java.lang.String errorPage)
          Construct a new LoginConfig with the specified properties.
 
メソッドの概要
 java.lang.String getAuthMethod()
           
 java.lang.String getErrorPage()
           
 java.lang.String getLoginPage()
           
 java.lang.String getRealmName()
           
 void setAuthMethod(java.lang.String authMethod)
           
 void setErrorPage(java.lang.String errorPage)
           
 void setLoginPage(java.lang.String loginPage)
           
 void setRealmName(java.lang.String realmName)
           
 java.lang.String toString()
          Return a String representation of this object.
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

コンストラクタの詳細

LoginConfig

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

LoginConfig

public LoginConfig(java.lang.String authMethod,
                   java.lang.String realmName,
                   java.lang.String loginPage,
                   java.lang.String errorPage)
Construct a new LoginConfig with the specified properties.
パラメータ:
authMethod - The authentication method
realmName - The realm name
loginPage - The login page URI
errorPage - The error page URI
メソッドの詳細

getAuthMethod

public java.lang.String getAuthMethod()

setAuthMethod

public void setAuthMethod(java.lang.String authMethod)

getErrorPage

public java.lang.String getErrorPage()

setErrorPage

public void setErrorPage(java.lang.String errorPage)

getLoginPage

public java.lang.String getLoginPage()

setLoginPage

public void setLoginPage(java.lang.String loginPage)

getRealmName

public java.lang.String getRealmName()

setRealmName

public void setRealmName(java.lang.String realmName)

toString

public java.lang.String toString()
Return a String representation of this object.
オーバーライド:
クラス java.lang.Object 内の toString


Copyright ? 2000-2001 Apache Software Foundation. All Rights Reserved.