Class SchemaProperties
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.assetmanager.properties.ReferenceableProperties
-
- org.odpi.openmetadata.accessservices.assetmanager.properties.SchemaProperties
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SchemaAttributeProperties,SchemaTypeProperties
public class SchemaProperties extends ReferenceableProperties
SchemaProperties is a bean containing the common attributes for schema types and schema attributes.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SchemaProperties()Default constructorSchemaProperties(SchemaProperties 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()Returns the stored technicalDescription property for the schema element.StringgetDisplayName()Return the simple name of the schema element.booleangetIsDeprecated()Is the schema element deprecated?inthashCode()Return hash code based on properties.voidsetDescription(String description)Set up the stored technicalDescription property for the schema element.voidsetDisplayName(String name)Set up the simple name of the schema element.voidsetIsDeprecated(boolean deprecated)Set whether the schema element deprecated or not.StringtoString()Standard toString method.-
Methods inherited from class org.odpi.openmetadata.accessservices.assetmanager.properties.ReferenceableProperties
getAdditionalProperties, getEffectiveFrom, getEffectiveTo, getExtendedProperties, getQualifiedName, getTypeName, getVendorProperties, setAdditionalProperties, setEffectiveFrom, setEffectiveTo, setExtendedProperties, setQualifiedName, setTypeName, setVendorProperties
-
-
-
-
Constructor Detail
-
SchemaProperties
public SchemaProperties()
Default constructor
-
SchemaProperties
public SchemaProperties(SchemaProperties template)
Copy/clone Constructor.- Parameters:
template- template object to copy.
-
-
Method Detail
-
getIsDeprecated
public boolean getIsDeprecated()
Is the schema element deprecated?- Returns:
- boolean flag
-
setIsDeprecated
public void setIsDeprecated(boolean deprecated)
Set whether the schema element deprecated or not. Default is false.- Parameters:
deprecated- boolean flag
-
getDisplayName
public String getDisplayName()
Return the simple name of the schema element.- Returns:
- string name
-
setDisplayName
public void setDisplayName(String name)
Set up the simple name of the schema element.- Parameters:
name- String display name
-
getDescription
public String getDescription()
Returns the stored technicalDescription property for the schema element.- Returns:
- string technicalDescription
-
setDescription
public void setDescription(String description)
Set up the stored technicalDescription property for the schema element.- Parameters:
description- string technicalDescription
-
toString
public String toString()
Standard toString method.- Overrides:
toStringin classReferenceableProperties- Returns:
- print out of variables in a JSON-style
-
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
-
-