Package com.openshift.internal.client.response

Examples of com.openshift.internal.client.response.QuickstartJsonDTOFactory


    private ListQuickstartsRequest() throws OpenShiftException {
      super("LIST_QUICKSTARTS");
    }

    protected List<QuickstartDTO> execute() throws OpenShiftException {
      return super.execute(IHttpClient.NO_TIMEOUT, new QuickstartJsonDTOFactory(), Collections.<Parameter> emptyList(), Collections.<Parameter> emptyList());
    }
View Full Code Here


    private ListQuickstartsRequest() throws OpenShiftException {
      super("LIST_QUICKSTARTS");
    }

    protected List<QuickstartDTO> execute() throws OpenShiftException {
      return super.execute(IHttpClient.NO_TIMEOUT, new QuickstartJsonDTOFactory(),
          Collections.<Parameter> emptyList(), Collections.<Parameter> emptyList());
    }
View Full Code Here

    return quickstartDTOs.get(0).getCartridges();
  }

  public static List<QuickstartDTO> getQuickstartDTOs(String quickstartsJson) {
    RestResponse restResponse = new QuickstartJsonDTOFactory().get(quickstartsJson);

    assertThat(restResponse).isNotNull();
    assertThat(restResponse.getData()).isInstanceOf(List.class);

    return restResponse.getData();
View Full Code Here

    private ListQuickstartsRequest() throws OpenShiftException {
      super("LIST_QUICKSTARTS");
    }

    protected List<QuickstartDTO> execute() throws OpenShiftException {
      return super.execute(IHttpClient.NO_TIMEOUT, new QuickstartJsonDTOFactory(), Collections.<Parameter> emptyList(), Collections.<Parameter> emptyList());
    }
View Full Code Here

TOP

Related Classes of com.openshift.internal.client.response.QuickstartJsonDTOFactory

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.