Local Business Object

Defined in Unwired WorkSpace, local business objects are not bound to EIS data sources, so cannot be synchronized. Instead, they are objects that are used as a local data store on device. Local business objects do not call submitPending, or perform a replay or import from the Unwired Server.

An example of a local business object:

LoginStatus status= new LoginStatus ();
  status.setId(123);
  status.setSuccess(true);
  status.create();

  long savedId = 123;
  LoginStatus status = LoginStatus.find(savedId);
  status.setSuccess(false);
  status.update();

  long savedId = 123;
  LoginStatus status = LoginStatus.find(savedId);
  status.delete();