Interface SchemaMetadataConstants
-
public interface SchemaMetadataConstantsThis interface contains thepathsto the nodes that hold the metadata associated to table records.- Since:
- 6.1.0
- See Also:
SchemaNode.getNodeChildren(boolean)
-
-
Field Summary
Fields Modifier and Type Field Description static PathCREATION_TIME_PATHPath to the node that defines the creation time of a record.static PathCREATOR_PATHPath to the node that defines the creator of a record.static PathMETADATA_PATHPath to the group that holds the metadata.static PathSYSTEM_PATHPath to the group that holds the system informations about a record.static PathUPDATE_TIME_PATHPath to the node that defines the time of the last modification of a record.static PathUPDATER_PATHPath to the node that defines last user who modified a record.static PathUUID_PATHPath to the node that defines theuuidof a record.
-
-
-
Field Detail
-
METADATA_PATH
static final Path METADATA_PATH
Path to the group that holds the metadata.
-
SYSTEM_PATH
static final Path SYSTEM_PATH
Path to the group that holds the system informations about a record.
-
CREATOR_PATH
static final Path CREATOR_PATH
Path to the node that defines the creator of a record.The XML Schema data type Type of corresponding
nodeisSchemaTypeName.XS_STRING. The value of the correspondingnodeis of typeStringThis path can be used as the following:
whereString userRef = record.getString(CREATOR_PATH);
recordis anrecord objectanduserRefis the formatted reference of the user that has created the specified record.
-
CREATION_TIME_PATH
static final Path CREATION_TIME_PATH
Path to the node that defines the creation time of a record.The XML Schema data type Type of corresponding
nodeisSchemaTypeName.XS_DATETIME. The value of the correspondingnodeis of typeDate.This path can be used as the following:
whereDate timeOfCreation = record.getDate(CREATION_TIME_PATH);
recordis anrecord object.- See Also:
Adaptation.getTimeOfCreation()
-
UPDATER_PATH
static final Path UPDATER_PATH
Path to the node that defines last user who modified a record.The XML Schema data type Type of corresponding
nodeisSchemaTypeName.XS_STRING. The value of the correspondingnodeis of typeStringThis path can be used as the following:
whereString userRef = record.getString(UPDATER_PATH);
recordis anrecord objectanduserRefis the formatted reference of the last user that has modified the specified record.
-
UPDATE_TIME_PATH
static final Path UPDATE_TIME_PATH
Path to the node that defines the time of the last modification of a record.The XML Schema data type Type of corresponding
nodeisSchemaTypeName.XS_DATETIME. The value of the correspondingnodeis of typeDate.This path can be used as the following:
whereDate timeOfLastModification = record.getDate(UPDATE_TIME_PATH);
recordis anrecord object.- See Also:
Adaptation.getTimeOfLastModification()
-
UUID_PATH
static final Path UUID_PATH
Path to the node that defines theuuidof a record.The XML Schema data type Type of corresponding
nodeisSchemaTypeName.XS_STRING. The value of the correspondingnodeis of typeString.This path can be used as the following:
whereString uuid = record.getString(UUID_PATH);
recordis anrecord object.
-
-