Class SchemaTypeBuilder
- java.lang.Object
-
- org.odpi.openmetadata.commonservices.generichandlers.OpenMetadataAPIGenericBuilder
-
- org.odpi.openmetadata.commonservices.generichandlers.ReferenceableBuilder
-
- org.odpi.openmetadata.commonservices.generichandlers.SchemaTypeBuilder
-
public class SchemaTypeBuilder extends ReferenceableBuilder
SchemaTypeBuilder manages the properties for a schema type. These properties may be stored in a schema type entity or a type embedded attribute classification (linked off of schema attribute).
-
-
Field Summary
-
Fields inherited from class org.odpi.openmetadata.commonservices.generichandlers.ReferenceableBuilder
qualifiedName
-
Fields inherited from class org.odpi.openmetadata.commonservices.generichandlers.OpenMetadataAPIGenericBuilder
errorHandler, existingClassifications, extendedProperties, instanceStatus, newClassifications, repositoryHelper, serverName, serviceName, templateProperties, typeGUID, typeName
-
-
Constructor Summary
Constructors Constructor Description SchemaTypeBuilder(String qualifiedName, String displayName, String description, String versionNumber, boolean isDeprecated, String author, String usage, String encodingStandard, String namespace, Map<String,String> additionalProperties, String typeId, String typeName, Map<String,Object> extendedProperties, OMRSRepositoryHelper repositoryHelper, String serviceName, String serverName)Constructor supporting all common properties.SchemaTypeBuilder(String qualifiedName, String typeId, String typeName, OMRSRepositoryHelper repositoryHelper, String serviceName, String serverName)Simple typed constructorSchemaTypeBuilder(String qualifiedName, String displayName, OMRSRepositoryHelper repositoryHelper, String serviceName, String serverName)Minimal constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetExternalSchemaTypeGUID()Return the unique identifier for an external schema type.InstancePropertiesgetInstanceProperties(String methodName)Return the supplied bean properties in an InstanceProperties object.SchemaTypeBuildergetMapFrom()Return the builder for the type of the value that is in the domain of the map.StringgetMapFromGUID()Return the GUID for the type of the value that is in the domain of the map.SchemaTypeBuildergetMapTo()Return the builder for the type of the value that is in the range of the map.StringgetMapToGUID()Return the GUID for the type of the value that is in the range of the map.List<SchemaTypeBuilder>getSchemaOptions()Return the list of types that are represented by a schema option type.InstancePropertiesgetTypeEmbeddedInstanceProperties(String methodName)Return the supplied bean properties in an InstanceProperties object for a TypeEmbeddedAttribute classification.StringgetValidValuesSetGUID()Return the unique identifier of the valid values set that lists the permitted values for the attached schema attribute.booleanisDerived()Return whether the schema has a derived value of not.voidsetDataType(String dataType)Set up the type of data (for simple and literal types)voidsetDefaultValue(String defaultValue)Set up the default value of a field (for simple types).voidsetDerivedProperties(String formula)Set up the properties that indicate that the schema element's value is not stored, it is derived from other values.voidsetExternalSchemaTypeGUID(String guid)Set up the unique identifier for an external schema type.voidsetFixedValue(String fixedValue)Set up the fixed data value (for literal types).voidsetMapGUIDs(String mapFromGUID, String mapToGUID)Set up the builder to support a map type.voidsetMapTypes(SchemaTypeBuilder mapFrom, SchemaTypeBuilder mapTo)Set up the builder to support a map type.voidsetSchemaOptions(List<SchemaTypeBuilder> schemaOptions)Set up the list of types that are represented by a schema option type.voidsetValidValuesSetGUID(String validValuesSetGUID)Set up the unique identifier of the valid values set that lists the permitted values for the attached schema attribute.-
Methods inherited from class org.odpi.openmetadata.commonservices.generichandlers.ReferenceableBuilder
getQualifiedName, setMemento, setOwnershipClassification, setSecurityTags, setTemplate
-
Methods inherited from class org.odpi.openmetadata.commonservices.generichandlers.OpenMetadataAPIGenericBuilder
getEntityClassificationProperties, getEntityClassifications, getExistingEntityClassificationHeader, getInstanceProperties, getInstanceStatus, getTypeGUID, getTypeName, setAnchors, setClassification, setEffectivityDates, setEffectivityDates, setLatestChange, setTemplateClassifications, updateInstanceProperties
-
-
-
-
Constructor Detail
-
SchemaTypeBuilder
public SchemaTypeBuilder(String qualifiedName, String displayName, OMRSRepositoryHelper repositoryHelper, String serviceName, String serverName)
Minimal constructor- Parameters:
qualifiedName- unique namedisplayName- new value for the display name.repositoryHelper- helper methodsserviceName- name of this OMASserverName- name of local server
-
SchemaTypeBuilder
public SchemaTypeBuilder(String qualifiedName, String typeId, String typeName, OMRSRepositoryHelper repositoryHelper, String serviceName, String serverName)
Simple typed constructor- Parameters:
qualifiedName- unique nametypeName- name of the type for this schema elementtypeId- unique identifier of the type for this schema elementrepositoryHelper- helper methodsserviceName- name of this OMASserverName- name of local server
-
SchemaTypeBuilder
public SchemaTypeBuilder(String qualifiedName, String displayName, String description, String versionNumber, boolean isDeprecated, String author, String usage, String encodingStandard, String namespace, Map<String,String> additionalProperties, String typeId, String typeName, Map<String,Object> extendedProperties, OMRSRepositoryHelper repositoryHelper, String serviceName, String serverName)
Constructor supporting all common properties.- Parameters:
qualifiedName- unique name of schema type itselfdisplayName- new value for the display name.description- description of the schema type.versionNumber- version of the schema type.isDeprecated- is the schema type deprecatedauthor- name of the authorusage- guidance on how the schema should be used.encodingStandard- format of the schema.namespace- namespace where the schema is defined.additionalProperties- additional propertiestypeName- unique name of schema sub typetypeId- unique identifier of the schema subtypeextendedProperties- properties from the subtype.repositoryHelper- helper methodsserviceName- name of this OMASserverName- name of local server
-
-
Method Detail
-
setDataType
public void setDataType(String dataType)
Set up the type of data (for simple and literal types)- Parameters:
dataType- string name
-
setDefaultValue
public void setDefaultValue(String defaultValue)
Set up the default value of a field (for simple types).- Parameters:
defaultValue- string value
-
setFixedValue
public void setFixedValue(String fixedValue)
Set up the fixed data value (for literal types).- Parameters:
fixedValue- string value
-
setExternalSchemaTypeGUID
public void setExternalSchemaTypeGUID(String guid)
Set up the unique identifier for an external schema type.- Parameters:
guid- string guid
-
getExternalSchemaTypeGUID
public String getExternalSchemaTypeGUID()
Return the unique identifier for an external schema type.- Returns:
- string guid
-
setValidValuesSetGUID
public void setValidValuesSetGUID(String validValuesSetGUID)
Set up the unique identifier of the valid values set that lists the permitted values for the attached schema attribute.- Parameters:
validValuesSetGUID- string guid
-
getValidValuesSetGUID
public String getValidValuesSetGUID()
Return the unique identifier of the valid values set that lists the permitted values for the attached schema attribute.- Returns:
- string guid
-
setMapTypes
public void setMapTypes(SchemaTypeBuilder mapFrom, SchemaTypeBuilder mapTo)
Set up the builder to support a map type. This needs to point to two other schema types.- Parameters:
mapFrom- the type of the value that is in the domain of the mapmapTo- the type of the value that is in the rage of the map
-
setMapGUIDs
public void setMapGUIDs(String mapFromGUID, String mapToGUID)
Set up the builder to support a map type. This needs to point to two other schema types.- Parameters:
mapFromGUID- the GUID of the value that is in the domain of the mapmapToGUID- the GUID of the value that is in the rage of the map
-
getMapFrom
public SchemaTypeBuilder getMapFrom()
Return the builder for the type of the value that is in the domain of the map.- Returns:
- builder for requested type
-
getMapTo
public SchemaTypeBuilder getMapTo()
Return the builder for the type of the value that is in the range of the map.- Returns:
- builder for requested type
-
getMapFromGUID
public String getMapFromGUID()
Return the GUID for the type of the value that is in the domain of the map.- Returns:
- string
-
getMapToGUID
public String getMapToGUID()
Return the GUID for the type of the value that is in the range of the map.- Returns:
- string
-
setSchemaOptions
public void setSchemaOptions(List<SchemaTypeBuilder> schemaOptions)
Set up the list of types that are represented by a schema option type.- Parameters:
schemaOptions- list of builders
-
getSchemaOptions
public List<SchemaTypeBuilder> getSchemaOptions()
Return the list of types that are represented by a schema option type.- Returns:
- list of builders
-
setDerivedProperties
public void setDerivedProperties(String formula)
Set up the properties that indicate that the schema element's value is not stored, it is derived from other values. The formula is stored in the CalculatedValue classification. If it is null, the queries are ignored. The queries are each stored as a DerivedSchemaTypeQueryTarget.- Parameters:
formula- expression, possibly with place holders to insert the values returned from the queries
-
isDerived
public boolean isDerived()
Return whether the schema has a derived value of not. This is determined from the setting of formula- Returns:
- boolean
-
getInstanceProperties
public InstanceProperties getInstanceProperties(String methodName) throws InvalidParameterException
Return the supplied bean properties in an InstanceProperties object.- Overrides:
getInstancePropertiesin classReferenceableBuilder- Parameters:
methodName- name of the calling method- Returns:
- InstanceProperties object
- Throws:
InvalidParameterException- there is a problem with the properties
-
getTypeEmbeddedInstanceProperties
public InstanceProperties getTypeEmbeddedInstanceProperties(String methodName) throws InvalidParameterException
Return the supplied bean properties in an InstanceProperties object for a TypeEmbeddedAttribute classification. If the caller uses this when there are extended properties defined for the builder then the call to create or add the entity will fail with invalid properties.- Parameters:
methodName- name of the calling method- Returns:
- InstanceProperties object
- Throws:
InvalidParameterException- there is a problem with the properties
-
-