Package org.sourceid.protocol.saml11.xml
Interface AttributeType
-
- All Superinterfaces:
AttributeDesignatorType,XmlObject,XmlTokenSource
public interface AttributeType extends AttributeDesignatorType
An XML AttributeType(@urn:oasis:names:tc:SAML:1.0:assertion). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAttributeType.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 XmlObjectaddNewAttributeValue()Appends and returns a new empty value (as xml) as the last "AttributeValue" elementXmlObject[]getAttributeValueArray()Gets array of all "AttributeValue" elementsXmlObjectgetAttributeValueArray(int i)Gets ith "AttributeValue" elementXmlObjectinsertNewAttributeValue(int i)Inserts and returns a new empty value (as xml) as the ith "AttributeValue" elementvoidremoveAttributeValue(int i)Removes the ith "AttributeValue" elementvoidsetAttributeValueArray(int i, XmlObject attributeValue)Sets ith "AttributeValue" elementvoidsetAttributeValueArray(XmlObject[] attributeValueArray)Sets array of all "AttributeValue" elementintsizeOfAttributeValueArray()Returns number of "AttributeValue" element-
Methods inherited from interface org.sourceid.protocol.saml11.xml.AttributeDesignatorType
getAttributeName, getAttributeNamespace, setAttributeName, setAttributeNamespace, xgetAttributeName, xgetAttributeNamespace, xsetAttributeName, xsetAttributeNamespace
-
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
-
getAttributeValueArray
XmlObject[] getAttributeValueArray()
Gets array of all "AttributeValue" elements
-
getAttributeValueArray
XmlObject getAttributeValueArray(int i)
Gets ith "AttributeValue" element
-
sizeOfAttributeValueArray
int sizeOfAttributeValueArray()
Returns number of "AttributeValue" element
-
setAttributeValueArray
void setAttributeValueArray(XmlObject[] attributeValueArray)
Sets array of all "AttributeValue" element
-
setAttributeValueArray
void setAttributeValueArray(int i, XmlObject attributeValue)Sets ith "AttributeValue" element
-
insertNewAttributeValue
XmlObject insertNewAttributeValue(int i)
Inserts and returns a new empty value (as xml) as the ith "AttributeValue" element
-
addNewAttributeValue
XmlObject addNewAttributeValue()
Appends and returns a new empty value (as xml) as the last "AttributeValue" element
-
removeAttributeValue
void removeAttributeValue(int i)
Removes the ith "AttributeValue" element
-
-