Module org.glassfish.soteria
Class DefaultWebXmlLoginConfig
- java.lang.Object
-
- org.glassfish.soteria.cdi.spi.impl.DefaultWebXmlLoginConfig
-
- All Implemented Interfaces:
WebXmlLoginConfig,DefaultService
public class DefaultWebXmlLoginConfig extends Object implements WebXmlLoginConfig, DefaultService
Default implementation of WebXmlLoginConfig using simple attributes to set the 4 attributes from the login config element in web.xml.- Author:
- Arjan Tijms
-
-
Constructor Summary
Constructors Constructor Description DefaultWebXmlLoginConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAuthMethod()StringgetFormErrorPage()StringgetFormLoginPage()StringgetRealmName()voidsetAuthMethod(String authMethod)voidsetFormErrorPage(String formErrorPage)voidsetFormLoginPage(String formLoginPage)voidsetRealmName(String realmName)
-
-
-
Method Detail
-
getAuthMethod
public String getAuthMethod()
- Specified by:
getAuthMethodin interfaceWebXmlLoginConfig
-
setAuthMethod
public void setAuthMethod(String authMethod)
- Specified by:
setAuthMethodin interfaceWebXmlLoginConfig
-
getRealmName
public String getRealmName()
- Specified by:
getRealmNamein interfaceWebXmlLoginConfig
-
setRealmName
public void setRealmName(String realmName)
- Specified by:
setRealmNamein interfaceWebXmlLoginConfig
-
getFormLoginPage
public String getFormLoginPage()
- Specified by:
getFormLoginPagein interfaceWebXmlLoginConfig
-
setFormLoginPage
public void setFormLoginPage(String formLoginPage)
- Specified by:
setFormLoginPagein interfaceWebXmlLoginConfig
-
getFormErrorPage
public String getFormErrorPage()
- Specified by:
getFormErrorPagein interfaceWebXmlLoginConfig
-
setFormErrorPage
public void setFormErrorPage(String formErrorPage)
- Specified by:
setFormErrorPagein interfaceWebXmlLoginConfig
-
-