Interface MetadataElement
-
- All Known Implementing Classes:
ConnectionElement,ConnectorTypeElement,DataAssetElement,EndpointElement,ExternalReferenceElement,ExternalReferenceLinkElement,GlossaryCategoryElement,GlossaryElement,GlossaryTermElement,GovernanceActionElement,GovernanceActionProcessElement,GovernanceActionTypeElement,GovernanceDefinitionElement,PortElement,ProcessElement,SchemaAttributeElement,SchemaTypeElement,SoftwareCapabilityElement,ValidValueElement
public interface MetadataElementMetadataElement is the common interface for all metadata elements. It adds the header information that is stored with the properties. This includes detains of its unique identifier, type and origin.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<MetadataCorrelationHeader>getCorrelationHeaders()Return the details of the external identifier and other correlation properties about the metadata source.ElementHeadergetElementHeader()Return the element header associated with the open metadata element.voidsetCorrelationHeaders(List<MetadataCorrelationHeader> correlationHeaders)Set up the details of the external identifier and other correlation properties about the metadata source.voidsetElementHeader(ElementHeader elementHeader)Set up the element header associated with the open metadata element.
-
-
-
Method Detail
-
getElementHeader
ElementHeader getElementHeader()
Return the element header associated with the open metadata element.- Returns:
- element header object
-
setElementHeader
void setElementHeader(ElementHeader elementHeader)
Set up the element header associated with the open metadata element.- Parameters:
elementHeader- element header object
-
getCorrelationHeaders
List<MetadataCorrelationHeader> getCorrelationHeaders()
Return the details of the external identifier and other correlation properties about the metadata source. There is one entry in the list for each element in the third party technology that maps to the single open source element.- Returns:
- list of correlation properties objects
-
setCorrelationHeaders
void setCorrelationHeaders(List<MetadataCorrelationHeader> correlationHeaders)
Set up the details of the external identifier and other correlation properties about the metadata source. There is one entry in the list for each element in the third party technology that maps to the single open source element.- Parameters:
correlationHeaders- list of correlation properties objects
-
-