Interface DataObjectSchemaDefinition
-
- All Known Subinterfaces:
DataObjectSchemaDefinitionEntity
- All Known Implementing Classes:
DataObjectSchemaDefinitionEntityImpl
public interface DataObjectSchemaDefinition
- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Date
getCreationTime()
Returns the creation timestamp of this defnitionjava.lang.String
getCreatorId()
Returns the id of the user creating this data definition.java.lang.String
getDeploymentId()
java.lang.String
getId()
Returns the unique, technical id for this data object schema definition.java.lang.String
getKey()
Returns the key for this data object schema definition which must be unique, but is human-readable normally and must be the same across environments for the same data object schema definition.java.lang.String
getResourceName()
java.lang.String
getTenantId()
int
getVersion()
-
-
-
Method Detail
-
getId
java.lang.String getId()
Returns the unique, technical id for this data object schema definition. This id will be different from environment to environment.- Returns:
- the id of this data object schema definition
-
getKey
java.lang.String getKey()
Returns the key for this data object schema definition which must be unique, but is human-readable normally and must be the same across environments for the same data object schema definition.- Returns:
- the key for this data object schema definition
-
getVersion
int getVersion()
-
getDeploymentId
java.lang.String getDeploymentId()
-
getResourceName
java.lang.String getResourceName()
-
getCreationTime
java.util.Date getCreationTime()
Returns the creation timestamp of this defnition- Returns:
- the creation timestamp
-
getCreatorId
java.lang.String getCreatorId()
Returns the id of the user creating this data definition.- Returns:
- the id of the creation user
-
getTenantId
java.lang.String getTenantId()
-
-