Package org.iplantc.agave.client

Examples of org.iplantc.agave.client.ApiException


  public MultipleMetadataPermissionResponse listMetadataPermissions(
      String uuid) throws ApiException {
    // verify required params are set
    if (uuid == null) {
      throw new ApiException(400, "missing required params");
    }
    // create path and map variables
    String path = "/meta/" + Settings.API_VERSION + "/data/{uuid}/pems".replaceAll("\\{format\\}",
        "json").replaceAll("\\{" + "uuid" + "\\}",
        apiInvoker.escapeString(uuid.toString()));
View Full Code Here


  public MetadataPermissionResponse updateMetadataPermissions(String uuid,
      MetadataPermissionRequest body) throws ApiException {
    // verify required params are set
    if (uuid == null || body == null) {
      throw new ApiException(400, "missing required params");
    }
    // create path and map variables
    String path = "/meta/" + Settings.API_VERSION + "/data/{uuid}/pems".replaceAll("\\{format\\}",
        "json").replaceAll("\\{" + "uuid" + "\\}",
        apiInvoker.escapeString(uuid.toString()));
View Full Code Here

  public EmptyMetadataResponse deleteMetadataPermission(String uuid)
      throws ApiException {
    // verify required params are set
    if (uuid == null) {
      throw new ApiException(400, "missing required params");
    }
    // create path and map variables
    String path = "/meta/" + Settings.API_VERSION + "/data/{uuid}/pems".replaceAll("\\{format\\}",
        "json").replaceAll("\\{" + "uuid" + "\\}",
        apiInvoker.escapeString(uuid.toString()));
View Full Code Here

  public MetadataPermissionResponse listMetadataPermissionsForUser(
      String uuid, String username) throws ApiException {
    // verify required params are set
    if (uuid == null || username == null) {
      throw new ApiException(400, "missing required params");
    }
    // create path and map variables
    String path = "/meta/" + Settings.API_VERSION + "/data/{uuid}/pems/{username}"
        .replaceAll("\\{format\\}", "json")
        .replaceAll("\\{" + "uuid" + "\\}",
View Full Code Here

  public MetadataPermissionResponse updateMetadataPermissionsForUser(
      String uuid, String username, MetadataPermissionRequest body)
      throws ApiException {
    // verify required params are set
    if (uuid == null || username == null || body == null) {
      throw new ApiException(400, "missing required params");
    }
    // create path and map variables
    String path = "/meta/" + Settings.API_VERSION + "/data/{uuid}/pems/{username}"
        .replaceAll("\\{format\\}", "json")
        .replaceAll("\\{" + "uuid" + "\\}",
View Full Code Here

  public EmptyMetadataResponse deleteMetadataPermissionsForUser(String uuid,
      String username) throws ApiException {
    // verify required params are set
    if (uuid == null || username == null) {
      throw new ApiException(400, "missing required params");
    }
    // create path and map variables
    String path = "/meta/" + Settings.API_VERSION + "/data/{uuid}/pems/{username}"
        .replaceAll("\\{format\\}", "json")
        .replaceAll("\\{" + "uuid" + "\\}",
View Full Code Here

  public MultipleMetadataSchemaPermissionResponse listSchemaPermissions(
      String uuid) throws ApiException {
    // verify required params are set
    if (uuid == null) {
      throw new ApiException(400, "missing required params");
    }
    // create path and map variables
    String path = "/meta/" + Settings.API_VERSION + "/schemas/{uuid}/pems".replaceAll("\\{format\\}",
        "json").replaceAll("\\{" + "uuid" + "\\}",
        apiInvoker.escapeString(uuid.toString()));
View Full Code Here

  public MetadataSchemaPermissionResponse updateSchemaPermissions(
      String uuid, MetadataPermissionRequest body) throws ApiException {
    // verify required params are set
    if (uuid == null || body == null) {
      throw new ApiException(400, "missing required params");
    }
    // create path and map variables
    String path = "/meta/" + Settings.API_VERSION + "/schemas/{uuid}/pems".replaceAll("\\{format\\}",
        "json").replaceAll("\\{" + "uuid" + "\\}",
        apiInvoker.escapeString(uuid.toString()));
View Full Code Here

  public EmptyMetadataResponse deleteSchemaPermissions(String uuid)
      throws ApiException {
    // verify required params are set
    if (uuid == null) {
      throw new ApiException(400, "missing required params");
    }
    // create path and map variables
    String path = "/meta/" + Settings.API_VERSION + "/schemas/{uuid}/pems".replaceAll("\\{format\\}",
        "json").replaceAll("\\{" + "uuid" + "\\}",
        apiInvoker.escapeString(uuid.toString()));
View Full Code Here

  public MetadataSchemaPermissionResponse listSchemaPermissionsForUser(
      String uuid, String username) throws ApiException {
    // verify required params are set
    if (uuid == null || username == null) {
      throw new ApiException(400, "missing required params");
    }
    // create path and map variables
    String path = "/meta/" + Settings.API_VERSION + "/schemas/{uuid}/pems/{username}"
        .replaceAll("\\{format\\}", "json")
        .replaceAll("\\{" + "uuid" + "\\}",
View Full Code Here

TOP

Related Classes of org.iplantc.agave.client.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.