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); }
public ContentInstance createContentInstanceQueued( AHContainerAddress containerId, ContentInstance contentInstance, boolean sync) throws M2MHapException { return hapServiceManager.createContentInstanceQueued(user, containerId, contentInstance, sync); }
public ContentInstance getCachedLatestContentInstance(AHContainerAddress containerName) throws M2MHapException { return hapServiceManager.getCachedLatestContentInstance(user, containerName); }
public ContentInstance createContentInstance( AHContainerAddress containerId, ContentInstance contentInstance) throws M2MHapException { return hapServiceManager.createContentInstance(user, containerId, contentInstance); }
public ContentInstance createContentInstance( AHContainerAddress containerId, long instanceId, Object content) throws M2MHapException { return hapServiceManager.createContentInstance(user, containerId, instanceId, content); }
public ContentInstanceItems getContentInstanceItems( AHContainerAddress containerId, long startInstanceId, long endInstanceId) throws M2MHapException { return hapServiceManager.getContentInstanceItems( user, containerId, startInstanceId, endInstanceId); }
public AHContainerAddress getLocalContainerAddress(String containerName) { return hapServiceManager.getLocalContainerAddress(user, containerName); }
public ContentInstanceItemsList getLocalContentInstanceItemsList( AHContainerAddress containerAddressFilter, long startInstanceId, long endInstanceId) throws M2MHapException { return hapServiceManager.getLocalContentInstanceItemsList( user, containerAddressFilter, startInstanceId, endInstanceId); }
public AHContainerAddress getLocalContainerAddress( String appliancePid, String endPointId, String containerName) { return hapServiceManager.getLocalContainerAddress( user, appliancePid, endPointId, containerName); }
public ContentInstance getOldestContentInstance(AHContainerAddress containerId) throws M2MHapException { return hapServiceManager.getContentInstance( user, containerId, M2MNetworkScl.CONTENT_INSTANCE_OLDEST_ID); }