Interface ResponseType
-
- All Superinterfaces:
ResponseAbstractType,XmlObject,XmlTokenSource
public interface ResponseType extends ResponseAbstractType
An XML ResponseType(@urn:oasis:names:tc:SAML:1.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" elementStatusTypeaddNewStatus()Appends and returns a new empty "Status" elementAssertionType[]getAssertionArray()Gets array of all "Assertion" elementsAssertionTypegetAssertionArray(int i)Gets ith "Assertion" elementStatusTypegetStatus()Gets the "Status" elementAssertionTypeinsertNewAssertion(int i)Inserts and returns a new empty value (as xml) as the ith "Assertion" elementvoidremoveAssertion(int i)Removes the ith "Assertion" elementvoidsetAssertionArray(int i, AssertionType assertion)Sets ith "Assertion" elementvoidsetAssertionArray(AssertionType[] assertionArray)Sets array of all "Assertion" elementvoidsetStatus(StatusType status)Sets the "Status" elementintsizeOfAssertionArray()Returns number of "Assertion" element-
Methods inherited from interface org.sourceid.protocol.samlp11.xml.ResponseAbstractType
addNewSignature, getInResponseTo, getIssueInstant, getMajorVersion, getMinorVersion, getRecipient, getResponseID, getSignature, isSetInResponseTo, isSetRecipient, isSetSignature, setInResponseTo, setIssueInstant, setMajorVersion, setMinorVersion, setRecipient, setResponseID, setSignature, unsetInResponseTo, unsetRecipient, unsetSignature, xgetInResponseTo, xgetIssueInstant, xgetMajorVersion, xgetMinorVersion, xgetRecipient, xgetResponseID, xsetInResponseTo, xsetIssueInstant, xsetMajorVersion, xsetMinorVersion, xsetRecipient, xsetResponseID
-
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
-
getStatus
StatusType getStatus()
Gets the "Status" element
-
setStatus
void setStatus(StatusType status)
Sets the "Status" element
-
addNewStatus
StatusType addNewStatus()
Appends and returns a new empty "Status" element
-
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
-
-