
com.adyen.service.management.MyApiCredentialApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
/*
* Management API
*
* The version of the OpenAPI document: 3
*
*
* 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.adyen.service.management;
import com.adyen.Client;
import com.adyen.Service;
import com.adyen.constants.ApiConstants;
import com.adyen.model.management.AllowedOrigin;
import com.adyen.model.management.AllowedOriginsResponse;
import com.adyen.model.management.CreateAllowedOriginRequest;
import com.adyen.model.management.GenerateClientKeyResponse;
import com.adyen.model.management.MeApiCredential;
import com.adyen.model.management.RestServiceError;
import com.adyen.model.RequestOptions;
import com.adyen.service.exception.ApiException;
import com.adyen.service.resource.Resource;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
public class MyApiCredentialApi extends Service {
public static final String API_VERSION = "3";
protected String baseURL;
/**
* My API credential constructor in {@link com.adyen.service.management package}.
* @param client {@link Client } (required)
*/
public MyApiCredentialApi(Client client) {
super(client);
this.baseURL = createBaseURL("https://management-test.adyen.com/v3");
}
/**
* My API credential constructor in {@link com.adyen.service.management package}.
* Please use this constructor only if you would like to pass along your own url for routing or testing purposes. The latest API version is defined in this class as a constant.
* @param client {@link Client } (required)
* @param baseURL {@link String } (required)
*/
public MyApiCredentialApi(Client client, String baseURL) {
super(client);
this.baseURL = baseURL;
}
/**
* Add allowed origin
*
* @param createAllowedOriginRequest {@link CreateAllowedOriginRequest } (required)
* @return {@link AllowedOrigin }
* @throws ApiException if fails to make API call
*/
public AllowedOrigin addAllowedOrigin(CreateAllowedOriginRequest createAllowedOriginRequest) throws ApiException, IOException {
return addAllowedOrigin(createAllowedOriginRequest, null);
}
/**
* Add allowed origin
*
* @param createAllowedOriginRequest {@link CreateAllowedOriginRequest } (required)
* @param requestOptions {@link RequestOptions } Object to store additional data such as idempotency-keys (optional)
* @return {@link AllowedOrigin }
* @throws ApiException if fails to make API call
*/
public AllowedOrigin addAllowedOrigin(CreateAllowedOriginRequest createAllowedOriginRequest, RequestOptions requestOptions) throws ApiException, IOException {
String requestBody = createAllowedOriginRequest.toJson();
Resource resource = new Resource(this, this.baseURL + "/me/allowedOrigins", null);
String jsonResult = resource.request(requestBody, requestOptions, ApiConstants.HttpMethod.POST, null);
return AllowedOrigin.fromJson(jsonResult);
}
/**
* Generate a client key
*
* @return {@link GenerateClientKeyResponse }
* @throws ApiException if fails to make API call
*/
public GenerateClientKeyResponse generateClientKey() throws ApiException, IOException {
return generateClientKey(null);
}
/**
* Generate a client key
*
* @param requestOptions {@link RequestOptions } Object to store additional data such as idempotency-keys (optional)
* @return {@link GenerateClientKeyResponse }
* @throws ApiException if fails to make API call
*/
public GenerateClientKeyResponse generateClientKey(RequestOptions requestOptions) throws ApiException, IOException {
String requestBody = null;
Resource resource = new Resource(this, this.baseURL + "/me/generateClientKey", null);
String jsonResult = resource.request(requestBody, requestOptions, ApiConstants.HttpMethod.POST, null);
return GenerateClientKeyResponse.fromJson(jsonResult);
}
/**
* Get allowed origin details
*
* @param originId {@link String } Unique identifier of the allowed origin. (required)
* @return {@link AllowedOrigin }
* @throws ApiException if fails to make API call
*/
public AllowedOrigin getAllowedOriginDetails(String originId) throws ApiException, IOException {
return getAllowedOriginDetails(originId, null);
}
/**
* Get allowed origin details
*
* @param originId {@link String } Unique identifier of the allowed origin. (required)
* @param requestOptions {@link RequestOptions } Object to store additional data such as idempotency-keys (optional)
* @return {@link AllowedOrigin }
* @throws ApiException if fails to make API call
*/
public AllowedOrigin getAllowedOriginDetails(String originId, RequestOptions requestOptions) throws ApiException, IOException {
//Add path params
Map pathParams = new HashMap<>();
if (originId == null) {
throw new IllegalArgumentException("Please provide the originId path parameter");
}
pathParams.put("originId", originId);
String requestBody = null;
Resource resource = new Resource(this, this.baseURL + "/me/allowedOrigins/{originId}", null);
String jsonResult = resource.request(requestBody, requestOptions, ApiConstants.HttpMethod.GET, pathParams);
return AllowedOrigin.fromJson(jsonResult);
}
/**
* Get allowed origins
*
* @return {@link AllowedOriginsResponse }
* @throws ApiException if fails to make API call
*/
public AllowedOriginsResponse getAllowedOrigins() throws ApiException, IOException {
return getAllowedOrigins(null);
}
/**
* Get allowed origins
*
* @param requestOptions {@link RequestOptions } Object to store additional data such as idempotency-keys (optional)
* @return {@link AllowedOriginsResponse }
* @throws ApiException if fails to make API call
*/
public AllowedOriginsResponse getAllowedOrigins(RequestOptions requestOptions) throws ApiException, IOException {
String requestBody = null;
Resource resource = new Resource(this, this.baseURL + "/me/allowedOrigins", null);
String jsonResult = resource.request(requestBody, requestOptions, ApiConstants.HttpMethod.GET, null);
return AllowedOriginsResponse.fromJson(jsonResult);
}
/**
* Get API credential details
*
* @return {@link MeApiCredential }
* @throws ApiException if fails to make API call
*/
public MeApiCredential getApiCredentialDetails() throws ApiException, IOException {
return getApiCredentialDetails(null);
}
/**
* Get API credential details
*
* @param requestOptions {@link RequestOptions } Object to store additional data such as idempotency-keys (optional)
* @return {@link MeApiCredential }
* @throws ApiException if fails to make API call
*/
public MeApiCredential getApiCredentialDetails(RequestOptions requestOptions) throws ApiException, IOException {
String requestBody = null;
Resource resource = new Resource(this, this.baseURL + "/me", null);
String jsonResult = resource.request(requestBody, requestOptions, ApiConstants.HttpMethod.GET, null);
return MeApiCredential.fromJson(jsonResult);
}
/**
* Remove allowed origin
*
* @param originId {@link String } Unique identifier of the allowed origin. (required)
* @throws ApiException if fails to make API call
*/
public void removeAllowedOrigin(String originId) throws ApiException, IOException {
removeAllowedOrigin(originId, null);
}
/**
* Remove allowed origin
*
* @param originId {@link String } Unique identifier of the allowed origin. (required)
* @param requestOptions {@link RequestOptions } Object to store additional data such as idempotency-keys (optional)
* @throws ApiException if fails to make API call
*/
public void removeAllowedOrigin(String originId, RequestOptions requestOptions) throws ApiException, IOException {
//Add path params
Map pathParams = new HashMap<>();
if (originId == null) {
throw new IllegalArgumentException("Please provide the originId path parameter");
}
pathParams.put("originId", originId);
String requestBody = null;
Resource resource = new Resource(this, this.baseURL + "/me/allowedOrigins/{originId}", null);
resource.request(requestBody, requestOptions, ApiConstants.HttpMethod.DELETE, pathParams);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy