Package com.orientechnologies.orient.client.remote.OStorageRemoteThreadLocal

Examples of com.orientechnologies.orient.client.remote.OStorageRemoteThreadLocal.OStorageRemoteSession


    public Integer  sessionId          = -1;
  }

  @Override
  protected OStorageRemoteSession initialValue() {
    return new OStorageRemoteSession();
  }
View Full Code Here


    public String  serverURL        = null;
  }

  @Override
  protected OStorageRemoteSession initialValue() {
    return new OStorageRemoteSession();
  }
View Full Code Here

  public String getServerURL() {
    return OStorageRemoteThreadLocal.INSTANCE.get().serverURL;
  }

  public void setSessionId(final String iServerURL, final int iSessionId) {
    final OStorageRemoteSession tl = OStorageRemoteThreadLocal.INSTANCE.get();
    tl.serverURL = iServerURL;
    tl.sessionId = iSessionId;
  }
View Full Code Here

TOP

Related Classes of com.orientechnologies.orient.client.remote.OStorageRemoteThreadLocal.OStorageRemoteSession

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.