All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.symphonyoss.symphony.agent.api.UtilApi Maven / Gradle / Ivy

There is a newer version: 1.50.1
Show newest version
package org.symphonyoss.symphony.agent.api;

import org.symphonyoss.symphony.agent.invoker.ApiException;
import org.symphonyoss.symphony.agent.invoker.ApiClient;
import org.symphonyoss.symphony.agent.invoker.Configuration;
import org.symphonyoss.symphony.agent.invoker.Pair;

import javax.ws.rs.core.GenericType;

import org.symphonyoss.symphony.agent.model.Error;
import org.symphonyoss.symphony.agent.model.SimpleMessage;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2017-10-14T03:33:40.723-04:00")
public class UtilApi {
  private ApiClient apiClient;

  public UtilApi() {
    this(Configuration.getDefaultApiClient());
  }

  public UtilApi(ApiClient apiClient) {
    this.apiClient = apiClient;
  }

  public ApiClient getApiClient() {
    return apiClient;
  }

  public void setApiClient(ApiClient apiClient) {
    this.apiClient = apiClient;
  }

  /**
   * Test endpoint, returns input.
   * 
   * @param sessionToken Session authentication token. (required)
   * @param keyManagerToken Key Manager authentication token. (required)
   * @param echoInput Message in plain text  (required)
   * @return SimpleMessage
   * @throws ApiException if fails to make API call
   */
  public SimpleMessage v1UtilEchoPost(String sessionToken, String keyManagerToken, SimpleMessage echoInput) throws ApiException {
    Object localVarPostBody = echoInput;
    
    // verify the required parameter 'sessionToken' is set
    if (sessionToken == null) {
      throw new ApiException(400, "Missing the required parameter 'sessionToken' when calling v1UtilEchoPost");
    }
    
    // verify the required parameter 'keyManagerToken' is set
    if (keyManagerToken == null) {
      throw new ApiException(400, "Missing the required parameter 'keyManagerToken' when calling v1UtilEchoPost");
    }
    
    // verify the required parameter 'echoInput' is set
    if (echoInput == null) {
      throw new ApiException(400, "Missing the required parameter 'echoInput' when calling v1UtilEchoPost");
    }
    
    // create path and map variables
    String localVarPath = "/v1/util/echo".replaceAll("\\{format\\}","json");

    // query params
    List localVarQueryParams = new ArrayList();
    Map localVarHeaderParams = new HashMap();
    Map localVarFormParams = new HashMap();


    if (sessionToken != null)
      localVarHeaderParams.put("sessionToken", apiClient.parameterToString(sessionToken));
if (keyManagerToken != null)
      localVarHeaderParams.put("keyManagerToken", apiClient.parameterToString(keyManagerToken));

    
    final String[] localVarAccepts = {
      "application/json"
    };
    final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);

    final String[] localVarContentTypes = {
      "application/json"
    };
    final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);

    String[] localVarAuthNames = new String[] {  };

    GenericType localVarReturnType = new GenericType() {};
    return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
      }
  /**
   * Example of a deprecated endpoint, returns input.
   * 
   * @param sessionToken Session authentication token. (required)
   * @param keyManagerToken Key Manager authentication token. (required)
   * @param echoInput Message in plain text  (required)
   * @return SimpleMessage
   * @throws ApiException if fails to make API call
   */
  public SimpleMessage v1UtilObsoletePost(String sessionToken, String keyManagerToken, SimpleMessage echoInput) throws ApiException {
    Object localVarPostBody = echoInput;
    
    // verify the required parameter 'sessionToken' is set
    if (sessionToken == null) {
      throw new ApiException(400, "Missing the required parameter 'sessionToken' when calling v1UtilObsoletePost");
    }
    
    // verify the required parameter 'keyManagerToken' is set
    if (keyManagerToken == null) {
      throw new ApiException(400, "Missing the required parameter 'keyManagerToken' when calling v1UtilObsoletePost");
    }
    
    // verify the required parameter 'echoInput' is set
    if (echoInput == null) {
      throw new ApiException(400, "Missing the required parameter 'echoInput' when calling v1UtilObsoletePost");
    }
    
    // create path and map variables
    String localVarPath = "/v1/util/obsolete".replaceAll("\\{format\\}","json");

    // query params
    List localVarQueryParams = new ArrayList();
    Map localVarHeaderParams = new HashMap();
    Map localVarFormParams = new HashMap();


    if (sessionToken != null)
      localVarHeaderParams.put("sessionToken", apiClient.parameterToString(sessionToken));
if (keyManagerToken != null)
      localVarHeaderParams.put("keyManagerToken", apiClient.parameterToString(keyManagerToken));

    
    final String[] localVarAccepts = {
      "application/json"
    };
    final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);

    final String[] localVarContentTypes = {
      "application/json"
    };
    final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);

    String[] localVarAuthNames = new String[] {  };

    GenericType localVarReturnType = new GenericType() {};
    return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
      }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy