io.swagger.client.api.UserSettingsApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client-java Show documentation
Show all versions of api-client-java Show documentation
Official LaunchDarkly API Client for Java
The newest version!
/*
* LaunchDarkly REST API
* Build custom integrations with the LaunchDarkly REST API
*
* OpenAPI spec version: 2.0.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package io.swagger.client.api;
import io.swagger.client.ApiCallback;
import io.swagger.client.ApiClient;
import io.swagger.client.ApiException;
import io.swagger.client.ApiResponse;
import io.swagger.client.Configuration;
import io.swagger.client.Pair;
import io.swagger.client.ProgressRequestBody;
import io.swagger.client.ProgressResponseBody;
import com.google.gson.reflect.TypeToken;
import java.io.IOException;
import io.swagger.client.model.UserFlagSetting;
import io.swagger.client.model.UserFlagSettings;
import io.swagger.client.model.UserSettingsBody;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class UserSettingsApi {
private ApiClient apiClient;
public UserSettingsApi() {
this(Configuration.getDefaultApiClient());
}
public UserSettingsApi(ApiClient apiClient) {
this.apiClient = apiClient;
}
public ApiClient getApiClient() {
return apiClient;
}
public void setApiClient(ApiClient apiClient) {
this.apiClient = apiClient;
}
/**
* Build call for getUserFlagSetting
* @param projectKey The project key, used to tie the flags together under one project so they can be managed together. (required)
* @param environmentKey The environment key (required)
* @param userKey The user's key (required)
* @param featureFlagKey The feature flag's key. The key identifies the flag in your code. (required)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
public com.squareup.okhttp.Call getUserFlagSettingCall(String projectKey, String environmentKey, String userKey, String featureFlagKey, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
String localVarPath = "/users/{projectKey}/{environmentKey}/{userKey}/flags/{featureFlagKey}"
.replaceAll("\\{" + "projectKey" + "\\}", apiClient.escapeString(projectKey.toString()))
.replaceAll("\\{" + "environmentKey" + "\\}", apiClient.escapeString(environmentKey.toString()))
.replaceAll("\\{" + "userKey" + "\\}", apiClient.escapeString(userKey.toString()))
.replaceAll("\\{" + "featureFlagKey" + "\\}", apiClient.escapeString(featureFlagKey.toString()));
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
localVarHeaderParams.put("Content-Type", localVarContentType);
if(progressListener != null) {
apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
@Override
public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException {
com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
return originalResponse.newBuilder()
.body(new ProgressResponseBody(originalResponse.body(), progressListener))
.build();
}
});
}
String[] localVarAuthNames = new String[] { "Token" };
return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
}
@SuppressWarnings("rawtypes")
private com.squareup.okhttp.Call getUserFlagSettingValidateBeforeCall(String projectKey, String environmentKey, String userKey, String featureFlagKey, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'projectKey' is set
if (projectKey == null) {
throw new ApiException("Missing the required parameter 'projectKey' when calling getUserFlagSetting(Async)");
}
// verify the required parameter 'environmentKey' is set
if (environmentKey == null) {
throw new ApiException("Missing the required parameter 'environmentKey' when calling getUserFlagSetting(Async)");
}
// verify the required parameter 'userKey' is set
if (userKey == null) {
throw new ApiException("Missing the required parameter 'userKey' when calling getUserFlagSetting(Async)");
}
// verify the required parameter 'featureFlagKey' is set
if (featureFlagKey == null) {
throw new ApiException("Missing the required parameter 'featureFlagKey' when calling getUserFlagSetting(Async)");
}
com.squareup.okhttp.Call call = getUserFlagSettingCall(projectKey, environmentKey, userKey, featureFlagKey, progressListener, progressRequestListener);
return call;
}
/**
* Get a user by key.
*
* @param projectKey The project key, used to tie the flags together under one project so they can be managed together. (required)
* @param environmentKey The environment key (required)
* @param userKey The user's key (required)
* @param featureFlagKey The feature flag's key. The key identifies the flag in your code. (required)
* @return UserFlagSetting
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public UserFlagSetting getUserFlagSetting(String projectKey, String environmentKey, String userKey, String featureFlagKey) throws ApiException {
ApiResponse resp = getUserFlagSettingWithHttpInfo(projectKey, environmentKey, userKey, featureFlagKey);
return resp.getData();
}
/**
* Get a user by key.
*
* @param projectKey The project key, used to tie the flags together under one project so they can be managed together. (required)
* @param environmentKey The environment key (required)
* @param userKey The user's key (required)
* @param featureFlagKey The feature flag's key. The key identifies the flag in your code. (required)
* @return ApiResponse<UserFlagSetting>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse getUserFlagSettingWithHttpInfo(String projectKey, String environmentKey, String userKey, String featureFlagKey) throws ApiException {
com.squareup.okhttp.Call call = getUserFlagSettingValidateBeforeCall(projectKey, environmentKey, userKey, featureFlagKey, null, null);
Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
* Get a user by key. (asynchronously)
*
* @param projectKey The project key, used to tie the flags together under one project so they can be managed together. (required)
* @param environmentKey The environment key (required)
* @param userKey The user's key (required)
* @param featureFlagKey The feature flag's key. The key identifies the flag in your code. (required)
* @param callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
public com.squareup.okhttp.Call getUserFlagSettingAsync(String projectKey, String environmentKey, String userKey, String featureFlagKey, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
if (callback != null) {
progressListener = new ProgressResponseBody.ProgressListener() {
@Override
public void update(long bytesRead, long contentLength, boolean done) {
callback.onDownloadProgress(bytesRead, contentLength, done);
}
};
progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
@Override
public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
callback.onUploadProgress(bytesWritten, contentLength, done);
}
};
}
com.squareup.okhttp.Call call = getUserFlagSettingValidateBeforeCall(projectKey, environmentKey, userKey, featureFlagKey, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
* Build call for getUserFlagSettings
* @param projectKey The project key, used to tie the flags together under one project so they can be managed together. (required)
* @param environmentKey The environment key (required)
* @param userKey The user's key (required)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
public com.squareup.okhttp.Call getUserFlagSettingsCall(String projectKey, String environmentKey, String userKey, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
String localVarPath = "/users/{projectKey}/{environmentKey}/{userKey}/flags"
.replaceAll("\\{" + "projectKey" + "\\}", apiClient.escapeString(projectKey.toString()))
.replaceAll("\\{" + "environmentKey" + "\\}", apiClient.escapeString(environmentKey.toString()))
.replaceAll("\\{" + "userKey" + "\\}", apiClient.escapeString(userKey.toString()));
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
localVarHeaderParams.put("Content-Type", localVarContentType);
if(progressListener != null) {
apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
@Override
public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException {
com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
return originalResponse.newBuilder()
.body(new ProgressResponseBody(originalResponse.body(), progressListener))
.build();
}
});
}
String[] localVarAuthNames = new String[] { "Token" };
return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
}
@SuppressWarnings("rawtypes")
private com.squareup.okhttp.Call getUserFlagSettingsValidateBeforeCall(String projectKey, String environmentKey, String userKey, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'projectKey' is set
if (projectKey == null) {
throw new ApiException("Missing the required parameter 'projectKey' when calling getUserFlagSettings(Async)");
}
// verify the required parameter 'environmentKey' is set
if (environmentKey == null) {
throw new ApiException("Missing the required parameter 'environmentKey' when calling getUserFlagSettings(Async)");
}
// verify the required parameter 'userKey' is set
if (userKey == null) {
throw new ApiException("Missing the required parameter 'userKey' when calling getUserFlagSettings(Async)");
}
com.squareup.okhttp.Call call = getUserFlagSettingsCall(projectKey, environmentKey, userKey, progressListener, progressRequestListener);
return call;
}
/**
* Lists the current flag settings for a given user.
*
* @param projectKey The project key, used to tie the flags together under one project so they can be managed together. (required)
* @param environmentKey The environment key (required)
* @param userKey The user's key (required)
* @return UserFlagSettings
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public UserFlagSettings getUserFlagSettings(String projectKey, String environmentKey, String userKey) throws ApiException {
ApiResponse resp = getUserFlagSettingsWithHttpInfo(projectKey, environmentKey, userKey);
return resp.getData();
}
/**
* Lists the current flag settings for a given user.
*
* @param projectKey The project key, used to tie the flags together under one project so they can be managed together. (required)
* @param environmentKey The environment key (required)
* @param userKey The user's key (required)
* @return ApiResponse<UserFlagSettings>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse getUserFlagSettingsWithHttpInfo(String projectKey, String environmentKey, String userKey) throws ApiException {
com.squareup.okhttp.Call call = getUserFlagSettingsValidateBeforeCall(projectKey, environmentKey, userKey, null, null);
Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
* Lists the current flag settings for a given user. (asynchronously)
*
* @param projectKey The project key, used to tie the flags together under one project so they can be managed together. (required)
* @param environmentKey The environment key (required)
* @param userKey The user's key (required)
* @param callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
public com.squareup.okhttp.Call getUserFlagSettingsAsync(String projectKey, String environmentKey, String userKey, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
if (callback != null) {
progressListener = new ProgressResponseBody.ProgressListener() {
@Override
public void update(long bytesRead, long contentLength, boolean done) {
callback.onDownloadProgress(bytesRead, contentLength, done);
}
};
progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
@Override
public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
callback.onUploadProgress(bytesWritten, contentLength, done);
}
};
}
com.squareup.okhttp.Call call = getUserFlagSettingsValidateBeforeCall(projectKey, environmentKey, userKey, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
* Build call for putFlagSetting
* @param projectKey The project key, used to tie the flags together under one project so they can be managed together. (required)
* @param environmentKey The environment key (required)
* @param userKey The user's key (required)
* @param featureFlagKey The feature flag's key. The key identifies the flag in your code. (required)
* @param userSettingsBody (required)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
public com.squareup.okhttp.Call putFlagSettingCall(String projectKey, String environmentKey, String userKey, String featureFlagKey, UserSettingsBody userSettingsBody, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = userSettingsBody;
// create path and map variables
String localVarPath = "/users/{projectKey}/{environmentKey}/{userKey}/flags/{featureFlagKey}"
.replaceAll("\\{" + "projectKey" + "\\}", apiClient.escapeString(projectKey.toString()))
.replaceAll("\\{" + "environmentKey" + "\\}", apiClient.escapeString(environmentKey.toString()))
.replaceAll("\\{" + "userKey" + "\\}", apiClient.escapeString(userKey.toString()))
.replaceAll("\\{" + "featureFlagKey" + "\\}", apiClient.escapeString(featureFlagKey.toString()));
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
localVarHeaderParams.put("Content-Type", localVarContentType);
if(progressListener != null) {
apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
@Override
public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException {
com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
return originalResponse.newBuilder()
.body(new ProgressResponseBody(originalResponse.body(), progressListener))
.build();
}
});
}
String[] localVarAuthNames = new String[] { "Token" };
return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
}
@SuppressWarnings("rawtypes")
private com.squareup.okhttp.Call putFlagSettingValidateBeforeCall(String projectKey, String environmentKey, String userKey, String featureFlagKey, UserSettingsBody userSettingsBody, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'projectKey' is set
if (projectKey == null) {
throw new ApiException("Missing the required parameter 'projectKey' when calling putFlagSetting(Async)");
}
// verify the required parameter 'environmentKey' is set
if (environmentKey == null) {
throw new ApiException("Missing the required parameter 'environmentKey' when calling putFlagSetting(Async)");
}
// verify the required parameter 'userKey' is set
if (userKey == null) {
throw new ApiException("Missing the required parameter 'userKey' when calling putFlagSetting(Async)");
}
// verify the required parameter 'featureFlagKey' is set
if (featureFlagKey == null) {
throw new ApiException("Missing the required parameter 'featureFlagKey' when calling putFlagSetting(Async)");
}
// verify the required parameter 'userSettingsBody' is set
if (userSettingsBody == null) {
throw new ApiException("Missing the required parameter 'userSettingsBody' when calling putFlagSetting(Async)");
}
com.squareup.okhttp.Call call = putFlagSettingCall(projectKey, environmentKey, userKey, featureFlagKey, userSettingsBody, progressListener, progressRequestListener);
return call;
}
/**
* Specifically enable or disable a feature flag for a user based on their key.
*
* @param projectKey The project key, used to tie the flags together under one project so they can be managed together. (required)
* @param environmentKey The environment key (required)
* @param userKey The user's key (required)
* @param featureFlagKey The feature flag's key. The key identifies the flag in your code. (required)
* @param userSettingsBody (required)
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public void putFlagSetting(String projectKey, String environmentKey, String userKey, String featureFlagKey, UserSettingsBody userSettingsBody) throws ApiException {
putFlagSettingWithHttpInfo(projectKey, environmentKey, userKey, featureFlagKey, userSettingsBody);
}
/**
* Specifically enable or disable a feature flag for a user based on their key.
*
* @param projectKey The project key, used to tie the flags together under one project so they can be managed together. (required)
* @param environmentKey The environment key (required)
* @param userKey The user's key (required)
* @param featureFlagKey The feature flag's key. The key identifies the flag in your code. (required)
* @param userSettingsBody (required)
* @return ApiResponse<Void>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse putFlagSettingWithHttpInfo(String projectKey, String environmentKey, String userKey, String featureFlagKey, UserSettingsBody userSettingsBody) throws ApiException {
com.squareup.okhttp.Call call = putFlagSettingValidateBeforeCall(projectKey, environmentKey, userKey, featureFlagKey, userSettingsBody, null, null);
return apiClient.execute(call);
}
/**
* Specifically enable or disable a feature flag for a user based on their key. (asynchronously)
*
* @param projectKey The project key, used to tie the flags together under one project so they can be managed together. (required)
* @param environmentKey The environment key (required)
* @param userKey The user's key (required)
* @param featureFlagKey The feature flag's key. The key identifies the flag in your code. (required)
* @param userSettingsBody (required)
* @param callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
public com.squareup.okhttp.Call putFlagSettingAsync(String projectKey, String environmentKey, String userKey, String featureFlagKey, UserSettingsBody userSettingsBody, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
if (callback != null) {
progressListener = new ProgressResponseBody.ProgressListener() {
@Override
public void update(long bytesRead, long contentLength, boolean done) {
callback.onDownloadProgress(bytesRead, contentLength, done);
}
};
progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
@Override
public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
callback.onUploadProgress(bytesWritten, contentLength, done);
}
};
}
com.squareup.okhttp.Call call = putFlagSettingValidateBeforeCall(projectKey, environmentKey, userKey, featureFlagKey, userSettingsBody, progressListener, progressRequestListener);
apiClient.executeAsync(call, callback);
return call;
}
}