Class GovernanceDefinitionProperties
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.digitalservice.properties.ReferenceableProperties
-
- org.odpi.openmetadata.accessservices.digitalservice.properties.GovernanceDefinitionProperties
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CertificationTypeProperties,LicenseTypeProperties
public class GovernanceDefinitionProperties extends ReferenceableProperties
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GovernanceDefinitionProperties()Default ConstructorGovernanceDefinitionProperties(GovernanceDefinitionProperties template)Copy/clone Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Compare the values of the supplied object with those stored in the current object.StringgetDescription()Return the full description of the governance definition.intgetDomainIdentifier()Return the identifier of the governance domain that this definition belongs to (0=all).List<String>getImplications()Return the list of implications for the organization that this governance definition brings.List<String>getOutcomes()Return the list of expected outcomes from implementing this governance definition.StringgetPriority()Return the priority of the governance definition.List<String>getResults()Return the list of actual results from implementing this governance definition.StringgetScope()Return the organizational scope that this governance definition applies to.StringgetSummary()Return the summary for this governance definition.StringgetTitle()Return the title associated with this governance definition.inthashCode()Return hash code based on properties.voidsetDescription(String description)Set up the full description of the governance definition.voidsetDomainIdentifier(int domainIdentifier)Set up the identifier of the governance domain that this definition belongs to (0=all).voidsetImplications(List<String> implications)Set up the list of implications for the organization that this governance definition brings.voidsetOutcomes(List<String> outcomes)Set up the list of expected outcomes from implementing this governance definition.voidsetPriority(String priority)Set up the priority of this governance definition.voidsetResults(List<String> results)Set up the list of actual results from implementing this governance definition.voidsetScope(String scope)Set up the organizational scope that this governance definition applies to.voidsetSummary(String summary)Set up the summary of the governance definition.voidsetTitle(String title)Set up the title associated with this governance definition.StringtoString()JSON-style toString.-
Methods inherited from class org.odpi.openmetadata.accessservices.digitalservice.properties.ReferenceableProperties
getAdditionalProperties, getEffectiveFrom, getEffectiveTo, getExtendedProperties, getQualifiedName, getTypeName, setAdditionalProperties, setEffectiveFrom, setEffectiveTo, setExtendedProperties, setQualifiedName, setTypeName
-
-
-
-
Constructor Detail
-
GovernanceDefinitionProperties
public GovernanceDefinitionProperties()
Default Constructor
-
GovernanceDefinitionProperties
public GovernanceDefinitionProperties(GovernanceDefinitionProperties template)
Copy/clone Constructor- Parameters:
template- object being copied
-
-
Method Detail
-
getTitle
public String getTitle()
Return the title associated with this governance definition.- Returns:
- String title
-
setTitle
public void setTitle(String title)
Set up the title associated with this governance definition.- Parameters:
title- String title
-
getSummary
public String 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
public void setSummary(String summary)
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
public String getDescription()
Return the full description of the governance definition.- Returns:
- String description
-
setDescription
public void setDescription(String description)
Set up the full description of the governance definition.- Parameters:
description- String description
-
getScope
public String getScope()
Return the organizational scope that this governance definition applies to.- Returns:
- String organization, department or team name
-
setScope
public void setScope(String scope)
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
public String 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
public void setPriority(String priority)
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
public List<String> 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
public void setImplications(List<String> implications)
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
public List<String> getOutcomes()
Return the list of expected outcomes from implementing this governance definition.- Returns:
- list of outcome descriptions
-
setOutcomes
public void setOutcomes(List<String> outcomes)
Set up the list of expected outcomes from implementing this governance definition.- Parameters:
outcomes- list of descriptions of outcomes
-
getResults
public List<String> getResults()
Return the list of actual results from implementing this governance definition.- Returns:
- list of result descriptions
-
setResults
public void setResults(List<String> results)
Set up the list of actual results from implementing this governance definition.- Parameters:
results- list of description of results
-
toString
public String toString()
JSON-style toString.- Overrides:
toStringin classReferenceableProperties- Returns:
- list of properties and their values.
-
equals
public boolean equals(Object objectToCompare)
Compare the values of the supplied object with those stored in the current object.- Overrides:
equalsin classReferenceableProperties- Parameters:
objectToCompare- supplied object- Returns:
- boolean result of comparison
-
hashCode
public int hashCode()
Return hash code based on properties.- Overrides:
hashCodein classReferenceableProperties- Returns:
- int
-
-