com.ziqni.admin.sdk.api.SpacesApiWs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ziqni-admin-sdk Show documentation
Show all versions of ziqni-admin-sdk Show documentation
ZIQNI Admin SDK Java Client
/*
* ZIQNI Admin API
* Ziqni Application Services are used to manage and configure spaces.
*
* The version of the OpenAPI document: 3.0.11
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.ziqni.admin.sdk.api;
import javax.ws.rs.core.GenericType;
import com.ziqni.admin.sdk.streaming.StreamingClient;
import com.ziqni.admin.sdk.streaming.EventHandler;
import com.ziqni.admin.sdk.streaming.handlers.CallbackConsumer;
import com.ziqni.admin.sdk.ApiException;
import org.springframework.messaging.simp.stomp.StompHeaders;
import com.ziqni.admin.sdk.model.CreateSpaceRequest;
import com.ziqni.admin.sdk.model.ModelApiResponse;
import com.ziqni.admin.sdk.model.SpaceResponse;
import com.ziqni.admin.sdk.model.UpdateSpaceRequest;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.ziqni.admin.sdk.model.*;
import java.time.Duration;
import java.util.*;
//asyncNative:true
import java.util.concurrent.CompletableFuture;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.time.Duration;
import java.util.function.BiConsumer;
@javax.annotation.processing.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class SpacesApiWs {
private final Duration memberVarReadTimeout;
private final StreamingClient streamingClient;
public SpacesApiWs(StreamingClient streamingClient, Duration readTimeout) {
this.streamingClient = streamingClient;
this.memberVarReadTimeout = readTimeout;
}
/**
*
* Create a new Space for the user in the Ziqni
* @param body (required)
* @return CompletableFuture<ModelApiResponse>
* @throws ApiException if fails to make API call
*/
public CompletableFuture createSpace(List body) {
var request = new HashMap();
request.put("body",body);
CompletableFuture result = this.streamingClient.sendWithApiCallback("/aapi/createSpace", request);
return result;
}
/**
* NOT AVAILABLE IN CURRENT RELEASE
* Delete the Space for the given Space Name provided
* @param spaceName This is the space name which will be deleted (required)
* @return CompletableFuture<ModelApiResponse>
* @throws ApiException if fails to make API call
*/
public CompletableFuture deleteSpaces(String spaceName) {
var request = new HashMap();
var pathParam = new HashMap();
pathParam.put("spaceName", spaceName);
request.put("path",pathParam);
CompletableFuture result = this.streamingClient.sendWithApiCallback("/aapi/deleteSpaces", request);
return result;
}
/**
*
* Returns a list of Spaces for the current session
* @param limit Limit the returned total records found (optional)
* @param skip Skip the returned records found and return the next batch of records (optional)
* @return CompletableFuture<SpaceResponse>
* @throws ApiException if fails to make API call
*/
public CompletableFuture getSpaceInfromation(Integer limit, Integer skip) {
var request = new HashMap();
var queryParam = new HashMap();
queryParam.put("limit", limit);
queryParam.put("skip", skip);
request.put("query",queryParam);
CompletableFuture result = this.streamingClient.sendWithApiCallback("/aapi/getSpaceInfromation", request);
return result;
}
/**
*
* Return a list of sub-spaces for the given Space Name provided
* @param spaceName This is the space name which is linked to the account (required)
* @param limit Limit the returned total records found (optional)
* @param skip Skip the returned records found and return the next batch of records (optional)
* @return CompletableFuture<SpaceResponse>
* @throws ApiException if fails to make API call
*/
public CompletableFuture getSpacesByName(String spaceName, Integer limit, Integer skip) {
var request = new HashMap();
var queryParam = new HashMap();
queryParam.put("limit", limit);
queryParam.put("skip", skip);
request.put("query",queryParam);
var pathParam = new HashMap();
pathParam.put("spaceName", spaceName);
request.put("path",pathParam);
CompletableFuture result = this.streamingClient.sendWithApiCallback("/aapi/getSpacesByName", request);
return result;
}
/**
*
* Update a Space for the user in the Ziqni
* @param body Create a Space for the user in the Ziqni (required)
* @return CompletableFuture<ModelApiResponse>
* @throws ApiException if fails to make API call
*/
public CompletableFuture updateSpace(UpdateSpaceRequest body) {
var request = new HashMap();
request.put("body",body);
CompletableFuture result = this.streamingClient.sendWithApiCallback("/aapi/updateSpace", request);
return result;
}
private ApiException getApiException(String operationId, HttpResponse response) {
String message = formatExceptionMessage(operationId, response.statusCode(), response.body());
return new ApiException(response.statusCode(), message, response.headers(), response.body());
}
private String formatExceptionMessage(String operationId, int statusCode, String body) {
if (body == null || body.isEmpty()) {
body = "[no body]";
}
return operationId + " call failed with: " + statusCode + " - " + body;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy