Skip to content

Persistance object and Non-persistance Object

The Object type is classified into two major types Persistent Object Type and Non-Persistent Object Type. All the object types will come under any one of these categories.

persist

Persistent Object Type

The persistance object type has three standard properties, all the sub-types inherit these properties.

  1. r_object_id – 16 character Hex decimal string assigned by the system when an object is created
  2. i_vstamp – Integer value that represents the number of committed transaction that have changed the object. This value is used for versioning, as part of the locking mechanism, to ensure that one user does not overwrite the changes made by another.
  3. i_is_replica – The i_is_replica property indicates whether the object is a local replica of an object in a remote repository

Example :

  1. ACL – dm_acl
  2. Alias Set – dm_alias_set
  3. Sysobject – dm_sysobject

…. etc

Non-Persistent Object Type

These objects are not stored in the repository. These object types are created and used during the session and destroyed when the session is terminated. It does not have r_object_id, i_vstamp and i_is_replica attributes.

Example :

  1. Client Config
  2. Connection Config
  3. Docbroker Locator
  4. Session Config
  5. Server Locator
  6. Docbase Locator
Published inDocumentumTYPES