public long getLastSuccessfulBatchRequestTimestamp() {
   return hapServiceManager.getLastBatchRequestTimestamp(user);
 }
 public String getLocalHagId() {
   return hapServiceManager.getLocalHagId(user);
 }
 public boolean isConnected() {
   return hapServiceManager.isConnected(user);
 }
 public synchronized void setListener(M2MHapServiceListener listener) {
   if (this.listener != null) hapServiceManager.removeListener(this.listener);
   if (listener != null) hapServiceManager.addListener(listener);
   this.listener = listener;
 }
 public M2MHapServiceObject() {
   this.hapServiceManager = HapServiceManager.get();
   hapServiceManager.addReference();
 }
 public ContentInstanceItemsList getContentInstanceItemsList(
     AHContainerAddress containerId, long instanceId) throws M2MHapException {
   return hapServiceManager.getContentInstanceItemsList(user, containerId, instanceId);
 }
 public void release() {
   setListener(null);
   hapServiceManager.removeReference();
 }
 public ContentInstanceItemsList getCachedLatestContentItemsList(
     AHContainerAddress containerIdFilter) throws M2MHapException {
   return hapServiceManager.getCachedLatestContentInstanceItemsList(user, containerIdFilter);
 }
 public ContentInstance getLocalContentInstance(AHContainerAddress containerAddressFilter)
     throws M2MHapException {
   return hapServiceManager.getLocalContentInstance(user, containerAddressFilter);
 }
Beispiel #10
0
 public ContentInstance createContentInstanceQueued(
     AHContainerAddress containerId, ContentInstance contentInstance, boolean sync)
     throws M2MHapException {
   return hapServiceManager.createContentInstanceQueued(user, containerId, contentInstance, sync);
 }
Beispiel #11
0
 public ContentInstance getCachedLatestContentInstance(AHContainerAddress containerName)
     throws M2MHapException {
   return hapServiceManager.getCachedLatestContentInstance(user, containerName);
 }
Beispiel #12
0
 public ContentInstance createContentInstance(
     AHContainerAddress containerId, ContentInstance contentInstance) throws M2MHapException {
   return hapServiceManager.createContentInstance(user, containerId, contentInstance);
 }
Beispiel #13
0
 public ContentInstance createContentInstance(
     AHContainerAddress containerId, long instanceId, Object content) throws M2MHapException {
   return hapServiceManager.createContentInstance(user, containerId, instanceId, content);
 }
Beispiel #14
0
 public ContentInstanceItems getContentInstanceItems(
     AHContainerAddress containerId, long startInstanceId, long endInstanceId)
     throws M2MHapException {
   return hapServiceManager.getContentInstanceItems(
       user, containerId, startInstanceId, endInstanceId);
 }
Beispiel #15
0
 public AHContainerAddress getLocalContainerAddress(String containerName) {
   return hapServiceManager.getLocalContainerAddress(user, containerName);
 }
Beispiel #16
0
 public ContentInstanceItemsList getLocalContentInstanceItemsList(
     AHContainerAddress containerAddressFilter, long startInstanceId, long endInstanceId)
     throws M2MHapException {
   return hapServiceManager.getLocalContentInstanceItemsList(
       user, containerAddressFilter, startInstanceId, endInstanceId);
 }
Beispiel #17
0
 public AHContainerAddress getLocalContainerAddress(
     String appliancePid, String endPointId, String containerName) {
   return hapServiceManager.getLocalContainerAddress(
       user, appliancePid, endPointId, containerName);
 }
Beispiel #18
0
 public ContentInstance getOldestContentInstance(AHContainerAddress containerId)
     throws M2MHapException {
   return hapServiceManager.getContentInstance(
       user, containerId, M2MNetworkScl.CONTENT_INSTANCE_OLDEST_ID);
 }