Interface SchemaMetadataConstants
paths to the nodes that
hold the metadata associated to table records.- Since:
- 6.1.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final PathPath to the node that defines the creation time of a record.static final PathPath to the node that defines the creator of a record.static final PathPath to the node that specifies the definition mode of a record.static final PathPath to the group that holds the metadata.static final PathPath to the group that holds the system informations about a record.static final PathPath to the node that defines the time of the last modification of a record.static final PathPath to the node that defines last user who modified a record.static final PathPath to the node that defines theuuidof a record.
-
Field Details
-
METADATA_PATH
Path to the group that holds the metadata. -
SYSTEM_PATH
Path to the group that holds the system informations about a record. -
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
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:
-
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
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:
-
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. -
DEFINITION_MODE_PATH
Path to the node that specifies the definition mode of a record.The XML Schema data type Type of corresponding
nodeisSchemaTypeName.XS_STRING. The value of the correspondingnodeis of typeString.Note: this node must not be used in any kind of filter or sort operation.
This path can be used as the following:
whereString definitionMode = record.get_string(DEFINITION_MODE_PATH);
recordis anrecord object.- Since:
- 6.2.1
- See Also:
-