Package com.twitter.ambrose.model.WorkflowSummary

Examples of com.twitter.ambrose.model.WorkflowSummary.Status


  /**
   * Main method
   */
  public static void main(String[] args) throws IOException {
    String cluster = args.length > 0 ? args[0] : "dw@smf1";
    Status status = args.length > 1
        ? Status.valueOf(args[1]) : Status.SUCCEEDED;
        String username = args.length > 2 ? args[2] : null;

        HRavenWorkflowIndexReadService service = new HRavenWorkflowIndexReadService();
        PaginatedList<WorkflowSummary> paginatedList =
View Full Code Here


    } else if (target.endsWith("/workflows")) {
      String cluster = normalize(request.getParameter(QUERY_PARAM_CLUSTER));
      String user = normalize(request.getParameter(QUERY_PARAM_USER));
      String statusParam = normalize(request.getParameter(QUERY_PARAM_STATUS));
      Status status = getEnum(statusParam, Status.class, null);
      String startRowParam = normalize(request.getParameter(QUERY_PARAM_START_KEY));
      byte[] startRow = getBytes(startRowParam, null);

      LOG.info("Submitted request for cluster={}, user={}, status={}, startRow={}", cluster, user,
          status, startRowParam);
View Full Code Here

TOP

Related Classes of com.twitter.ambrose.model.WorkflowSummary.Status

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.