Package org.apache.openejb.jee
Class LoginConfig
- java.lang.Object
-
- org.apache.openejb.jee.LoginConfig
-
public class LoginConfig extends Object
web-common_3_0.xsdJava class for login-configType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="login-configType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="auth-method" type="{http://java.sun.com/xml/ns/javaee}auth-methodType" minOccurs="0"/> <element name="realm-name" type="{http://java.sun.com/xml/ns/javaee}string" minOccurs="0"/> <element name="form-login-config" type="{http://java.sun.com/xml/ns/javaee}form-login-configType" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringauthMethodprotected FormLoginConfigformLoginConfigprotected Stringidprotected StringrealmName
-
Constructor Summary
Constructors Constructor Description LoginConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAuthMethod()FormLoginConfiggetFormLoginConfig()Gets the value of the formLoginConfig property.StringgetId()Gets the value of the id property.StringgetRealmName()Gets the value of the realmName property.voidsetAuthMethod(String value)voidsetFormLoginConfig(FormLoginConfig value)Sets the value of the formLoginConfig property.voidsetId(String value)Sets the value of the id property.voidsetRealmName(String value)Sets the value of the realmName property.
-
-
-
Field Detail
-
authMethod
protected String authMethod
-
realmName
protected String realmName
-
formLoginConfig
protected FormLoginConfig formLoginConfig
-
id
protected String id
-
-
Method Detail
-
getAuthMethod
public String getAuthMethod()
-
setAuthMethod
public void setAuthMethod(String value)
-
getRealmName
public String getRealmName()
Gets the value of the realmName property.- Returns:
- possible object is
String
-
setRealmName
public void setRealmName(String value)
Sets the value of the realmName property.- Parameters:
value- allowed object isString
-
getFormLoginConfig
public FormLoginConfig getFormLoginConfig()
Gets the value of the formLoginConfig property.- Returns:
- possible object is
FormLoginConfig
-
setFormLoginConfig
public void setFormLoginConfig(FormLoginConfig value)
Sets the value of the formLoginConfig property.- Parameters:
value- allowed object isFormLoginConfig
-
-