Class ResourceBidirectionalMappingType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.ResourceBidirectionalMappingType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
- Direct Known Subclasses:
ResourceBidirectionalMappingAndDefinitionType
public class ResourceBidirectionalMappingType extends Object implements Serializable, Cloneable, Containerable
Java class for ResourceBidirectionalMappingType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ResourceBidirectionalMappingType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="fetchStrategy" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}AttributeFetchStrategyType" minOccurs="0"/> <element name="outbound" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}MappingType" maxOccurs="unbounded" minOccurs="0"/> <element name="inbound" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}MappingType" maxOccurs="unbounded" 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_FETCH_STRATEGY
static ItemName
F_INBOUND
static ItemName
F_OUTBOUND
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description ResourceBidirectionalMappingType()
ResourceBidirectionalMappingType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
MappingType
beginInbound()
MappingType
beginOutbound()
ResourceBidirectionalMappingType
clone()
List<MappingType>
createInboundList()
List<MappingType>
createOutboundList()
<X> X
end()
boolean
equals(Object object)
ResourceBidirectionalMappingType
fetchStrategy(AttributeFetchStrategyType value)
AttributeFetchStrategyType
getFetchStrategy()
Long
getId()
List<MappingType>
getInbound()
List<MappingType>
getOutbound()
int
hashCode()
ResourceBidirectionalMappingType
id(Long value)
ResourceBidirectionalMappingType
inbound(MappingType value)
ResourceBidirectionalMappingType
outbound(MappingType value)
void
setFetchStrategy(AttributeFetchStrategyType value)
void
setId(Long value)
void
setupContainerValue(PrismContainerValue containerValue)
Setup value to the containerable representation.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
-
ResourceBidirectionalMappingType
public ResourceBidirectionalMappingType()
-
ResourceBidirectionalMappingType
public ResourceBidirectionalMappingType(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()
-
getFetchStrategy
public AttributeFetchStrategyType getFetchStrategy()
-
setFetchStrategy
public void setFetchStrategy(AttributeFetchStrategyType value)
-
getOutbound
public List<MappingType> getOutbound()
-
createOutboundList
public List<MappingType> createOutboundList()
-
getInbound
public List<MappingType> getInbound()
-
createInboundList
public List<MappingType> createInboundList()
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
fetchStrategy
public ResourceBidirectionalMappingType fetchStrategy(AttributeFetchStrategyType value)
-
outbound
public ResourceBidirectionalMappingType outbound(MappingType value)
-
beginOutbound
public MappingType beginOutbound()
-
inbound
public ResourceBidirectionalMappingType inbound(MappingType value)
-
beginInbound
public MappingType beginInbound()
-
id
public ResourceBidirectionalMappingType id(Long value)
-
clone
public ResourceBidirectionalMappingType clone()
-
-