Class GovernanceDefinitionProperties
java.lang.Object
org.odpi.openmetadata.accessservices.governanceprogram.properties.GovernanceDefinitionProperties
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CertificationTypeProperties
,LicenseTypeProperties
,SecurityGroupProperties
GovernanceDefinitionProperties provides the base class for many of the definitions that define the data strategy
and governance program. It includes many of the common fields:
- Document Id
- Title
- Summary
- Description
- Scope
- Domain Identifier
- Status
- Priority
- Implications
- Outcomes
- Results
- AdditionalProperties
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault ConstructorCopy/clone Constructor -
Method Summary
Modifier and TypeMethodDescriptionboolean
Compare the values of the supplied object with those stored in the current object.Return a copy of the additional properties.Return the full description of the governance definition.Returns the stored qualified name property for the metadata entity.int
Return the identifier of the governance domain that this definition belongs to (0=all).Return the properties that are defined for a subtype of referenceable but are not explicitly supported by the bean.Return the list of implications for the organization that this governance definition brings.Return the list of expected outcomes from implementing this governance definition.Return the priority of the governance definition.Return the list of actual results from implementing this governance definition.getScope()
Return the organizational scope that this governance definition applies to.Return the summary for this governance definition.getTitle()
Return the title associated with this governance definition.Return the open metadata type name of this object - this is used to create a subtype of the referenceable.int
hashCode()
Return hash code based on properties.void
setAdditionalProperties
(Map<String, String> additionalProperties) Set up additional properties.void
setDescription
(String description) Set up the full description of the governance definition.void
setDocumentIdentifier
(String documentIdentifier) Set up the fully qualified name.void
setDomainIdentifier
(int domainIdentifier) Set up the identifier of the governance domain that this definition belongs to (0=all).void
setExtendedProperties
(Map<String, Object> extendedProperties) Set up the properties that are defined for a subtype of referenceable but are not explicitly supported by the bean.void
setImplications
(List<String> implications) Set up the list of implications for the organization that this governance definition brings.void
setOutcomes
(List<String> outcomes) Set up the list of expected outcomes from implementing this governance definition.void
setPriority
(String priority) Set up the priority of this governance definition.void
setResults
(List<String> results) Set up the list of actual results from implementing this governance definition.void
Set up the organizational scope that this governance definition applies to.void
setSummary
(String summary) Set up the summary of the governance definition.void
Set up the title associated with this governance definition.void
setTypeName
(String typeName) Set up the open metadata type name of this object - this is used to create a subtype of the referenceable.toString()
JSON-style toString.
-
Constructor Details
-
GovernanceDefinitionProperties
public GovernanceDefinitionProperties()Default Constructor -
GovernanceDefinitionProperties
Copy/clone Constructor- Parameters:
template
- object being copied
-
-
Method Details
-
getTypeName
Return the open metadata type name of this object - this is used to create a subtype of the referenceable. Any properties associated with this subtype are passed as extended properties.- Returns:
- string type name
-
setTypeName
Set up the open metadata type name of this object - this is used to create a subtype of the referenceable. Any properties associated with this subtype are passed as extended properties.- Parameters:
typeName
- string type name
-
getDocumentIdentifier
Returns the stored qualified name property for the metadata entity. If no qualified name is available then the empty string is returned.- Returns:
- documentIdentifier
-
setDocumentIdentifier
Set up the fully qualified name.- Parameters:
documentIdentifier
- String name
-
getAdditionalProperties
Return a copy of the additional properties. Null means no additional properties are available.- Returns:
- AdditionalProperties
-
setAdditionalProperties
Set up additional properties.- Parameters:
additionalProperties
- Additional properties object
-
getExtendedProperties
Return the properties that are defined for a subtype of referenceable but are not explicitly supported by the bean.- Returns:
- map of properties
-
setExtendedProperties
Set up the properties that are defined for a subtype of referenceable but are not explicitly supported by the bean.- Parameters:
extendedProperties
- map of properties
-
getTitle
Return the title associated with this governance definition.- Returns:
- String title
-
setTitle
Set up the title associated with this governance definition.- Parameters:
title
- String title
-
getSummary
Return the summary for this governance definition. This should cover its essence. Think of it as the executive summary.- Returns:
- String short description
-
setSummary
Set up the summary of the governance definition. This should cover its essence. Think of it as the executive summary.- Parameters:
summary
- String description
-
getDescription
Return the full description of the governance definition.- Returns:
- String description
-
setDescription
Set up the full description of the governance definition.- Parameters:
description
- String description
-
getScope
Return the organizational scope that this governance definition applies to.- Returns:
- String organization, department or team name
-
setScope
Set up the organizational scope that this governance definition applies to.- Parameters:
scope
- String organization, department or team name
-
getDomainIdentifier
public int getDomainIdentifier()Return the identifier of the governance domain that this definition belongs to (0=all).- Returns:
- int
-
setDomainIdentifier
public void setDomainIdentifier(int domainIdentifier) Set up the identifier of the governance domain that this definition belongs to (0=all).- Parameters:
domainIdentifier
- int
-
getPriority
Return the priority of the governance definition. This may be something like high, medium or low, or maybe a time frame or more detailed explanation.- Returns:
- String priority
-
setPriority
Set up the priority of this governance definition. This may be something like high, medium or low, or maybe a time frame or more detailed explanation.- Parameters:
priority
- String priority
-
getImplications
Return the list of implications for the organization that this governance definition brings. This is often the first enumeration of the changes that that need to be implemented to bring the governance definition into effect.- Returns:
- list of descriptions
-
setImplications
Set up the list of implications for the organization that this governance definition brings. This is often the first enumeration of the changes that that need to be implemented to bring the governance definition into effect.- Parameters:
implications
- list of descriptions
-
getOutcomes
Return the list of expected outcomes from implementing this governance definition.- Returns:
- list of outcome descriptions
-
setOutcomes
Set up the list of expected outcomes from implementing this governance definition.- Parameters:
outcomes
- list of descriptions of outcomes
-
getResults
Return the list of actual results from implementing this governance definition.- Returns:
- list of result descriptions
-
setResults
Set up the list of actual results from implementing this governance definition.- Parameters:
results
- list of description of results
-
toString
JSON-style toString. -
equals
Compare the values of the supplied object with those stored in the current object. -
hashCode
public int hashCode()Return hash code based on properties.
-