Class ObjectSelectorType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectSelectorType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
- Direct Known Subclasses:
LinkedObjectSelectorType
,SubjectedObjectSelectorType
public class ObjectSelectorType extends Object implements Serializable, Cloneable, Containerable
Selects some objects from all the objects in midPoint.Java class for ObjectSelectorType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ObjectSelectorType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}description" minOccurs="0"/> <element ref="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}documentation" minOccurs="0"/> <element name="type" type="{http://www.w3.org/2001/XMLSchema}QName" minOccurs="0"/> <element name="subtype" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="archetypeRef" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}ObjectReferenceType" maxOccurs="unbounded" minOccurs="0"/> <element name="orgRef" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}ObjectReferenceType" minOccurs="0"/> <element name="filter" type="{http://prism.evolveum.com/xml/ns/public/query-3}SearchFilterType" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}long" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static QName
COMPLEX_TYPE
static ItemName
F_ARCHETYPE_REF
static ItemName
F_DESCRIPTION
static ItemName
F_DOCUMENTATION
static ItemName
F_FILTER
static ItemName
F_ORG_REF
static ItemName
F_SUBTYPE
static ItemName
F_TYPE
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description ObjectSelectorType()
ObjectSelectorType(PrismContext prismContext)
-
Method Summary
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.prism.Containerable
cloneWithoutId, debugDump
-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDump, debugDumpLazily, debugDumpLazily
-
-
-
-
Field Detail
-
COMPLEX_TYPE
public static final QName COMPLEX_TYPE
-
F_DESCRIPTION
public static final ItemName F_DESCRIPTION
-
F_DOCUMENTATION
public static final ItemName F_DOCUMENTATION
-
F_TYPE
public static final ItemName F_TYPE
-
F_SUBTYPE
public static final ItemName F_SUBTYPE
-
F_ARCHETYPE_REF
public static final ItemName F_ARCHETYPE_REF
-
F_ORG_REF
public static final ItemName F_ORG_REF
-
F_FILTER
public static final ItemName F_FILTER
-
-
Constructor Detail
-
ObjectSelectorType
public ObjectSelectorType()
-
ObjectSelectorType
public ObjectSelectorType(PrismContext prismContext)
-
-
Method Detail
-
asPrismContainerValue
public PrismContainerValue asPrismContainerValue()
- Specified by:
asPrismContainerValue
in interfaceContainerable
-
setupContainerValue
public void setupContainerValue(PrismContainerValue containerValue)
Description copied from interface:Containerable
Setup value to the containerable representation. This is used to after (empty) containerable is created to initialize it with a correct prism container value. Note: This method DOES NOT change the container value parent.- Specified by:
setupContainerValue
in interfaceContainerable
-
end
public <X> X end()
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String value)
-
getDocumentation
public String getDocumentation()
-
setDocumentation
public void setDocumentation(String value)
-
getType
public QName getType()
-
setType
public void setType(QName value)
-
getSubtype
public String getSubtype()
-
setSubtype
public void setSubtype(String value)
-
getArchetypeRef
public List<ObjectReferenceType> getArchetypeRef()
-
createArchetypeRefList
public List<ObjectReferenceType> createArchetypeRefList()
-
getOrgRef
public ObjectReferenceType getOrgRef()
-
setOrgRef
public void setOrgRef(ObjectReferenceType value)
-
getFilter
public SearchFilterType getFilter()
-
setFilter
public void setFilter(SearchFilterType value)
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
description
public ObjectSelectorType description(String value)
-
documentation
public ObjectSelectorType documentation(String value)
-
type
public ObjectSelectorType type(QName value)
-
subtype
public ObjectSelectorType subtype(String value)
-
archetypeRef
public ObjectSelectorType archetypeRef(ObjectReferenceType value)
-
archetypeRef
public ObjectSelectorType archetypeRef(String oid, QName type)
-
archetypeRef
public ObjectSelectorType archetypeRef(String oid, QName type, QName relation)
-
beginArchetypeRef
public ObjectReferenceType beginArchetypeRef()
-
orgRef
public ObjectSelectorType orgRef(ObjectReferenceType value)
-
orgRef
public ObjectSelectorType orgRef(String oid, QName type)
-
orgRef
public ObjectSelectorType orgRef(String oid, QName type, QName relation)
-
beginOrgRef
public ObjectReferenceType beginOrgRef()
-
filter
public ObjectSelectorType filter(SearchFilterType value)
-
beginFilter
public SearchFilterType beginFilter()
-
id
public ObjectSelectorType id(Long value)
-
clone
public ObjectSelectorType clone()
-
-