Package co.cask.cdap.proto

Examples of co.cask.cdap.proto.ServiceInstances


      }
      RuntimeSpecification specification = getRuntimeSpecification(accountId, appId, serviceId, runnableName);
      if (specification == null) {
        responder.sendStatus(HttpResponseStatus.NOT_FOUND);
      } else {
        responder.sendJson(HttpResponseStatus.OK, new ServiceInstances(
          specification.getResourceSpecification().getInstances(),
          getRunnableCount(accountId, appId, serviceId, runnableName
        )));
      }
    } catch (SecurityException e) {
View Full Code Here

TOP

Related Classes of co.cask.cdap.proto.ServiceInstances

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.