Interface ParticipantsType
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface ParticipantsType extends XmlObject
An XML ParticipantsType(@http://docs.oasis-open.org/ws-sx/ws-trust/200512/). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classParticipantsType.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 ParticipantTypeaddNewParticipant()Appends and returns a new empty value (as xml) as the last "Participant" elementParticipantTypeaddNewPrimary()Appends and returns a new empty "Primary" elementParticipantType[]getParticipantArray()Gets array of all "Participant" elementsParticipantTypegetParticipantArray(int i)Gets ith "Participant" elementParticipantTypegetPrimary()Gets the "Primary" elementParticipantTypeinsertNewParticipant(int i)Inserts and returns a new empty value (as xml) as the ith "Participant" elementbooleanisSetPrimary()True if has "Primary" elementvoidremoveParticipant(int i)Removes the ith "Participant" elementvoidsetParticipantArray(int i, ParticipantType participant)Sets ith "Participant" elementvoidsetParticipantArray(ParticipantType[] participantArray)Sets array of all "Participant" elementvoidsetPrimary(ParticipantType primary)Sets the "Primary" elementintsizeOfParticipantArray()Returns number of "Participant" elementvoidunsetPrimary()Unsets the "Primary" 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
-
getPrimary
ParticipantType getPrimary()
Gets the "Primary" element
-
isSetPrimary
boolean isSetPrimary()
True if has "Primary" element
-
setPrimary
void setPrimary(ParticipantType primary)
Sets the "Primary" element
-
addNewPrimary
ParticipantType addNewPrimary()
Appends and returns a new empty "Primary" element
-
unsetPrimary
void unsetPrimary()
Unsets the "Primary" element
-
getParticipantArray
ParticipantType[] getParticipantArray()
Gets array of all "Participant" elements
-
getParticipantArray
ParticipantType getParticipantArray(int i)
Gets ith "Participant" element
-
sizeOfParticipantArray
int sizeOfParticipantArray()
Returns number of "Participant" element
-
setParticipantArray
void setParticipantArray(ParticipantType[] participantArray)
Sets array of all "Participant" element
-
setParticipantArray
void setParticipantArray(int i, ParticipantType participant)Sets ith "Participant" element
-
insertNewParticipant
ParticipantType insertNewParticipant(int i)
Inserts and returns a new empty value (as xml) as the ith "Participant" element
-
addNewParticipant
ParticipantType addNewParticipant()
Appends and returns a new empty value (as xml) as the last "Participant" element
-
removeParticipant
void removeParticipant(int i)
Removes the ith "Participant" element
-
-