com.lacunasoftware.restpkicore.SubscriptionAccessModelRolesRootRolesApplicationModel Maven / Gradle / Ivy
Show all versions of restpkicore-client Show documentation
/*
* Rest PKI Core API
* Para Português, clique aqui Rest PKI Core is an upcoming version of Rest PKI that will have extended compatibility with environments and databases.
In addition to Windows Server (which is already supported by Rest PKI), Rest PKI Core will also run on Linux (Debian- and RedHat-based distributions) and on Docker. As for database servers, in addition to SQL Server, PostgreSQL will also be supported.
Before getting started, see the integration overview on the Integration Guide
For questions regarding the usage of this API, please reach us at lacuna.help
Parameters
You will need the following parameters:
- Endpoint: address of the Rest PKI Core instance that will be used
- API Key: authorization key for using the API
The endpoint must be prefixed to all relative URLs mentioned here. As for the API Key, see how to use it below.
Authentication
The API key must be sent on the X-Api-Key header on each request:
X-Api-Key: yourapp|xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
HTTP Codes
The APIs will return the following HTTP codes:
Code Description 200 (OK) Request processed successfully. The response is different for each API, please refer to the operation's documentation 400 (Bad Request) Syntax error. For instance, when a required field was not provided 401 (Unauthorized) API key not provided or invalid 403 (Forbidden) API key is valid, but the application has insufficient permissions to complete the requested operation 422 (Unprocessable Entity) API error. The response body is an ErrorModelV2 500 (Internal Server Error) An unexpected error occurred. The exceptionCode contained on the response body may be of help for our support team during diagnostic.
Error Codes
Some of the error codes returned in the code field of an ErrorModelV2 (body of responses with HTTP status code 422) are provided below*:
Code Description DocumentNotFound A referenced document was not found (check the document ID) SecurityContextNotFound A referenced security context was not found (check the security context ID) SignatureSessionNotFound A referenced signature session was not found (check the signature session ID) BadSignatureSessionOperation The operation is invalid for the current signature session or document status. For instance, trying to await the session's completion if it is still Pending results in this error BackgroundProcessing The operation cannot be completed at this time because the resource is being processed in background SignatureSessionTokenRequired The signature session token was not passed on the X-Signature-Session-Token request header BadSignatureSessionToken An invalid signature session token was passed on the X-Signature-Session-Token request header. Check your application for possible corruption of the session token, which may contain characters - (hyphen) and _ (underscore) ExpiredSignatureSessionToken An expired signature session token was passed on the X-Signature-Session-Token request header. Signature session tokens are normally valid for 4 hours.
*The codes shown above are the most common error codes. Nonetheless, this list is not comprehensive. New codes may be added anytime without previous warning.
Culture / Internationalization (i18n)
The Accept-Language request header is observed by this API. The following cultures are supported:
- en-US (or simply en)
- pt-BR (or simply pt)
Notice: error messages are not affected by this header and therefore should not be displayed to users, being better suited for logging.
*
* OpenAPI spec version: 1.10.0 RC 1
*
*
* 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 com.lacunasoftware.restpkicore;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.lacunasoftware.restpkicore.RootRoles;
import com.lacunasoftware.restpkicore.SubscriptionAccessModel;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
/**
* SubscriptionAccessModelRolesRootRolesApplicationModel
*/
@com.fasterxml.jackson.annotation.JsonIgnoreProperties(ignoreUnknown = true)
public class SubscriptionAccessModelRolesRootRolesApplicationModel {
@JsonProperty("id")
private UUID id = null;
@JsonProperty("subscriptionId")
private UUID subscriptionId = null;
@JsonProperty("name")
private String name = null;
@JsonProperty("rootRoles")
private List rootRoles = null;
@JsonProperty("subscriptions")
private List subscriptions = null;
@JsonProperty("grantAppId")
private String grantAppId = null;
public SubscriptionAccessModelRolesRootRolesApplicationModel id(UUID id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@Schema(description = "")
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
public SubscriptionAccessModelRolesRootRolesApplicationModel subscriptionId(UUID subscriptionId) {
this.subscriptionId = subscriptionId;
return this;
}
/**
* Get subscriptionId
* @return subscriptionId
**/
@Schema(description = "")
public UUID getSubscriptionId() {
return subscriptionId;
}
public void setSubscriptionId(UUID subscriptionId) {
this.subscriptionId = subscriptionId;
}
public SubscriptionAccessModelRolesRootRolesApplicationModel name(String name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@Schema(description = "")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public SubscriptionAccessModelRolesRootRolesApplicationModel rootRoles(List rootRoles) {
this.rootRoles = rootRoles;
return this;
}
public SubscriptionAccessModelRolesRootRolesApplicationModel addRootRolesItem(RootRoles rootRolesItem) {
if (this.rootRoles == null) {
this.rootRoles = new ArrayList<>();
}
this.rootRoles.add(rootRolesItem);
return this;
}
/**
* Get rootRoles
* @return rootRoles
**/
@Schema(description = "")
public List getRootRoles() {
return rootRoles;
}
public void setRootRoles(List rootRoles) {
this.rootRoles = rootRoles;
}
public SubscriptionAccessModelRolesRootRolesApplicationModel subscriptions(List subscriptions) {
this.subscriptions = subscriptions;
return this;
}
public SubscriptionAccessModelRolesRootRolesApplicationModel addSubscriptionsItem(SubscriptionAccessModel subscriptionsItem) {
if (this.subscriptions == null) {
this.subscriptions = new ArrayList<>();
}
this.subscriptions.add(subscriptionsItem);
return this;
}
/**
* Get subscriptions
* @return subscriptions
**/
@Schema(description = "")
public List getSubscriptions() {
return subscriptions;
}
public void setSubscriptions(List subscriptions) {
this.subscriptions = subscriptions;
}
public SubscriptionAccessModelRolesRootRolesApplicationModel grantAppId(String grantAppId) {
this.grantAppId = grantAppId;
return this;
}
/**
* Get grantAppId
* @return grantAppId
**/
@Schema(description = "")
public String getGrantAppId() {
return grantAppId;
}
public void setGrantAppId(String grantAppId) {
this.grantAppId = grantAppId;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SubscriptionAccessModelRolesRootRolesApplicationModel subscriptionAccessModelRolesRootRolesApplicationModel = (SubscriptionAccessModelRolesRootRolesApplicationModel) o;
return Objects.equals(this.id, subscriptionAccessModelRolesRootRolesApplicationModel.id) &&
Objects.equals(this.subscriptionId, subscriptionAccessModelRolesRootRolesApplicationModel.subscriptionId) &&
Objects.equals(this.name, subscriptionAccessModelRolesRootRolesApplicationModel.name) &&
Objects.equals(this.rootRoles, subscriptionAccessModelRolesRootRolesApplicationModel.rootRoles) &&
Objects.equals(this.subscriptions, subscriptionAccessModelRolesRootRolesApplicationModel.subscriptions) &&
Objects.equals(this.grantAppId, subscriptionAccessModelRolesRootRolesApplicationModel.grantAppId);
}
@Override
public int hashCode() {
return Objects.hash(id, subscriptionId, name, rootRoles, subscriptions, grantAppId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SubscriptionAccessModelRolesRootRolesApplicationModel {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" subscriptionId: ").append(toIndentedString(subscriptionId)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" rootRoles: ").append(toIndentedString(rootRoles)).append("\n");
sb.append(" subscriptions: ").append(toIndentedString(subscriptions)).append("\n");
sb.append(" grantAppId: ").append(toIndentedString(grantAppId)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}