Oid

API

Oid.java
interface Oid {
  String SEPARATOR;
  String getLogicalTypeName()     (1)
  String getIdentifier()     (2)
  String stringify()     (3)
}
1 getLogicalTypeName()

Logical-type-name of the domain object this Oid is representing. (aka. object-type)

2 getIdentifier()

Stringified version of the ID of the domain object instance this Oid is representing.

3 stringify()

The canonical form of the Bookmark , that is #getLogicalTypeName() logical-type-name #SEPARATOR #getIdentifier() identifier .

Members

getLogicalTypeName()

Logical-type-name of the domain object this Oid is representing. (aka. object-type)

getIdentifier()

Stringified version of the ID of the domain object instance this Oid is representing.

stringify()

The canonical form of the Bookmark , that is #getLogicalTypeName() logical-type-name #SEPARATOR #getIdentifier() identifier .