timelineEventTypeStore

Implements the Dojo Object Store interface for uniform access to TimelineEventType objects.

Example
define([
  "dojo/_base/lang",
  "blueconic/api/data/store/timelineEventTypeStore"
], function(lang, timelineEventTypeStore) {
  var id = '4e4fc9d9-b92f-4c9e-b11c-1c1314f02964'; // An example ID used in BlueConic

  // Retrieve object by id
  timelineEventTypeStore.get(id).then(lang.hitch(this, function(object) {
    // Successfully retrieved the object
  }), lang.hitch(this, function() {
    // Failed to retrieve the object
  }));
});

Functions

get(id)dojo/Deferred

Returns one timeline event type specified by the given id.

Name Type Description
id String

the id of the event type to retrieve.

Returns:
Type Description
dojo/Deferred blueconic.api.data.domain.TimelineEventType wrapped in a Deferred.