Package org.sourceid.protocol.saml11.xml
Interface AttributeStatementType
-
- All Superinterfaces:
StatementAbstractType,SubjectStatementAbstractType,XmlObject,XmlTokenSource
public interface AttributeStatementType extends SubjectStatementAbstractType
An XML AttributeStatementType(@urn:oasis:names:tc:SAML:1.0:assertion). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAttributeStatementType.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 AttributeTypeaddNewAttribute()Appends and returns a new empty value (as xml) as the last "Attribute" elementAttributeType[]getAttributeArray()Gets array of all "Attribute" elementsAttributeTypegetAttributeArray(int i)Gets ith "Attribute" elementAttributeTypeinsertNewAttribute(int i)Inserts and returns a new empty value (as xml) as the ith "Attribute" elementvoidremoveAttribute(int i)Removes the ith "Attribute" elementvoidsetAttributeArray(int i, AttributeType attribute)Sets ith "Attribute" elementvoidsetAttributeArray(AttributeType[] attributeArray)Sets array of all "Attribute" elementintsizeOfAttributeArray()Returns number of "Attribute" element-
Methods inherited from interface org.sourceid.protocol.saml11.xml.SubjectStatementAbstractType
addNewSubject, getSubject, setSubject
-
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
-
getAttributeArray
AttributeType[] getAttributeArray()
Gets array of all "Attribute" elements
-
getAttributeArray
AttributeType getAttributeArray(int i)
Gets ith "Attribute" element
-
sizeOfAttributeArray
int sizeOfAttributeArray()
Returns number of "Attribute" element
-
setAttributeArray
void setAttributeArray(AttributeType[] attributeArray)
Sets array of all "Attribute" element
-
setAttributeArray
void setAttributeArray(int i, AttributeType attribute)Sets ith "Attribute" element
-
insertNewAttribute
AttributeType insertNewAttribute(int i)
Inserts and returns a new empty value (as xml) as the ith "Attribute" element
-
addNewAttribute
AttributeType addNewAttribute()
Appends and returns a new empty value (as xml) as the last "Attribute" element
-
removeAttribute
void removeAttribute(int i)
Removes the ith "Attribute" element
-
-