Package io.lumify.web.clientapi.codegen

Examples of io.lumify.web.clientapi.codegen.ApiException


  }
  public ClientApiWorkspacePublishResponse publish (String publishData) throws ApiException {
    Object postBody = null;
    // verify required params are set
    if(publishData == null ) {
       throw new ApiException(400, "missing required params");
    }
    // create path and map variables
    String path = "/workspace/publish".replaceAll("\\{format\\}","json");

    // query params
View Full Code Here


  }
  public ClientApiWorkspaceUndoResponse undo (String undoData) throws ApiException {
    Object postBody = null;
    // verify required params are set
    if(undoData == null ) {
       throw new ApiException(400, "missing required params");
    }
    // create path and map variables
    String path = "/workspace/undo".replaceAll("\\{format\\}","json");

    // query params
View Full Code Here

TOP

Related Classes of io.lumify.web.clientapi.codegen.ApiException

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.