Interface ResponseType
-
- All Superinterfaces:
StatusResponseType,XmlObject,XmlTokenSource
public interface ResponseType extends StatusResponseType
An XML ResponseType(@urn:oasis:names:tc:SAML:2.0:protocol). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classResponseType.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 AssertionTypeaddNewAssertion()Appends and returns a new empty value (as xml) as the last "Assertion" elementEncryptedElementTypeaddNewEncryptedAssertion()Appends and returns a new empty value (as xml) as the last "EncryptedAssertion" elementAssertionType[]getAssertionArray()Gets array of all "Assertion" elementsAssertionTypegetAssertionArray(int i)Gets ith "Assertion" elementEncryptedElementType[]getEncryptedAssertionArray()Gets array of all "EncryptedAssertion" elementsEncryptedElementTypegetEncryptedAssertionArray(int i)Gets ith "EncryptedAssertion" elementAssertionTypeinsertNewAssertion(int i)Inserts and returns a new empty value (as xml) as the ith "Assertion" elementEncryptedElementTypeinsertNewEncryptedAssertion(int i)Inserts and returns a new empty value (as xml) as the ith "EncryptedAssertion" elementvoidremoveAssertion(int i)Removes the ith "Assertion" elementvoidremoveEncryptedAssertion(int i)Removes the ith "EncryptedAssertion" elementvoidsetAssertionArray(int i, AssertionType assertion)Sets ith "Assertion" elementvoidsetAssertionArray(AssertionType[] assertionArray)Sets array of all "Assertion" elementvoidsetEncryptedAssertionArray(int i, EncryptedElementType encryptedAssertion)Sets ith "EncryptedAssertion" elementvoidsetEncryptedAssertionArray(EncryptedElementType[] encryptedAssertionArray)Sets array of all "EncryptedAssertion" elementintsizeOfAssertionArray()Returns number of "Assertion" elementintsizeOfEncryptedAssertionArray()Returns number of "EncryptedAssertion" element-
Methods inherited from interface org.sourceid.saml20.xmlbinding.protocol.StatusResponseType
addNewExtensions, addNewIssuer, addNewSignature, addNewStatus, getConsent, getDestination, getExtensions, getID, getInResponseTo, getIssueInstant, getIssuer, getSignature, getStatus, getVersion, isSetConsent, isSetDestination, isSetExtensions, isSetInResponseTo, isSetIssuer, isSetSignature, setConsent, setDestination, setExtensions, setID, setInResponseTo, setIssueInstant, setIssuer, setSignature, setStatus, setVersion, unsetConsent, unsetDestination, unsetExtensions, unsetInResponseTo, unsetIssuer, unsetSignature, xgetConsent, xgetDestination, xgetID, xgetInResponseTo, xgetIssueInstant, xgetVersion, xsetConsent, xsetDestination, xsetID, xsetInResponseTo, xsetIssueInstant, xsetVersion
-
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
-
getAssertionArray
AssertionType[] getAssertionArray()
Gets array of all "Assertion" elements
-
getAssertionArray
AssertionType getAssertionArray(int i)
Gets ith "Assertion" element
-
sizeOfAssertionArray
int sizeOfAssertionArray()
Returns number of "Assertion" element
-
setAssertionArray
void setAssertionArray(AssertionType[] assertionArray)
Sets array of all "Assertion" element
-
setAssertionArray
void setAssertionArray(int i, AssertionType assertion)Sets ith "Assertion" element
-
insertNewAssertion
AssertionType insertNewAssertion(int i)
Inserts and returns a new empty value (as xml) as the ith "Assertion" element
-
addNewAssertion
AssertionType addNewAssertion()
Appends and returns a new empty value (as xml) as the last "Assertion" element
-
removeAssertion
void removeAssertion(int i)
Removes the ith "Assertion" element
-
getEncryptedAssertionArray
EncryptedElementType[] getEncryptedAssertionArray()
Gets array of all "EncryptedAssertion" elements
-
getEncryptedAssertionArray
EncryptedElementType getEncryptedAssertionArray(int i)
Gets ith "EncryptedAssertion" element
-
sizeOfEncryptedAssertionArray
int sizeOfEncryptedAssertionArray()
Returns number of "EncryptedAssertion" element
-
setEncryptedAssertionArray
void setEncryptedAssertionArray(EncryptedElementType[] encryptedAssertionArray)
Sets array of all "EncryptedAssertion" element
-
setEncryptedAssertionArray
void setEncryptedAssertionArray(int i, EncryptedElementType encryptedAssertion)Sets ith "EncryptedAssertion" element
-
insertNewEncryptedAssertion
EncryptedElementType insertNewEncryptedAssertion(int i)
Inserts and returns a new empty value (as xml) as the ith "EncryptedAssertion" element
-
addNewEncryptedAssertion
EncryptedElementType addNewEncryptedAssertion()
Appends and returns a new empty value (as xml) as the last "EncryptedAssertion" element
-
removeEncryptedAssertion
void removeEncryptedAssertion(int i)
Removes the ith "EncryptedAssertion" element
-
-