Class Root
Java class for Root complex type.
The following schema fragment specifies the expected content contained within this class.
 <complexType name="Root">
 <complexContent>
 <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 <sequence>
 <element name="contexts" type="{http://www.ibm.com/websphere/wim}Context" maxOccurs="unbounded" minOccurs="0"/>
 <element name="entities" type="{http://www.ibm.com/websphere/wim}Entity" maxOccurs="unbounded" minOccurs="0"/>
 <element name="controls" type="{http://www.ibm.com/websphere/wim}Control" maxOccurs="unbounded" minOccurs="0"/>
 </sequence>
 <attribute name="validated" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 </restriction>
 </complexContent>
 </complexType>
 
 Root is an object and does not have any meaning other than its use as a container. It has several objects: contexts, entities, and controls, each of which are represented themselves by objects. The Root object can contain an unlimited number of each of these objects.
- contexts: contains 0 to n Context objects. The Context object specifies the contextual information for the registry or repository call. Examples of such information include the realm or ip address to be used for the call.
- entities: contains 0 to n Entity objects. Each entity object represents a VMM entity like Person or Group entity. It contains the actual data associated with the entity, like unique name, "uid" and "cn" attributes. Allowing for multiple entities to be specified in the Root object provides the capability of returning multiple Person or Group entries on a single get() API call, for example.
- controls:: contains 0 to n Controls objects. The Control object is used for specifying the request information and response information for the call. For example, the property names to be returned for a get() API call can be specified in the PropertyControl object.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionGets the value of the contexts property.Gets the value of the controls property.getDataType(String propName) Gets the value of the entities property.static ListgetPropertyNames(String entityTypeName) static HashSetbooleanbooleanbooleanbooleanbooleanbooleanbooleanGets the value of the validated property.voidvoidsetValidated(boolean value) Sets the value of the validated property.toString()voidvoidvoidvoidvoid
- 
Constructor Details- 
Rootpublic Root()
 
- 
- 
Method Details- 
getContextsGets the value of the contexts property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a setmethod for the contexts property.For example, to add a new item, do as follows: getContexts().add(newItem); Objects of the following type(s) are allowed in the list Context
- 
isSetContextspublic boolean isSetContexts()
- 
unsetContextspublic void unsetContexts()
- 
getEntitiesGets the value of the entities property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a setmethod for the entities property.For example, to add a new item, do as follows: getEntities().add(newItem); Objects of the following type(s) are allowed in the list Entity
- 
isSetEntitiespublic boolean isSetEntities()
- 
unsetEntitiespublic void unsetEntities()
- 
getControlsGets the value of the controls property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a setmethod for the controls property.For example, to add a new item, do as follows: getControls().add(newItem); Objects of the following type(s) are allowed in the list Control
- 
isSetControlspublic boolean isSetControls()
- 
unsetControlspublic void unsetControls()
- 
isValidatedpublic boolean isValidated()Gets the value of the validated property.- Returns:
- possible object is Boolean
 
- 
setValidatedpublic void setValidated(boolean value) Sets the value of the validated property.- Parameters:
- value- allowed object is- Boolean
 
- 
isSetValidatedpublic boolean isSetValidated()
- 
unsetValidatedpublic void unsetValidated()
- 
get
- 
isSet
- 
set
- 
unset
- 
getTypeName
- 
getPropertyNames
- 
getDataType
- 
getSuperTypes
- 
isSubType
- 
getSubTypes
- 
toString
 
-