io.infinicast.client.impl.objectState.ObjectStateManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinicast-client-jdk8 Show documentation
Show all versions of infinicast-client-jdk8 Show documentation
Infinicast SDK to communicate with the cloud.
package io.infinicast.client.impl.objectState;
import io.infinicast.client.api.IPath;
import io.infinicast.client.impl.IConnector;
public class ObjectStateManager {
IConnector _connector;
public ObjectStateManager(IConnector apServiceStormConnector) {
this._connector = apServiceStormConnector;
}
public IPath getOrCreateLocalObject(String path) {
return this._connector.path(path);
}
}