Class ProvenanceFeedDefinitionType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.ProvenanceFeedDefinitionType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class ProvenanceFeedDefinitionType extends Object implements Serializable, Cloneable, Containerable
Specifies data provenance properties for a particular data feed (source), such as resource. TODO actually it's more powerful as it allows to specify other metadata items as well; consider renamingJava class for ProvenanceFeedDefinitionType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ProvenanceFeedDefinitionType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="originRef" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}ObjectReferenceType" minOccurs="0"/> <element name="acquisitionItemPopulator" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}PopulateItemType" maxOccurs="unbounded" minOccurs="0"/> <element name="metadataItemPopulator" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}PopulateItemType" maxOccurs="unbounded" minOccurs="0"/> <element name="useBuiltinPopulators" 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_ACQUISITION_ITEM_POPULATOR
static ItemName
F_METADATA_ITEM_POPULATOR
static ItemName
F_ORIGIN_REF
static ItemName
F_USE_BUILTIN_POPULATORS
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description ProvenanceFeedDefinitionType()
ProvenanceFeedDefinitionType(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_ORIGIN_REF
public static final ItemName F_ORIGIN_REF
-
F_ACQUISITION_ITEM_POPULATOR
public static final ItemName F_ACQUISITION_ITEM_POPULATOR
-
F_METADATA_ITEM_POPULATOR
public static final ItemName F_METADATA_ITEM_POPULATOR
-
F_USE_BUILTIN_POPULATORS
public static final ItemName F_USE_BUILTIN_POPULATORS
-
-
Constructor Detail
-
ProvenanceFeedDefinitionType
public ProvenanceFeedDefinitionType()
-
ProvenanceFeedDefinitionType
public ProvenanceFeedDefinitionType(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()
-
getOriginRef
public ObjectReferenceType getOriginRef()
-
setOriginRef
public void setOriginRef(ObjectReferenceType value)
-
getAcquisitionItemPopulator
public List<PopulateItemType> getAcquisitionItemPopulator()
-
createAcquisitionItemPopulatorList
public List<PopulateItemType> createAcquisitionItemPopulatorList()
-
getMetadataItemPopulator
public List<PopulateItemType> getMetadataItemPopulator()
-
createMetadataItemPopulatorList
public List<PopulateItemType> createMetadataItemPopulatorList()
-
isUseBuiltinPopulators
public Boolean isUseBuiltinPopulators()
-
setUseBuiltinPopulators
public void setUseBuiltinPopulators(Boolean value)
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
originRef
public ProvenanceFeedDefinitionType originRef(ObjectReferenceType value)
-
originRef
public ProvenanceFeedDefinitionType originRef(String oid, QName type)
-
originRef
public ProvenanceFeedDefinitionType originRef(String oid, QName type, QName relation)
-
beginOriginRef
public ObjectReferenceType beginOriginRef()
-
acquisitionItemPopulator
public ProvenanceFeedDefinitionType acquisitionItemPopulator(PopulateItemType value)
-
beginAcquisitionItemPopulator
public PopulateItemType beginAcquisitionItemPopulator()
-
metadataItemPopulator
public ProvenanceFeedDefinitionType metadataItemPopulator(PopulateItemType value)
-
beginMetadataItemPopulator
public PopulateItemType beginMetadataItemPopulator()
-
useBuiltinPopulators
public ProvenanceFeedDefinitionType useBuiltinPopulators(Boolean value)
-
id
public ProvenanceFeedDefinitionType id(Long value)
-
clone
public ProvenanceFeedDefinitionType clone()
-
-