Package io.undertow.servlet.api
Class LoginConfig
- java.lang.Object
-
- io.undertow.servlet.api.LoginConfig
-
-
Constructor Summary
Constructors Constructor Description LoginConfig(String realmName)LoginConfig(String mechanismName, String realmName)LoginConfig(String realmName, String loginPage, String errorPage)LoginConfig(String mechanismName, String realmName, String loginPage, String errorPage)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LoginConfigaddFirstAuthMethod(AuthMethodConfig authMethodConfig)LoginConfigaddFirstAuthMethod(String authMethodConfig)LoginConfigaddLastAuthMethod(AuthMethodConfig authMethodConfig)LoginConfigaddLastAuthMethod(String authMethodConfig)LoginConfigclone()List<AuthMethodConfig>getAuthMethods()StringgetErrorPage()StringgetLoginPage()StringgetRealmName()
-
-
-
Method Detail
-
getRealmName
public String getRealmName()
-
getLoginPage
public String getLoginPage()
-
getErrorPage
public String getErrorPage()
-
addFirstAuthMethod
public LoginConfig addFirstAuthMethod(AuthMethodConfig authMethodConfig)
-
addLastAuthMethod
public LoginConfig addLastAuthMethod(AuthMethodConfig authMethodConfig)
-
addFirstAuthMethod
public LoginConfig addFirstAuthMethod(String authMethodConfig)
-
addLastAuthMethod
public LoginConfig addLastAuthMethod(String authMethodConfig)
-
getAuthMethods
public List<AuthMethodConfig> getAuthMethods()
-
clone
public LoginConfig clone()
-
-