All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lacunasoftware.restpkicore.SubscriptionAccessModelRolesRootRolesApplicationModelPaginatedSearchResponse Maven / Gradle / Ivy

There is a newer version: 1.1.4
Show newest version
/*
 * 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.SubscriptionAccessModelRolesRootRolesApplicationModel; import io.swagger.v3.oas.annotations.media.Schema; import java.util.ArrayList; import java.util.List; /** * SubscriptionAccessModelRolesRootRolesApplicationModelPaginatedSearchResponse */ @com.fasterxml.jackson.annotation.JsonIgnoreProperties(ignoreUnknown = true) public class SubscriptionAccessModelRolesRootRolesApplicationModelPaginatedSearchResponse { @JsonProperty("items") private List items = null; @JsonProperty("totalCount") private Integer totalCount = null; public SubscriptionAccessModelRolesRootRolesApplicationModelPaginatedSearchResponse items(List items) { this.items = items; return this; } public SubscriptionAccessModelRolesRootRolesApplicationModelPaginatedSearchResponse addItemsItem(SubscriptionAccessModelRolesRootRolesApplicationModel itemsItem) { if (this.items == null) { this.items = new ArrayList<>(); } this.items.add(itemsItem); return this; } /** * Get items * @return items **/ @Schema(description = "") public List getItems() { return items; } public void setItems(List items) { this.items = items; } public SubscriptionAccessModelRolesRootRolesApplicationModelPaginatedSearchResponse totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } /** * Get totalCount * @return totalCount **/ @Schema(description = "") public Integer getTotalCount() { return totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } @Override public boolean equals(java.lang.Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SubscriptionAccessModelRolesRootRolesApplicationModelPaginatedSearchResponse subscriptionAccessModelRolesRootRolesApplicationModelPaginatedSearchResponse = (SubscriptionAccessModelRolesRootRolesApplicationModelPaginatedSearchResponse) o; return Objects.equals(this.items, subscriptionAccessModelRolesRootRolesApplicationModelPaginatedSearchResponse.items) && Objects.equals(this.totalCount, subscriptionAccessModelRolesRootRolesApplicationModelPaginatedSearchResponse.totalCount); } @Override public int hashCode() { return Objects.hash(items, totalCount); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SubscriptionAccessModelRolesRootRolesApplicationModelPaginatedSearchResponse {\n"); sb.append(" items: ").append(toIndentedString(items)).append("\n"); sb.append(" totalCount: ").append(toIndentedString(totalCount)).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 "); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy