Package org.sourceid.protocol.saml11.xml
Interface SubjectConfirmationType
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface SubjectConfirmationType extends XmlObject
An XML SubjectConfirmationType(@urn:oasis:names:tc:SAML:1.0:assertion). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classSubjectConfirmationType.FactoryA factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaTypetype-
Fields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddConfirmationMethod(String confirmationMethod)Appends the value as the last "ConfirmationMethod" elementXmlAnyURIaddNewConfirmationMethod()Appends and returns a new empty value (as xml) as the last "ConfirmationMethod" elementKeyInfoTypeaddNewKeyInfo()Appends and returns a new empty "KeyInfo" elementXmlObjectaddNewSubjectConfirmationData()Appends and returns a new empty "SubjectConfirmationData" elementString[]getConfirmationMethodArray()Gets array of all "ConfirmationMethod" elementsStringgetConfirmationMethodArray(int i)Gets ith "ConfirmationMethod" elementKeyInfoTypegetKeyInfo()Gets the "KeyInfo" elementXmlObjectgetSubjectConfirmationData()Gets the "SubjectConfirmationData" elementvoidinsertConfirmationMethod(int i, String confirmationMethod)Inserts the value as the ith "ConfirmationMethod" elementXmlAnyURIinsertNewConfirmationMethod(int i)Inserts and returns a new empty value (as xml) as the ith "ConfirmationMethod" elementbooleanisSetKeyInfo()True if has "KeyInfo" elementbooleanisSetSubjectConfirmationData()True if has "SubjectConfirmationData" elementvoidremoveConfirmationMethod(int i)Removes the ith "ConfirmationMethod" elementvoidsetConfirmationMethodArray(int i, String confirmationMethod)Sets ith "ConfirmationMethod" elementvoidsetConfirmationMethodArray(String[] confirmationMethodArray)Sets array of all "ConfirmationMethod" elementvoidsetKeyInfo(KeyInfoType keyInfo)Sets the "KeyInfo" elementvoidsetSubjectConfirmationData(XmlObject subjectConfirmationData)Sets the "SubjectConfirmationData" elementintsizeOfConfirmationMethodArray()Returns number of "ConfirmationMethod" elementvoidunsetKeyInfo()Unsets the "KeyInfo" elementvoidunsetSubjectConfirmationData()Unsets the "SubjectConfirmationData" elementXmlAnyURI[]xgetConfirmationMethodArray()Gets (as xml) array of all "ConfirmationMethod" elementsXmlAnyURIxgetConfirmationMethodArray(int i)Gets (as xml) ith "ConfirmationMethod" elementvoidxsetConfirmationMethodArray(int i, XmlAnyURI confirmationMethod)Sets (as xml) ith "ConfirmationMethod" elementvoidxsetConfirmationMethodArray(XmlAnyURI[] confirmationMethodArray)Sets (as xml) array of all "ConfirmationMethod" element-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getConfirmationMethodArray
String[] getConfirmationMethodArray()
Gets array of all "ConfirmationMethod" elements
-
getConfirmationMethodArray
String getConfirmationMethodArray(int i)
Gets ith "ConfirmationMethod" element
-
xgetConfirmationMethodArray
XmlAnyURI[] xgetConfirmationMethodArray()
Gets (as xml) array of all "ConfirmationMethod" elements
-
xgetConfirmationMethodArray
XmlAnyURI xgetConfirmationMethodArray(int i)
Gets (as xml) ith "ConfirmationMethod" element
-
sizeOfConfirmationMethodArray
int sizeOfConfirmationMethodArray()
Returns number of "ConfirmationMethod" element
-
setConfirmationMethodArray
void setConfirmationMethodArray(String[] confirmationMethodArray)
Sets array of all "ConfirmationMethod" element
-
setConfirmationMethodArray
void setConfirmationMethodArray(int i, String confirmationMethod)Sets ith "ConfirmationMethod" element
-
xsetConfirmationMethodArray
void xsetConfirmationMethodArray(XmlAnyURI[] confirmationMethodArray)
Sets (as xml) array of all "ConfirmationMethod" element
-
xsetConfirmationMethodArray
void xsetConfirmationMethodArray(int i, XmlAnyURI confirmationMethod)Sets (as xml) ith "ConfirmationMethod" element
-
insertConfirmationMethod
void insertConfirmationMethod(int i, String confirmationMethod)Inserts the value as the ith "ConfirmationMethod" element
-
addConfirmationMethod
void addConfirmationMethod(String confirmationMethod)
Appends the value as the last "ConfirmationMethod" element
-
insertNewConfirmationMethod
XmlAnyURI insertNewConfirmationMethod(int i)
Inserts and returns a new empty value (as xml) as the ith "ConfirmationMethod" element
-
addNewConfirmationMethod
XmlAnyURI addNewConfirmationMethod()
Appends and returns a new empty value (as xml) as the last "ConfirmationMethod" element
-
removeConfirmationMethod
void removeConfirmationMethod(int i)
Removes the ith "ConfirmationMethod" element
-
getSubjectConfirmationData
XmlObject getSubjectConfirmationData()
Gets the "SubjectConfirmationData" element
-
isSetSubjectConfirmationData
boolean isSetSubjectConfirmationData()
True if has "SubjectConfirmationData" element
-
setSubjectConfirmationData
void setSubjectConfirmationData(XmlObject subjectConfirmationData)
Sets the "SubjectConfirmationData" element
-
addNewSubjectConfirmationData
XmlObject addNewSubjectConfirmationData()
Appends and returns a new empty "SubjectConfirmationData" element
-
unsetSubjectConfirmationData
void unsetSubjectConfirmationData()
Unsets the "SubjectConfirmationData" element
-
getKeyInfo
KeyInfoType getKeyInfo()
Gets the "KeyInfo" element
-
isSetKeyInfo
boolean isSetKeyInfo()
True if has "KeyInfo" element
-
setKeyInfo
void setKeyInfo(KeyInfoType keyInfo)
Sets the "KeyInfo" element
-
addNewKeyInfo
KeyInfoType addNewKeyInfo()
Appends and returns a new empty "KeyInfo" element
-
unsetKeyInfo
void unsetKeyInfo()
Unsets the "KeyInfo" element
-
-