Package org.icatproject
Class Login
- java.lang.Object
-
- org.icatproject.Login
-
public class Login extends Object
Java class for login complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="login"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="plugin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="credentials"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="entry" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classLogin.CredentialsJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected Login.Credentialscredentialsprotected Stringplugin
-
Constructor Summary
Constructors Constructor Description Login()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Login.CredentialsgetCredentials()Gets the value of the credentials property.StringgetPlugin()Gets the value of the plugin property.voidsetCredentials(Login.Credentials value)Sets the value of the credentials property.voidsetPlugin(String value)Sets the value of the plugin property.
-
-
-
Field Detail
-
plugin
protected String plugin
-
credentials
protected Login.Credentials credentials
-
-
Method Detail
-
getPlugin
public String getPlugin()
Gets the value of the plugin property.- Returns:
- possible object is
String
-
setPlugin
public void setPlugin(String value)
Sets the value of the plugin property.- Parameters:
value- allowed object isString
-
getCredentials
public Login.Credentials getCredentials()
Gets the value of the credentials property.- Returns:
- possible object is
Login.Credentials
-
setCredentials
public void setCredentials(Login.Credentials value)
Sets the value of the credentials property.- Parameters:
value- allowed object isLogin.Credentials
-
-