Package org.icatproject
Class AuthenticatorInfo
- java.lang.Object
-
- org.icatproject.AuthenticatorInfo
-
public class AuthenticatorInfo extends Object
Java class for authenticatorInfo complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="authenticatorInfo"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="admin" type="{http://www.w3.org/2001/XMLSchema}boolean"/> <element name="friendly" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="keys" type="{http://icatproject.org}authenticatorCredentialKey" maxOccurs="unbounded" minOccurs="0"/> <element name="mnemonic" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description AuthenticatorInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFriendly()Gets the value of the friendly property.List<AuthenticatorCredentialKey>getKeys()Gets the value of the keys property.StringgetMnemonic()Gets the value of the mnemonic property.booleanisAdmin()Gets the value of the admin property.voidsetAdmin(boolean value)Sets the value of the admin property.voidsetFriendly(String value)Sets the value of the friendly property.voidsetMnemonic(String value)Sets the value of the mnemonic property.
-
-
-
Field Detail
-
admin
protected boolean admin
-
friendly
protected String friendly
-
keys
protected List<AuthenticatorCredentialKey> keys
-
mnemonic
protected String mnemonic
-
-
Method Detail
-
isAdmin
public boolean isAdmin()
Gets the value of the admin property.
-
setAdmin
public void setAdmin(boolean value)
Sets the value of the admin property.
-
getFriendly
public String getFriendly()
Gets the value of the friendly property.- Returns:
- possible object is
String
-
setFriendly
public void setFriendly(String value)
Sets the value of the friendly property.- Parameters:
value- allowed object isString
-
getKeys
public List<AuthenticatorCredentialKey> getKeys()
Gets the value of the keys property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the keys property.For example, to add a new item, do as follows:
getKeys().add(newItem);Objects of the following type(s) are allowed in the list
AuthenticatorCredentialKey
-
getMnemonic
public String getMnemonic()
Gets the value of the mnemonic property.- Returns:
- possible object is
String
-
-