Examples of IsRegisteredContext


Examples of org.hive2hive.core.processes.implementations.context.IsRegisteredContext

    return asyncProcess;
  }

  @Override
  public boolean isRegistered(String userId) throws NoPeerConnectionException {
    IsRegisteredContext context = new IsRegisteredContext();
    IProcessComponent checkProcess = new GetUserLocationsStep(userId, context, networkManager.getDataManager());
    executeProcess(checkProcess);

    return context.isRegistered();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.