Class OrgRelationObjectSpecificationType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.OrgRelationObjectSpecificationType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class OrgRelationObjectSpecificationType extends Object implements Serializable, Cloneable, Containerable
Definition of object with respect to subject membership in organizational hierarchy. Used to specify authorizations for all objects that belong to an org where the subject is a manager, etc.Java class for OrgRelationObjectSpecificationType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="OrgRelationObjectSpecificationType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="subjectRelation" type="{http://www.w3.org/2001/XMLSchema}QName" minOccurs="0"/> <element name="scope" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}OrgScopeType" minOccurs="0"/> <element name="includeReferenceOrg" type="{http://www.w3.org/2001/XMLSchema}boolean" 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_INCLUDE_REFERENCE_ORG
static ItemName
F_SCOPE
static ItemName
F_SUBJECT_RELATION
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description OrgRelationObjectSpecificationType()
OrgRelationObjectSpecificationType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
OrgRelationObjectSpecificationType
clone()
<X> X
end()
boolean
equals(Object object)
Long
getId()
OrgScopeType
getScope()
QName
getSubjectRelation()
int
hashCode()
OrgRelationObjectSpecificationType
id(Long value)
OrgRelationObjectSpecificationType
includeReferenceOrg(Boolean value)
Boolean
isIncludeReferenceOrg()
OrgRelationObjectSpecificationType
scope(OrgScopeType value)
void
setId(Long value)
void
setIncludeReferenceOrg(Boolean value)
void
setScope(OrgScopeType value)
void
setSubjectRelation(QName value)
void
setupContainerValue(PrismContainerValue containerValue)
Setup value to the containerable representation.OrgRelationObjectSpecificationType
subjectRelation(QName value)
String
toString()
-
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
-
-
-
-
Constructor Detail
-
OrgRelationObjectSpecificationType
public OrgRelationObjectSpecificationType()
-
OrgRelationObjectSpecificationType
public OrgRelationObjectSpecificationType(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()
-
getSubjectRelation
public QName getSubjectRelation()
-
setSubjectRelation
public void setSubjectRelation(QName value)
-
getScope
public OrgScopeType getScope()
-
setScope
public void setScope(OrgScopeType value)
-
isIncludeReferenceOrg
public Boolean isIncludeReferenceOrg()
-
setIncludeReferenceOrg
public void setIncludeReferenceOrg(Boolean value)
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
subjectRelation
public OrgRelationObjectSpecificationType subjectRelation(QName value)
-
scope
public OrgRelationObjectSpecificationType scope(OrgScopeType value)
-
includeReferenceOrg
public OrgRelationObjectSpecificationType includeReferenceOrg(Boolean value)
-
id
public OrgRelationObjectSpecificationType id(Long value)
-
clone
public OrgRelationObjectSpecificationType clone()
-
-