_Base

This is the base class that all navigable domain objects extend, providing all domain objects with basic properties. This class should not be instantiated directly.

Example
define([
  "blueconic/api/data/domain/_Base"
], function(_Base) {
  // ...
});

Properties

id String

Unique id of the domain object. Should not be null or empty.

isPersistent Boolean

Is this instance already persisted? If not, this object only 'lives' client-side.

name String

The readable name of the domain object. Should not be null or empty.