Package org.cxml
Class Credential
- java.lang.Object
-
- org.cxml.Credential
-
public class Credential extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Stringdomainprotected Identityidentityprotected java.util.List<java.lang.Object>sharedSecretOrDigitalSignatureOrCredentialMacprotected java.lang.Stringtype
-
Constructor Summary
Constructors Constructor Description Credential()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDomain()Gets the value of the domain property.IdentitygetIdentity()Gets the value of the identity property.java.util.List<java.lang.Object>getSharedSecretOrDigitalSignatureOrCredentialMac()Gets the value of the sharedSecretOrDigitalSignatureOrCredentialMac property.java.lang.StringgetType()Gets the value of the type property.voidsetDomain(java.lang.String value)Sets the value of the domain property.voidsetIdentity(Identity value)Sets the value of the identity property.voidsetType(java.lang.String value)Sets the value of the type property.
-
-
-
Field Detail
-
domain
protected java.lang.String domain
-
type
protected java.lang.String type
-
identity
protected Identity identity
-
sharedSecretOrDigitalSignatureOrCredentialMac
protected java.util.List<java.lang.Object> sharedSecretOrDigitalSignatureOrCredentialMac
-
-
Method Detail
-
getDomain
public java.lang.String getDomain()
Gets the value of the domain property.- Returns:
- possible object is
String
-
setDomain
public void setDomain(java.lang.String value)
Sets the value of the domain property.- Parameters:
value- allowed object isString
-
getType
public java.lang.String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(java.lang.String value)
Sets the value of the type property.- Parameters:
value- allowed object isString
-
getIdentity
public Identity getIdentity()
Gets the value of the identity property.- Returns:
- possible object is
Identity
-
setIdentity
public void setIdentity(Identity value)
Sets the value of the identity property.- Parameters:
value- allowed object isIdentity
-
getSharedSecretOrDigitalSignatureOrCredentialMac
public java.util.List<java.lang.Object> getSharedSecretOrDigitalSignatureOrCredentialMac()
Gets the value of the sharedSecretOrDigitalSignatureOrCredentialMac 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 JAXB object. This is why there is not a
setmethod for the sharedSecretOrDigitalSignatureOrCredentialMac property.For example, to add a new item, do as follows:
getSharedSecretOrDigitalSignatureOrCredentialMac().add(newItem);Objects of the following type(s) are allowed in the list
SharedSecretDigitalSignatureCredentialMac
-
-