Package co.cask.cdap.proto

Examples of co.cask.cdap.proto.ServiceMeta


    try {
      String accountId = getAuthenticatedAccountId(request);
      ServiceSpecification spec = getServiceSpecification(accountId, appId, serviceId);
      if (spec != null) {
        responder.sendJson(HttpResponseStatus.OK, new ServiceMeta(
          spec.getName(), spec.getName(), spec.getDescription(), spec.getRunnables().keySet()));
      } else {
        responder.sendStatus(HttpResponseStatus.NOT_FOUND);
      }
    } catch (SecurityException e) {
View Full Code Here

TOP

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

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.