Class ExternalSchemaTypeProperties
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.assetmanager.properties.ReferenceableProperties
-
- org.odpi.openmetadata.accessservices.assetmanager.properties.SupplementaryProperties
-
- org.odpi.openmetadata.accessservices.assetmanager.properties.SchemaProperties
-
- org.odpi.openmetadata.accessservices.assetmanager.properties.SchemaTypeProperties
-
- org.odpi.openmetadata.accessservices.assetmanager.properties.SimpleSchemaTypeProperties
-
- org.odpi.openmetadata.accessservices.assetmanager.properties.ExternalSchemaTypeProperties
-
- All Implemented Interfaces:
Serializable
public class ExternalSchemaTypeProperties extends SimpleSchemaTypeProperties
ExternalSchemaTypeProperties carries the unique identifier and properties of a reusable schema type.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExternalSchemaTypeProperties()Default constructorExternalSchemaTypeProperties(ExternalSchemaTypeProperties 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.SchemaTypePropertiesgetExternalSchemaType()Return the schema type that is reusable amongst assets.StringgetExternalSchemaTypeGUID()Return the unique identifier of the external schema type.inthashCode()Return hash code for this objectvoidsetExternalSchemaType(SchemaTypeProperties externalSchemaType)Set up the schema type that is reusable amongst assets.voidsetExternalSchemaTypeGUID(String externalSchemaTypeGUID)Set up the unique identifier of the external schema type.StringtoString()Standard toString method.-
Methods inherited from class org.odpi.openmetadata.accessservices.assetmanager.properties.SimpleSchemaTypeProperties
getDataType, getDefaultValue, setDataType, setDefaultValue
-
Methods inherited from class org.odpi.openmetadata.accessservices.assetmanager.properties.SchemaTypeProperties
getAuthor, getEncodingStandard, getFormula, getNamespace, getQueries, getUsage, getVersionNumber, setAuthor, setEncodingStandard, setFormula, setNamespace, setQueries, setUsage, setVersionNumber
-
Methods inherited from class org.odpi.openmetadata.accessservices.assetmanager.properties.SchemaProperties
getIsDeprecated, getTechnicalDescription, getTechnicalName, setIsDeprecated, setTechnicalDescription, setTechnicalName
-
Methods inherited from class org.odpi.openmetadata.accessservices.assetmanager.properties.SupplementaryProperties
getAbbreviation, getDescription, getDisplayName, getSummary, setAbbreviation, setDescription, setDisplayName, setSummary
-
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
-
ExternalSchemaTypeProperties
public ExternalSchemaTypeProperties()
Default constructor
-
ExternalSchemaTypeProperties
public ExternalSchemaTypeProperties(ExternalSchemaTypeProperties template)
Copy/clone Constructor- Parameters:
template- template object to copy.
-
-
Method Detail
-
getExternalSchemaTypeGUID
public String getExternalSchemaTypeGUID()
Return the unique identifier of the external schema type.- Returns:
- string guid
-
setExternalSchemaTypeGUID
public void setExternalSchemaTypeGUID(String externalSchemaTypeGUID)
Set up the unique identifier of the external schema type.- Parameters:
externalSchemaTypeGUID- string guid
-
getExternalSchemaType
public SchemaTypeProperties getExternalSchemaType()
Return the schema type that is reusable amongst assets.- Returns:
- bean describing external schema
-
setExternalSchemaType
public void setExternalSchemaType(SchemaTypeProperties externalSchemaType)
Set up the schema type that is reusable amongst assets.- Parameters:
externalSchemaType- bean describing external schema
-
toString
public String toString()
Standard toString method.- Overrides:
toStringin classSimpleSchemaTypeProperties- 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 classSimpleSchemaTypeProperties- Parameters:
objectToCompare- supplied object- Returns:
- boolean result of comparison
-
hashCode
public int hashCode()
Return hash code for this object- Overrides:
hashCodein classSimpleSchemaTypeProperties- Returns:
- int hash code
-
-