com.unblu.webapi.jersey.v4.api.DeputyRelationshipsApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jersey3-client-v4 Show documentation
Show all versions of jersey3-client-v4 Show documentation
Client implemented using Jersey
The newest version!
package com.unblu.webapi.jersey.v4.api;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.unblu.webapi.jersey.v4.invoker.ApiClient;
import com.unblu.webapi.jersey.v4.invoker.ApiException;
import com.unblu.webapi.jersey.v4.invoker.ApiResponse;
import com.unblu.webapi.jersey.v4.invoker.Configuration;
import com.unblu.webapi.jersey.v4.invoker.Pair;
import com.unblu.webapi.model.v4.DeputyRelationship;
import com.unblu.webapi.model.v4.DeputyRelationshipList;
import com.unblu.webapi.model.v4.DeputyRelationshipQuery;
import com.unblu.webapi.model.v4.DeputyRelationshipResult;
import com.unblu.webapi.model.v4.WriteAgentDeputyRelationshipsBody;
import jakarta.ws.rs.core.GenericType;
public class DeputyRelationshipsApi {
private ApiClient apiClient;
public DeputyRelationshipsApi() {
this(Configuration.getDefaultApiClient());
}
public DeputyRelationshipsApi(ApiClient apiClient) {
this.apiClient = apiClient;
}
public ApiClient getApiClient() {
return apiClient;
}
public void setApiClient(ApiClient apiClient) {
this.apiClient = apiClient;
}
/**
* create Creates the given deputy relationship in the system. The ID of the deputy relationship can't be set for create operations, a new one is
* generated.<br>
*
* @param deputyRelationship The deputy relationship to create (required)
* @return DeputyRelationship
* @throws ApiException if fails to make API call
*/
public DeputyRelationship deputyRelationshipsCreate(DeputyRelationship deputyRelationship) throws ApiException {
return deputyRelationshipsCreateWithHttpInfo(deputyRelationship).getData();
}
/**
* create Creates the given deputy relationship in the system. The ID of the deputy relationship can't be set for create operations, a new one is
* generated.<br>
*
* @param deputyRelationship The deputy relationship to create (required)
* @return ApiResponse<DeputyRelationship>
* @throws ApiException if fails to make API call
*/
public ApiResponse deputyRelationshipsCreateWithHttpInfo(DeputyRelationship deputyRelationship) throws ApiException {
Object localVarPostBody = deputyRelationship;
// verify the required parameter 'deputyRelationship' is set
if (deputyRelationship == null) {
throw new ApiException(400, "Missing the required parameter 'deputyRelationship' when calling deputyRelationshipsCreate");
}
// create path and map variables
String localVarPath = "/deputyrelationships/create";
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
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[] { "basicAuth" };
GenericType localVarReturnType = new GenericType() {
};
return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* delete Deletes the deputy relationship with the given ID<br>
*
* @param deputyRelationshipId The ID of the deputy relationship which should be deleted (required)
* @throws ApiException if fails to make API call
*/
public void deputyRelationshipsDelete(String deputyRelationshipId) throws ApiException {
deputyRelationshipsDeleteWithHttpInfo(deputyRelationshipId);
}
/**
* delete Deletes the deputy relationship with the given ID<br>
*
* @param deputyRelationshipId The ID of the deputy relationship which should be deleted (required)
* @throws ApiException if fails to make API call
*/
public ApiResponse deputyRelationshipsDeleteWithHttpInfo(String deputyRelationshipId) throws ApiException {
Object localVarPostBody = new HashMap<>();
// verify the required parameter 'deputyRelationshipId' is set
if (deputyRelationshipId == null) {
throw new ApiException(400, "Missing the required parameter 'deputyRelationshipId' when calling deputyRelationshipsDelete");
}
// create path and map variables
String localVarPath = "/deputyrelationships/{deputyRelationshipId}/delete"
.replaceAll("\\{" + "deputyRelationshipId" + "\\}", apiClient.escapeString(deputyRelationshipId.toString()));
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "basicAuth" };
return apiClient.invokeAPI(localVarPath, "DELETE", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, null);
}
/**
* read Returns the deputy relationship with the given ID<br>
*
* @param deputyRelationshipId ID of the deputy relationship which should be returned (required)
* @return DeputyRelationship
* @throws ApiException if fails to make API call
*/
public DeputyRelationship deputyRelationshipsRead(String deputyRelationshipId) throws ApiException {
return deputyRelationshipsReadWithHttpInfo(deputyRelationshipId).getData();
}
/**
* read Returns the deputy relationship with the given ID<br>
*
* @param deputyRelationshipId ID of the deputy relationship which should be returned (required)
* @return ApiResponse<DeputyRelationship>
* @throws ApiException if fails to make API call
*/
public ApiResponse deputyRelationshipsReadWithHttpInfo(String deputyRelationshipId) throws ApiException {
Object localVarPostBody = new HashMap<>();
// verify the required parameter 'deputyRelationshipId' is set
if (deputyRelationshipId == null) {
throw new ApiException(400, "Missing the required parameter 'deputyRelationshipId' when calling deputyRelationshipsRead");
}
// create path and map variables
String localVarPath = "/deputyrelationships/{deputyRelationshipId}/read"
.replaceAll("\\{" + "deputyRelationshipId" + "\\}", apiClient.escapeString(deputyRelationshipId.toString()));
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "basicAuth" };
GenericType localVarReturnType = new GenericType() {
};
return apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* readMultiple Gets a list of deputy relationships for the given id's<br>
*
* @param requestBody The id's for which the deputy relationships should be fetched (required)
* @return DeputyRelationshipList
* @throws ApiException if fails to make API call
*/
public DeputyRelationshipList deputyRelationshipsReadMultiple(List requestBody) throws ApiException {
return deputyRelationshipsReadMultipleWithHttpInfo(requestBody).getData();
}
/**
* readMultiple Gets a list of deputy relationships for the given id's<br>
*
* @param requestBody The id's for which the deputy relationships should be fetched (required)
* @return ApiResponse<DeputyRelationshipList>
* @throws ApiException if fails to make API call
*/
public ApiResponse deputyRelationshipsReadMultipleWithHttpInfo(List requestBody) throws ApiException {
Object localVarPostBody = requestBody;
// verify the required parameter 'requestBody' is set
if (requestBody == null) {
throw new ApiException(400, "Missing the required parameter 'requestBody' when calling deputyRelationshipsReadMultiple");
}
// create path and map variables
String localVarPath = "/deputyrelationships/readMultiple";
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
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[] { "basicAuth" };
GenericType localVarReturnType = new GenericType() {
};
return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* search Search for deputy relationships in the current account<br>
*
* @param deputyRelationshipQuery (required)
* @return DeputyRelationshipResult
* @throws ApiException if fails to make API call
*/
public DeputyRelationshipResult deputyRelationshipsSearch(DeputyRelationshipQuery deputyRelationshipQuery) throws ApiException {
return deputyRelationshipsSearchWithHttpInfo(deputyRelationshipQuery).getData();
}
/**
* search Search for deputy relationships in the current account<br>
*
* @param deputyRelationshipQuery (required)
* @return ApiResponse<DeputyRelationshipResult>
* @throws ApiException if fails to make API call
*/
public ApiResponse deputyRelationshipsSearchWithHttpInfo(DeputyRelationshipQuery deputyRelationshipQuery) throws ApiException {
Object localVarPostBody = deputyRelationshipQuery;
// verify the required parameter 'deputyRelationshipQuery' is set
if (deputyRelationshipQuery == null) {
throw new ApiException(400, "Missing the required parameter 'deputyRelationshipQuery' when calling deputyRelationshipsSearch");
}
// create path and map variables
String localVarPath = "/deputyrelationships/search";
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
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[] { "basicAuth" };
GenericType localVarReturnType = new GenericType() {
};
return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* update Updates the deputy relationship in the system with the given entity.<br>
*
* @param deputyRelationship The deputy relationship to update (required)
* @return DeputyRelationship
* @throws ApiException if fails to make API call
*/
public DeputyRelationship deputyRelationshipsUpdate(DeputyRelationship deputyRelationship) throws ApiException {
return deputyRelationshipsUpdateWithHttpInfo(deputyRelationship).getData();
}
/**
* update Updates the deputy relationship in the system with the given entity.<br>
*
* @param deputyRelationship The deputy relationship to update (required)
* @return ApiResponse<DeputyRelationship>
* @throws ApiException if fails to make API call
*/
public ApiResponse deputyRelationshipsUpdateWithHttpInfo(DeputyRelationship deputyRelationship) throws ApiException {
Object localVarPostBody = deputyRelationship;
// verify the required parameter 'deputyRelationship' is set
if (deputyRelationship == null) {
throw new ApiException(400, "Missing the required parameter 'deputyRelationship' when calling deputyRelationshipsUpdate");
}
// create path and map variables
String localVarPath = "/deputyrelationships/update";
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
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[] { "basicAuth" };
GenericType localVarReturnType = new GenericType() {
};
return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* writeAgentDeputies Batch writes the deputies of an agent. All previous existing deputies of that agent will be replaced.<br>
*
* @param writeAgentDeputyRelationshipsBody The deputy relationships for that an agent with each escalation level. (required)
* @throws ApiException if fails to make API call
*/
public void deputyRelationshipsWriteAgentDeputies(WriteAgentDeputyRelationshipsBody writeAgentDeputyRelationshipsBody) throws ApiException {
deputyRelationshipsWriteAgentDeputiesWithHttpInfo(writeAgentDeputyRelationshipsBody);
}
/**
* writeAgentDeputies Batch writes the deputies of an agent. All previous existing deputies of that agent will be replaced.<br>
*
* @param writeAgentDeputyRelationshipsBody The deputy relationships for that an agent with each escalation level. (required)
* @throws ApiException if fails to make API call
*/
public ApiResponse deputyRelationshipsWriteAgentDeputiesWithHttpInfo(WriteAgentDeputyRelationshipsBody writeAgentDeputyRelationshipsBody) throws ApiException {
Object localVarPostBody = writeAgentDeputyRelationshipsBody;
// verify the required parameter 'writeAgentDeputyRelationshipsBody' is set
if (writeAgentDeputyRelationshipsBody == null) {
throw new ApiException(400, "Missing the required parameter 'writeAgentDeputyRelationshipsBody' when calling deputyRelationshipsWriteAgentDeputies");
}
// create path and map variables
String localVarPath = "/deputyrelationships/writeAgentDeputies";
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "basicAuth" };
return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, null);
}
}