Class SubjectAreaElement
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.digitalarchitecture.metadataelements.SubjectAreaElement
-
- All Implemented Interfaces:
Serializable,MetadataElement
public class SubjectAreaElement extends Object implements Serializable, MetadataElement
SubjectAreaElement is the bean used to return a subject area definition stored in the open metadata repositories. It includes links to related subject areas and the governance definitions associated with the subject areas. More information about the governance definitions can be retrieved through the Governance Program OMAS.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SubjectAreaElement()Default constructorSubjectAreaElement(SubjectAreaElement template)Copy/clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Return comparison result based on the content of the properties.List<ElementStub>getAssociatedGovernanceDefinitions()Return the list of the governance definitions that control assets in this zone.ElementHeadergetElementHeader()Return the element header associated with the properties.List<String>getNestedSubjectAreaGUIDs()Return the list of unique identifiers of the subject areas that inherit governance definitions from this zone.StringgetParentSubjectAreaGUID()Return the unique identifier of the subject area that this zone inherits governance definitions from.SubjectAreaPropertiesgetProperties()Return the properties of the subject area.inthashCode()Return hash code for this objectvoidsetAssociatedGovernanceDefinitions(List<ElementStub> associatedGovernanceDefinitions)Set up the list of the governance definitions that control assets in this zone.voidsetElementHeader(ElementHeader elementHeader)Set up the element header associated with the properties.voidsetNestedSubjectAreaGUIDs(List<String> nestedSubjectAreaGUIDs)Set up the list of unique identifiers of the subject areas that inherit governance definitions from this zone.voidsetParentSubjectAreaGUID(String parentSubjectAreaGUID)Set up the unique identifier of the subject area that this zone inherits governance definitions from.voidsetProperties(SubjectAreaProperties properties)Set up the properties of the subject area.StringtoString()JSON-style toString
-
-
-
Constructor Detail
-
SubjectAreaElement
public SubjectAreaElement()
Default constructor
-
SubjectAreaElement
public SubjectAreaElement(SubjectAreaElement template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getElementHeader
public ElementHeader getElementHeader()
Return the element header associated with the properties.- Specified by:
getElementHeaderin interfaceMetadataElement- Returns:
- element header object
-
setElementHeader
public void setElementHeader(ElementHeader elementHeader)
Set up the element header associated with the properties.- Specified by:
setElementHeaderin interfaceMetadataElement- Parameters:
elementHeader- element header object
-
getProperties
public SubjectAreaProperties getProperties()
Return the properties of the subject area.- Returns:
- properties bean
-
setProperties
public void setProperties(SubjectAreaProperties properties)
Set up the properties of the subject area.- Parameters:
properties- properties bean
-
getParentSubjectAreaGUID
public String getParentSubjectAreaGUID()
Return the unique identifier of the subject area that this zone inherits governance definitions from.- Returns:
- string guid
-
setParentSubjectAreaGUID
public void setParentSubjectAreaGUID(String parentSubjectAreaGUID)
Set up the unique identifier of the subject area that this zone inherits governance definitions from.- Parameters:
parentSubjectAreaGUID- string guid
-
getNestedSubjectAreaGUIDs
public List<String> getNestedSubjectAreaGUIDs()
Return the list of unique identifiers of the subject areas that inherit governance definitions from this zone.- Returns:
- list of string guids
-
setNestedSubjectAreaGUIDs
public void setNestedSubjectAreaGUIDs(List<String> nestedSubjectAreaGUIDs)
Set up the list of unique identifiers of the subject areas that inherit governance definitions from this zone.- Parameters:
nestedSubjectAreaGUIDs- list of string guids
-
getAssociatedGovernanceDefinitions
public List<ElementStub> getAssociatedGovernanceDefinitions()
Return the list of the governance definitions that control assets in this zone.- Returns:
- list of definitions
-
setAssociatedGovernanceDefinitions
public void setAssociatedGovernanceDefinitions(List<ElementStub> associatedGovernanceDefinitions)
Set up the list of the governance definitions that control assets in this zone.- Parameters:
associatedGovernanceDefinitions- list of definitions
-
toString
public String toString()
JSON-style toString
-
equals
public boolean equals(Object objectToCompare)
Return comparison result based on the content of the properties.
-
-