diff --git a/.github/workflows/4-release.yaml b/.github/workflows/4-release.yaml index 54fcc9deb..177590a6b 100644 --- a/.github/workflows/4-release.yaml +++ b/.github/workflows/4-release.yaml @@ -9,8 +9,17 @@ env: IMAGE_NAME: ${{ github.repository }} jobs: + detect-current-api-version: + uses: ./.github/workflows/detect-webapi-version.yaml + with: + # We cannot use environment variables here due to workflow limitation. + # https://docs.github.com/en/enterprise-cloud@latest/actions/using-workflows/reusing-workflows#limitations + registry: ghcr.io + image-repo: ${{ github.repository }} + publish-container-image: runs-on: ubuntu-latest + needs: detect-current-api-version permissions: packages: write steps: @@ -39,3 +48,27 @@ jobs: tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} provenance: false + + detect-newer-api-version: + needs: publish-container-image + uses: ./.github/workflows/detect-webapi-version.yaml + with: + # We cannot use environment variables here due to workflow limitation. + # https://docs.github.com/en/enterprise-cloud@latest/actions/using-workflows/reusing-workflows#limitations + registry: ghcr.io + image-repo: ${{ github.repository }} + + generate-webapi-clients: + needs: + - detect-current-api-version + - detect-newer-api-version + if: ${{ needs.detect-current-api-version.outputs.apiver != needs.detect-newer-api-version.outputs.apiver }} + uses: ./.github/workflows/4.a-generate-webapi-clients.yaml + permissions: + contents: write + packages: write + with: + # We cannot use environment variables here due to workflow limitation. + # https://docs.github.com/en/enterprise-cloud@latest/actions/using-workflows/reusing-workflows#limitations + registry: ghcr.io + image-repo: ${{ github.repository }} diff --git a/.github/workflows/4.a-generate-webapi-clients.yaml b/.github/workflows/4.a-generate-webapi-clients.yaml new file mode 100644 index 000000000..d14602218 --- /dev/null +++ b/.github/workflows/4.a-generate-webapi-clients.yaml @@ -0,0 +1,48 @@ +name: 4.a-Generate WebAPI client libraries + +on: + workflow_call: + inputs: + registry: + type: string + required: true + image-repo: + type: string + required: true + tag: + type: string + required: false + default: latest + workflow_dispatch: + inputs: + registry: + type: string + required: false + default: ghcr.io + image-repo: + type: string + required: false + default: "green-software-foundation/carbon-aware-sdk" + tag: + type: string + required: false + default: latest + +permissions: + contents: write + packages: write + +jobs: + detect-api-version: + uses: ./.github/workflows/detect-webapi-version.yaml + with: + registry: ${{ inputs.registry }} + image-repo: ${{ inputs.image-repo }} + tag: ${{ inputs.tag }} + + generate-java-client: + needs: detect-api-version + uses: ./.github/workflows/4.a.1-generate-webapi-client-java.yaml + with: + image: ${{ needs.detect-api-version.outputs.image }} + apiver: ${{ needs.detect-api-version.outputs.apiver }} diff --git a/.github/workflows/4.a.1-generate-webapi-client-java.yaml b/.github/workflows/4.a.1-generate-webapi-client-java.yaml new file mode 100644 index 000000000..c7b4ceead --- /dev/null +++ b/.github/workflows/4.a.1-generate-webapi-client-java.yaml @@ -0,0 +1,84 @@ +name: 4.a.1-Generate WebAPI client library for Java + +on: + workflow_call: + inputs: + image: + required: true + type: string + apiver: + required: true + type: string + +jobs: + generate-java-client: + runs-on: ubuntu-latest + services: + webapi: + image: ${{ inputs.image }} + ports: + - 8080:8080 + options: >- + --health-cmd "curl -sS http://localhost:8080/health" + --health-interval 3s + --health-timeout 5s + --health-retries 5 + permissions: + packages: write + env: + API: http://localhost:8080/api/v1/swagger.yaml + steps: + - name: Prepare + run: | + mkdir work pages + npm install -g @openapitools/openapi-generator-cli@2.5.2 + - name: Generate client library + run: | + echo '{"apiPackage": "foundation.greensoftware.carbonaware.webapi.client", "artifactDescription": "Carbon Aware SDK client library for Java", "artifactId": "casdk-client", "artifactVersion": "${{ inputs.apiver }}", "developerOrganization": "Green Software Foundation", "developerOrganizationUrl": "https://greensoftware.foundation/", "groupId": "foundation.greensoftware", "licenseName": "MIT License", "scmUrl": "${{ env.REPO }}", "artifactUrl": "${{ env.REPO }}/packages/", "scmConnection": "${{ github.repositoryUrl }}", "scmDeveloperConnection": "${{ github.repositoryUrl }}", "licenseUrl": "https://opensource.org/license/mit/", "developerName": "Green Software Foundation", "developerEmail": "carbon-aware-sdk@greensoftware.foundation"}' > config.json + openapi-generator-cli generate -i ${{ env.API }} -g java -o work -c config.json + sed -i "s||githubGitHub Packageshttps://maven.pkg.github.com/${{ github.repository }}|" work/pom.xml + shell: bash + - name: Setup Java 8 + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: 8 + cache: maven + - name: Run Maven + run: mvn -B deploy javadoc:javadoc + env: + GITHUB_TOKEN: ${{ github.token }} + working-directory: work + - name: Upload Javadoc + uses: actions/upload-artifact@v4 + with: + name: javadoc + path: work/target/apidocs + + push-javadoc: + needs: generate-java-client + concurrency: push-to-doc-website + runs-on: ubuntu-latest + env: + DOCPATH: casdk-docs/static/client-apidocs/${{ inputs.apiver }}/java + permissions: + contents: write + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Prepare + run: mkdir -p ${{ env.DOCPATH }} + - name: Download Javadoc + uses: actions/download-artifact@v4 + with: + name: javadoc + path: ${{ env.DOCPATH }} + - name: Push Javadoc + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add ${{ env.DOCPATH }} + git commit -m "Add Javadoc for WebAPI ${{ inputs.apiver }}" + git push origin ${{ github.ref_name }} + env: + GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/detect-webapi-version.yaml b/.github/workflows/detect-webapi-version.yaml new file mode 100644 index 000000000..e0b114781 --- /dev/null +++ b/.github/workflows/detect-webapi-version.yaml @@ -0,0 +1,55 @@ +name: Detect API version from OpenAPI document in WebAPI container image + +on: + workflow_call: + inputs: + registry: + type: string + required: true + image-repo: + type: string + required: true + tag: + type: string + required: false + default: latest + outputs: + image: + value: ${{ jobs.make-image-name-for-pull.outputs.image }} + apiver: + value: ${{ jobs.detect-api-version.outputs.apiver }} + +jobs: + make-image-name-for-pull: + runs-on: ubuntu-latest + outputs: + image: ${{ steps.make-image-name.outputs.IMAGE_NAME }} + steps: + - name: Make string for pulling container image + id: make-image-name + run: | + REPO=${{ inputs.registry }}/${{ inputs.image-repo }} + REPO_LOWER=${REPO,,} + echo "IMAGE_NAME=$REPO_LOWER:${{ inputs.tag }}" >> "$GITHUB_OUTPUT" + + detect-api-version: + needs: make-image-name-for-pull + runs-on: ubuntu-latest + services: + webapi: + image: ${{ needs.make-image-name-for-pull.outputs.image }} + ports: + - 8080:8080 + options: >- + --health-cmd "curl -sS http://localhost:8080/health" + --health-interval 3s + --health-timeout 5s + --health-retries 5 + outputs: + apiver: ${{ steps.detect-api-version.outputs.CURRENT_API_VERSION }} + steps: + - name: Detect API version + id: detect-api-version + run: | + API_VERSION=`curl -sS http://localhost:8080/api/v1/swagger.yaml | yq -r .info.version` + echo "CURRENT_API_VERSION=$API_VERSION" >> "$GITHUB_OUTPUT" diff --git a/samples/java-client/README.md b/samples/java-client/README.md index b5e728f3a..295287bc6 100644 --- a/samples/java-client/README.md +++ b/samples/java-client/README.md @@ -1,33 +1,19 @@ # Java Client Example -This folder contains an example for WebAPI client in Java. Client library would -be generated dynamically via -[openapi-generator-maven-plugin](https://github.com/OpenAPITools/openapi-generator/tree/master/modules/openapi-generator-maven-plugin), -and call WebAPI endpoints without HTTP code. +This folder contains an example for WebAPI client in Java. Client library would be pulled from [GitHub Packages](https://github.com/orgs/Green-Software-Foundation/packages?repo_name=carbon-aware-sdk). -Javadoc is [here](apidocs). - -openapi-generator-maven-plugin generates Maven/Gradle project when it kicks, -however this example uses generated codes directly. So you don't need to -run/modify project files in it. +Javadoc is [here](https://carbon-aware-sdk.greensoftware.foundation/client-apidocs/1.0.0/java). ## Requirements -- OpenAPI spec file - - Both online and offline file are available. - - See [WebAPI document](../../docs/carbon-aware-webapi.md#autogenerate-webapi) - for details. - WebAPI instance - - See the [Overview](../../docs/overview.md#publish-webapi-with-container) - if you'd like to start it on container. + - See the [Overview](../../docs/overview.md#publish-webapi-with-container) if you'd like to start it on container. - Java 8 or later - Maven ## Client code -[WebApiClient.java](src/main/java/foundation/greensoftware/carbonawaresdk/samples/java/WebApiClient.java) -is an example program to call WebAPI endpoint. It calls all of endpoints, and -shows the result. +[WebApiClient.java](src/main/java/example/foundation/greensoftware/carbonawaresdk/WebApiClient.java) is an example program to call WebAPI endpoint. It calls all of endpoints, and shows the result. Following methods are available: @@ -53,10 +39,7 @@ Following methods are available: - Call /emissions/average-carbon-intensity/batch - Shows average data for westus yesterday. -[OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) -is used for parameters in each APIs. However the error occurs if nano sec is set -to it in case of WattTime. So it is highly recommended that clears nanosec field -like `withNano(0)`. +[OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) is used for parameters in each APIs. However the error occurs if nano sec is set to it in case of WattTime. So it is highly recommended that clears nanosec field like `withNano(0)`. ## How it works @@ -64,8 +47,6 @@ like `withNano(0)`. You need to change following properties: -- `openapi.spec` - - OpenAPI spec file - `webapi.endpoint` - WebAPI base URL @@ -83,18 +64,15 @@ $ mvn exec:java ### Running in container -This example also can run in container. You can use -[Maven official image](https://hub.docker.com/_/maven). +This example also can run in container. You can use [Maven official image](https://hub.docker.com/_/maven). -If you want to run both WebAPI and build process in container, you need to join -2 containers to same network. +If you want to run both WebAPI and build process in container, you need to join 2 containers to same network. Following instructions are for Podman. #### 1. Create pod -This pod publishes port 80 in the pod to 8080 on the host, then you can access -WebAPI in the pod. The pod is named to `carbon-aware-sdk`. +This pod publishes port 80 in the pod to 8080 on the host, then you can access WebAPI in the pod. The pod is named to `carbon-aware-sdk`. ```sh podman pod create -p 8080:80 --name carbon-aware-sdk @@ -102,8 +80,7 @@ podman pod create -p 8080:80 --name carbon-aware-sdk #### 2. Start WebAPI container -Start WebAPI container in `carbon-aware-sdk` pod. It is specified at `--pod` -option. +Start WebAPI container in `carbon-aware-sdk` pod. It is specified at `--pod` option. See [Overview](../../docs/overview.md) document to build container image. @@ -117,13 +94,9 @@ $ podman run -it --rm --pod carbon-aware-sdk \ #### 3. Run Maven in the container -Run `mvn` command in Maven container in `catbon-aware-sdk` pod. You need to -mount Carbon Aware SDK source directory to the container. It mounts to `/src` in -the container in following case. +Run `mvn` command in Maven container in `catbon-aware-sdk` pod. You need to mount Carbon Aware SDK source directory to the container. It mounts to `/src` in the container in following case. -In following command, you can rebuild java-client, and can run the artifact. You -can get artifacts from `samples/java-client/target` on the container host of -course. +In following command, you can rebuild java-client, and can run the artifact. You can get artifacts from `samples/java-client/target` on the container host of course. ```sh $ podman run -it --rm --pod carbon-aware-sdk \ @@ -132,6 +105,4 @@ $ podman run -it --rm --pod carbon-aware-sdk \ mvn -f /src/samples/java-client/pom.xml clean package exec:java ``` -Maven will download many dependencies in each `mvn` call. You can avoid it when -you mount `.m2` like `-v $HOME/.m2:/root/.m2` because it shares Maven cache -between the host and the container. +Maven will download many dependencies in each `mvn` call. You can avoid it when you mount `.m2` like `-v $HOME/.m2:/root/.m2` because it shares Maven cache between the host and the container. diff --git a/samples/java-client/apidocs/allclasses-index.html b/samples/java-client/apidocs/allclasses-index.html deleted file mode 100644 index 6857ee130..000000000 --- a/samples/java-client/apidocs/allclasses-index.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - -All Classes and Interfaces (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

All Classes and Interfaces

-
-
-
-
-
-
Class
-
Description
- -
-
Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
-
- -
-
Callback for asynchronous API call.
-
- -
-
ApiClient class.
-
- -
-
ApiException class.
-
- -
 
- -
-
API response returned by API call.
-
- -
 
- -
 
- -
-
CarbonIntensityBatchParametersDTO
-
- -
 
- -
-
CarbonIntensityDTO
-
- -
 
- -
 
- -
-
EmissionsData
-
- -
 
- -
-
EmissionsDataDTO
-
- -
 
- -
-
EmissionsForecastBatchParametersDTO
-
- -
 
- -
-
EmissionsForecastDTO
-
- -
 
- -
 
- -
 
- -
 
- -
-
Gson TypeAdapter for Byte Array type
-
- -
-
Gson TypeAdapter for java.util.Date type - If the dateFormat is null, ISO8601Utils will be used.
-
- -
-
Gson TypeAdapter for JSR310 LocalDate type
-
- -
-
Gson TypeAdapter for JSR310 OffsetDateTime type
-
- -
-
Gson TypeAdapter for java.sql.Date type - If the dateFormat is null, a simple "yyyy-MM-dd" format will be used - (more efficient than SimpleDateFormat).
-
- -
 
- -
 
- -
 
- -
-
Representing a Server configuration.
-
- -
-
Representing a Server Variable for server URL template substitution.
-
- -
 
- -
-
ValidationProblemDetails
-
- -
 
-
-
-
-
- -
-
- - diff --git a/samples/java-client/apidocs/allpackages-index.html b/samples/java-client/apidocs/allpackages-index.html deleted file mode 100644 index 41e1d9269..000000000 --- a/samples/java-client/apidocs/allpackages-index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - -All Packages (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

All Packages

-
-
Package Summary
- -
- -
-
- - diff --git a/samples/java-client/apidocs/constant-values.html b/samples/java-client/apidocs/constant-values.html deleted file mode 100644 index 64ec4299c..000000000 --- a/samples/java-client/apidocs/constant-values.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - -Constant Field Values (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Constant Field Values

-
-

Contents

- -
-
-
-

org.openapitools.*

- -
-
- -
-
- - diff --git a/samples/java-client/apidocs/copy.svg b/samples/java-client/apidocs/copy.svg deleted file mode 100644 index 7c46ab15f..000000000 --- a/samples/java-client/apidocs/copy.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - diff --git a/samples/java-client/apidocs/element-list b/samples/java-client/apidocs/element-list deleted file mode 100644 index c12de8c4b..000000000 --- a/samples/java-client/apidocs/element-list +++ /dev/null @@ -1,4 +0,0 @@ -org.openapitools.client -org.openapitools.client.api -org.openapitools.client.auth -org.openapitools.client.model diff --git a/samples/java-client/apidocs/help-doc.html b/samples/java-client/apidocs/help-doc.html deleted file mode 100644 index 82ca37579..000000000 --- a/samples/java-client/apidocs/help-doc.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - -API Help (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-

JavaDoc Help

- -
-
-

Navigation

-Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces - -
-
-
-

Kinds of Pages

-The following sections describe the different kinds of pages in this collection. -
-

Overview

-

The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

-
-
-

Package

-

Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:

-
    -
  • Interfaces
  • -
  • Classes
  • -
  • Enums
  • -
  • Exception Classes
  • -
  • Annotation Types
  • -
-
-
-

Class or Interface

-

Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.

-
    -
  • Class Inheritance Diagram
  • -
  • Direct Subclasses
  • -
  • All Known Subinterfaces
  • -
  • All Known Implementing Classes
  • -
  • Class or Interface Declaration
  • -
  • Class or Interface Description
  • -
-
-
    -
  • Nested Class Summary
  • -
  • Enum Constant Summary
  • -
  • Field Summary
  • -
  • Property Summary
  • -
  • Constructor Summary
  • -
  • Method Summary
  • -
  • Required Element Summary
  • -
  • Optional Element Summary
  • -
-
-
    -
  • Enum Constant Details
  • -
  • Field Details
  • -
  • Property Details
  • -
  • Constructor Details
  • -
  • Method Details
  • -
  • Element Details
  • -
-

Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.

-

The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

-
-
-

Other Files

-

Packages and modules may contain pages with additional information related to the declarations nearby.

-
-
-

Use

-

Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the USE link in the navigation bar.

-
-
-

Tree (Class Hierarchy)

-

There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

-
    -
  • When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.
  • -
  • When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
  • -
-
-
-

Constant Field Values

-

The Constant Field Values page lists the static final fields and their values.

-
-
-

Serialized Form

-

Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to those who implement rather than use the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See Also" section of the class description.

-
-
-

All Packages

-

The All Packages page contains an alphabetic index of all packages contained in the documentation.

-
-
-

All Classes and Interfaces

-

The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.

-
-
-

Index

-

The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.

-
-
-
-This help file applies to API documentation generated by the standard doclet.
- -
-
- - diff --git a/samples/java-client/apidocs/index-all.html b/samples/java-client/apidocs/index-all.html deleted file mode 100644 index 9d1d5130c..000000000 --- a/samples/java-client/apidocs/index-all.html +++ /dev/null @@ -1,1497 +0,0 @@ - - - - -Index (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Index

-
-A B C D E F G H I J L O P R S T U V W 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form -

A

-
-
AbstractOpenApiSchema - Class in org.openapitools.client.model
-
-
Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
-
-
AbstractOpenApiSchema(String, Boolean) - Constructor for class org.openapitools.client.model.AbstractOpenApiSchema
-
 
-
addDefaultCookie(String, String) - Method in class org.openapitools.client.ApiClient
-
-
Add a default cookie.
-
-
addDefaultHeader(String, String) - Method in class org.openapitools.client.ApiClient
-
-
Add a default header.
-
-
addForecastDataItem(EmissionsDataDTO) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
addOptimalDataPointsItem(EmissionsDataDTO) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
ApiCallback<T> - Interface in org.openapitools.client
-
-
Callback for asynchronous API call.
-
-
ApiClient - Class in org.openapitools.client
-
-
ApiClient class.
-
-
ApiClient() - Constructor for class org.openapitools.client.ApiClient
-
-
Basic constructor for ApiClient
-
-
ApiClient(OkHttpClient) - Constructor for class org.openapitools.client.ApiClient
-
-
Basic constructor with custom OkHttpClient
-
-
ApiException - Exception Class in org.openapitools.client
-
-
ApiException class.
-
-
ApiException() - Constructor for exception class org.openapitools.client.ApiException
-
-
Constructor for ApiException.
-
-
ApiException(int, String) - Constructor for exception class org.openapitools.client.ApiException
-
-
Constructor for ApiException.
-
-
ApiException(int, String, Map<String, List<String>>, String) - Constructor for exception class org.openapitools.client.ApiException
-
-
Constructor for ApiException.
-
-
ApiException(int, Map<String, List<String>>, String) - Constructor for exception class org.openapitools.client.ApiException
-
-
Constructor for ApiException.
-
-
ApiException(String) - Constructor for exception class org.openapitools.client.ApiException
-
-
Constructor for ApiException.
-
-
ApiException(String, int, Map<String, List<String>>, String) - Constructor for exception class org.openapitools.client.ApiException
-
-
Constructor for ApiException.
-
-
ApiException(String, Throwable, int, Map<String, List<String>>) - Constructor for exception class org.openapitools.client.ApiException
-
-
Constructor for ApiException.
-
-
ApiException(String, Throwable, int, Map<String, List<String>>, String) - Constructor for exception class org.openapitools.client.ApiException
-
-
Constructor for ApiException.
-
-
ApiException(Throwable) - Constructor for exception class org.openapitools.client.ApiException
-
-
Constructor for ApiException.
-
-
ApiKeyAuth - Class in org.openapitools.client.auth
-
 
-
ApiKeyAuth(String, String) - Constructor for class org.openapitools.client.auth.ApiKeyAuth
-
 
-
ApiResponse<T> - Class in org.openapitools.client
-
-
API response returned by API call.
-
-
ApiResponse(int, Map<String, List<String>>) - Constructor for class org.openapitools.client.ApiResponse
-
-
Constructor for ApiResponse.
-
-
ApiResponse(int, Map<String, List<String>>, T) - Constructor for class org.openapitools.client.ApiResponse
-
-
Constructor for ApiResponse.
-
-
applyToParams(List<Pair>, Map<String, String>, Map<String, String>, String, String, URI) - Method in class org.openapitools.client.auth.ApiKeyAuth
-
 
-
applyToParams(List<Pair>, Map<String, String>, Map<String, String>, String, String, URI) - Method in interface org.openapitools.client.auth.Authentication
-
-
Apply authentication settings to header and query params.
-
-
applyToParams(List<Pair>, Map<String, String>, Map<String, String>, String, String, URI) - Method in class org.openapitools.client.auth.HttpBasicAuth
-
 
-
applyToParams(List<Pair>, Map<String, String>, Map<String, String>, String, String, URI) - Method in class org.openapitools.client.auth.HttpBearerAuth
-
 
-
Authentication - Interface in org.openapitools.client.auth
-
 
-
-

B

-
-
batchForecastDataAsync(List<EmissionsForecastBatchParametersDTO>) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Given an array of historical forecasts, retrieves the data that contains forecasts metadata, the optimal forecast and a range of forecasts filtered by the attributes [start...end] if provided.
-
-
batchForecastDataAsyncAsync(List<EmissionsForecastBatchParametersDTO>, ApiCallback<List<EmissionsForecastDTO>>) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Given an array of historical forecasts, retrieves the data that contains forecasts metadata, the optimal forecast and a range of forecasts filtered by the attributes [start...end] if provided.
-
-
batchForecastDataAsyncCall(List<EmissionsForecastBatchParametersDTO>, ApiCallback) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Build call for batchForecastDataAsync
-
-
batchForecastDataAsyncWithHttpInfo(List<EmissionsForecastBatchParametersDTO>) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Given an array of historical forecasts, retrieves the data that contains forecasts metadata, the optimal forecast and a range of forecasts filtered by the attributes [start...end] if provided.
-
-
buildCall(String, String, String, List<Pair>, List<Pair>, Object, Map<String, String>, Map<String, String>, Map<String, Object>, String[], ApiCallback) - Method in class org.openapitools.client.ApiClient
-
-
Build HTTP call with the given options.
-
-
buildRequest(String, String, String, List<Pair>, List<Pair>, Object, Map<String, String>, Map<String, String>, Map<String, Object>, String[], ApiCallback) - Method in class org.openapitools.client.ApiClient
-
-
Build an HTTP request with the given options.
-
-
buildRequestBodyFormEncoding(Map<String, Object>) - Method in class org.openapitools.client.ApiClient
-
-
Build a form-encoding request body with the given form parameters.
-
-
buildRequestBodyMultipart(Map<String, Object>) - Method in class org.openapitools.client.ApiClient
-
-
Build a multipart (file uploading) request body with the given form parameters, - which could contain text fields and file fields.
-
-
buildUrl(String, String, List<Pair>, List<Pair>) - Method in class org.openapitools.client.ApiClient
-
-
Build full URL by concatenating base path, the given sub path and query parameters.
-
-
ByteArrayAdapter() - Constructor for class org.openapitools.client.JSON.ByteArrayAdapter
-
 
-
-

C

-
-
CarbonAwareApi - Class in org.openapitools.client.api
-
 
-
CarbonAwareApi() - Constructor for class org.openapitools.client.api.CarbonAwareApi
-
 
-
CarbonAwareApi(ApiClient) - Constructor for class org.openapitools.client.api.CarbonAwareApi
-
 
-
carbonIntensity(Double) - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
CarbonIntensityBatchParametersDTO - Class in org.openapitools.client.model
-
-
CarbonIntensityBatchParametersDTO
-
-
CarbonIntensityBatchParametersDTO() - Constructor for class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
 
-
CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory - Class in org.openapitools.client.model
-
 
-
CarbonIntensityDTO - Class in org.openapitools.client.model
-
-
CarbonIntensityDTO
-
-
CarbonIntensityDTO() - Constructor for class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
CarbonIntensityDTO.CustomTypeAdapterFactory - Class in org.openapitools.client.model
-
 
-
collectionPathParameterToString(String, Collection) - Method in class org.openapitools.client.ApiClient
-
-
Formats the specified collection path parameter to a string value.
-
-
Configuration - Class in org.openapitools.client
-
 
-
Configuration() - Constructor for class org.openapitools.client.Configuration
-
 
-
containsIgnoreCase(String[], String) - Static method in class org.openapitools.client.StringUtil
-
-
Check if the given array contains the given value (with case-insensitive comparison).
-
-
contentLength() - Method in class org.openapitools.client.ProgressRequestBody
-
 
-
contentLength() - Method in class org.openapitools.client.ProgressResponseBody
-
 
-
contentType() - Method in class org.openapitools.client.ProgressRequestBody
-
 
-
contentType() - Method in class org.openapitools.client.ProgressResponseBody
-
 
-
create(Gson, TypeToken<T>) - Method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory
-
 
-
create(Gson, TypeToken<T>) - Method in class org.openapitools.client.model.CarbonIntensityDTO.CustomTypeAdapterFactory
-
 
-
create(Gson, TypeToken<T>) - Method in class org.openapitools.client.model.EmissionsData.CustomTypeAdapterFactory
-
 
-
create(Gson, TypeToken<T>) - Method in class org.openapitools.client.model.EmissionsDataDTO.CustomTypeAdapterFactory
-
 
-
create(Gson, TypeToken<T>) - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory
-
 
-
create(Gson, TypeToken<T>) - Method in class org.openapitools.client.model.EmissionsForecastDTO.CustomTypeAdapterFactory
-
 
-
create(Gson, TypeToken<T>) - Method in class org.openapitools.client.model.ValidationProblemDetails.CustomTypeAdapterFactory
-
 
-
createGson() - Static method in class org.openapitools.client.JSON
-
 
-
CustomTypeAdapterFactory() - Constructor for class org.openapitools.client.model.CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory
-
 
-
CustomTypeAdapterFactory() - Constructor for class org.openapitools.client.model.CarbonIntensityDTO.CustomTypeAdapterFactory
-
 
-
CustomTypeAdapterFactory() - Constructor for class org.openapitools.client.model.EmissionsData.CustomTypeAdapterFactory
-
 
-
CustomTypeAdapterFactory() - Constructor for class org.openapitools.client.model.EmissionsDataDTO.CustomTypeAdapterFactory
-
 
-
CustomTypeAdapterFactory() - Constructor for class org.openapitools.client.model.EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory
-
 
-
CustomTypeAdapterFactory() - Constructor for class org.openapitools.client.model.EmissionsForecastDTO.CustomTypeAdapterFactory
-
 
-
CustomTypeAdapterFactory() - Constructor for class org.openapitools.client.model.ValidationProblemDetails.CustomTypeAdapterFactory
-
 
-
-

D

-
-
dataEndAt(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
dataEndAt(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
dataStartAt(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
dataStartAt(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
DateTypeAdapter() - Constructor for class org.openapitools.client.JSON.DateTypeAdapter
-
 
-
DateTypeAdapter(DateFormat) - Constructor for class org.openapitools.client.JSON.DateTypeAdapter
-
 
-
defaultValue - Variable in class org.openapitools.client.ServerVariable
-
 
-
description - Variable in class org.openapitools.client.ServerConfiguration
-
 
-
description - Variable in class org.openapitools.client.ServerVariable
-
 
-
deserialize(String, Type) - Static method in class org.openapitools.client.JSON
-
-
Deserialize the given JSON string to Java object.
-
-
deserialize(Response, Type) - Method in class org.openapitools.client.ApiClient
-
-
Deserialize response body to Java object, according to the return type and - the Content-Type response header.
-
-
detail(String) - Method in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
downloadFileFromResponse(Response) - Method in class org.openapitools.client.ApiClient
-
-
Download file from the given response.
-
-
duration(Integer) - Method in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
duration(String) - Method in class org.openapitools.client.model.EmissionsData
-
 
-
-

E

-
-
EmissionsData - Class in org.openapitools.client.model
-
-
EmissionsData
-
-
EmissionsData() - Constructor for class org.openapitools.client.model.EmissionsData
-
 
-
EmissionsData.CustomTypeAdapterFactory - Class in org.openapitools.client.model
-
 
-
EmissionsDataDTO - Class in org.openapitools.client.model
-
-
EmissionsDataDTO
-
-
EmissionsDataDTO() - Constructor for class org.openapitools.client.model.EmissionsDataDTO
-
 
-
EmissionsDataDTO.CustomTypeAdapterFactory - Class in org.openapitools.client.model
-
 
-
EmissionsForecastBatchParametersDTO - Class in org.openapitools.client.model
-
-
EmissionsForecastBatchParametersDTO
-
-
EmissionsForecastBatchParametersDTO() - Constructor for class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory - Class in org.openapitools.client.model
-
 
-
EmissionsForecastDTO - Class in org.openapitools.client.model
-
-
EmissionsForecastDTO
-
-
EmissionsForecastDTO() - Constructor for class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
EmissionsForecastDTO.CustomTypeAdapterFactory - Class in org.openapitools.client.model
-
 
-
endTime(OffsetDateTime) - Method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
 
-
endTime(OffsetDateTime) - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
enumValues - Variable in class org.openapitools.client.ServerVariable
-
 
-
equals(Object) - Method in class org.openapitools.client.model.AbstractOpenApiSchema
-
 
-
equals(Object) - Method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
 
-
equals(Object) - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
equals(Object) - Method in class org.openapitools.client.model.EmissionsData
-
 
-
equals(Object) - Method in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
equals(Object) - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
equals(Object) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
equals(Object) - Method in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
escapeString(String) - Method in class org.openapitools.client.ApiClient
-
-
Escape the given string to be used as URL query value.
-
-
execute(Call) - Method in class org.openapitools.client.ApiClient
-
- -
-
execute(Call, Type) - Method in class org.openapitools.client.ApiClient
-
-
Execute HTTP call and deserialize the HTTP response body into the given return type.
-
-
executeAsync(Call, Type, ApiCallback<T>) - Method in class org.openapitools.client.ApiClient
-
-
Execute HTTP call asynchronously.
-
-
executeAsync(Call, ApiCallback<T>) - Method in class org.openapitools.client.ApiClient
-
- -
-
-

F

-
-
forecastData(List<EmissionsDataDTO>) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
fromJson(String) - Static method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
-
Create an instance of CarbonIntensityBatchParametersDTO given an JSON string
-
-
fromJson(String) - Static method in class org.openapitools.client.model.CarbonIntensityDTO
-
-
Create an instance of CarbonIntensityDTO given an JSON string
-
-
fromJson(String) - Static method in class org.openapitools.client.model.EmissionsData
-
-
Create an instance of EmissionsData given an JSON string
-
-
fromJson(String) - Static method in class org.openapitools.client.model.EmissionsDataDTO
-
-
Create an instance of EmissionsDataDTO given an JSON string
-
-
fromJson(String) - Static method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
-
Create an instance of EmissionsForecastBatchParametersDTO given an JSON string
-
-
fromJson(String) - Static method in class org.openapitools.client.model.EmissionsForecastDTO
-
-
Create an instance of EmissionsForecastDTO given an JSON string
-
-
fromJson(String) - Static method in class org.openapitools.client.model.ValidationProblemDetails
-
-
Create an instance of ValidationProblemDetails given an JSON string
-
-
-

G

-
-
generatedAt(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
getActualInstance() - Method in class org.openapitools.client.model.AbstractOpenApiSchema
-
-
Get the actual instance
-
-
getActualInstanceRecursively() - Method in class org.openapitools.client.model.AbstractOpenApiSchema
-
-
Get the instant recursively when the schemas defined in oneOf/anyof happen to be oneOf/anyOf schema as well
-
-
getApiClient() - Method in class org.openapitools.client.api.CarbonAwareApi
-
 
-
getApiKey() - Method in class org.openapitools.client.auth.ApiKeyAuth
-
 
-
getApiKeyPrefix() - Method in class org.openapitools.client.auth.ApiKeyAuth
-
 
-
getAuthentication(String) - Method in class org.openapitools.client.ApiClient
-
-
Get authentication for the given name.
-
-
getAuthentications() - Method in class org.openapitools.client.ApiClient
-
-
Get authentications (key: authentication name, value: authentication).
-
-
getAverageCarbonIntensity(String, OffsetDateTime, OffsetDateTime) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Retrieves the measured carbon intensity data between the time boundaries and calculates the average carbon intensity during that period.
-
-
getAverageCarbonIntensityAsync(String, OffsetDateTime, OffsetDateTime, ApiCallback<CarbonIntensityDTO>) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Retrieves the measured carbon intensity data between the time boundaries and calculates the average carbon intensity during that period.
-
-
getAverageCarbonIntensityBatch(List<CarbonIntensityBatchParametersDTO>) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Given an array of request objects, each with their own location and time boundaries, calculate the average carbon intensity for that location and time period and return an array of carbon intensity objects.
-
-
getAverageCarbonIntensityBatchAsync(List<CarbonIntensityBatchParametersDTO>, ApiCallback<List<CarbonIntensityDTO>>) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Given an array of request objects, each with their own location and time boundaries, calculate the average carbon intensity for that location and time period and return an array of carbon intensity objects.
-
-
getAverageCarbonIntensityBatchCall(List<CarbonIntensityBatchParametersDTO>, ApiCallback) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Build call for getAverageCarbonIntensityBatch
-
-
getAverageCarbonIntensityBatchWithHttpInfo(List<CarbonIntensityBatchParametersDTO>) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Given an array of request objects, each with their own location and time boundaries, calculate the average carbon intensity for that location and time period and return an array of carbon intensity objects.
-
-
getAverageCarbonIntensityCall(String, OffsetDateTime, OffsetDateTime, ApiCallback) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Build call for getAverageCarbonIntensity
-
-
getAverageCarbonIntensityWithHttpInfo(String, OffsetDateTime, OffsetDateTime) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Retrieves the measured carbon intensity data between the time boundaries and calculates the average carbon intensity during that period.
-
-
getBasePath() - Method in class org.openapitools.client.ApiClient
-
-
Get base path
-
-
getBearerToken() - Method in class org.openapitools.client.auth.HttpBearerAuth
-
-
Gets the token, which together with the scheme, will be sent as the value of the Authorization header.
-
-
getBestEmissionsDataForLocationsByTime(List<String>, OffsetDateTime, OffsetDateTime) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Calculate the best emission data by list of locations for a specified time period.
-
-
getBestEmissionsDataForLocationsByTimeAsync(List<String>, OffsetDateTime, OffsetDateTime, ApiCallback<List<EmissionsData>>) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Calculate the best emission data by list of locations for a specified time period.
-
-
getBestEmissionsDataForLocationsByTimeCall(List<String>, OffsetDateTime, OffsetDateTime, ApiCallback) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Build call for getBestEmissionsDataForLocationsByTime
-
-
getBestEmissionsDataForLocationsByTimeWithHttpInfo(List<String>, OffsetDateTime, OffsetDateTime) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Calculate the best emission data by list of locations for a specified time period.
-
-
getCarbonIntensity() - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
-
Value of the marginal carbon intensity in grams per kilowatt-hour.
-
-
getCode() - Method in exception class org.openapitools.client.ApiException
-
-
Get the HTTP status code.
-
-
getConnectTimeout() - Method in class org.openapitools.client.ApiClient
-
-
Get connection timeout (in milliseconds).
-
-
getCurrentForecastData(List<String>, OffsetDateTime, OffsetDateTime, Integer) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Retrieves the most recent forecasted data and calculates the optimal marginal carbon intensity window.
-
-
getCurrentForecastDataAsync(List<String>, OffsetDateTime, OffsetDateTime, Integer, ApiCallback<List<EmissionsForecastDTO>>) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Retrieves the most recent forecasted data and calculates the optimal marginal carbon intensity window.
-
-
getCurrentForecastDataCall(List<String>, OffsetDateTime, OffsetDateTime, Integer, ApiCallback) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Build call for getCurrentForecastData
-
-
getCurrentForecastDataWithHttpInfo(List<String>, OffsetDateTime, OffsetDateTime, Integer) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Retrieves the most recent forecasted data and calculates the optimal marginal carbon intensity window.
-
-
getCustomBaseUrl() - Method in class org.openapitools.client.api.CarbonAwareApi
-
 
-
getData() - Method in class org.openapitools.client.ApiResponse
-
-
Get the data.
-
-
getDataEndAt() - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
-
End time boundary of forecasted data points.
-
-
getDataEndAt() - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
-
End time boundary of forecasted data points.
-
-
getDataStartAt() - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
-
Start time boundary of forecasted data points.Ignores current forecast data points before this time.
-
-
getDataStartAt() - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
-
Start time boundary of forecasted data points.
-
-
getDateFormat() - Method in class org.openapitools.client.ApiClient
-
-
Getter for the field dateFormat.
-
-
getDefaultApiClient() - Static method in class org.openapitools.client.Configuration
-
-
Get the default API client, which would be used when creating API - instances without providing an API client.
-
-
getDetail() - Method in class org.openapitools.client.model.ValidationProblemDetails
-
-
Get detail
-
-
getDuration() - Method in class org.openapitools.client.model.EmissionsData
-
-
Get duration
-
-
getDuration() - Method in class org.openapitools.client.model.EmissionsDataDTO
-
-
Get duration
-
-
getEmissionsDataForLocationByTime(String, OffsetDateTime, OffsetDateTime) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Calculate the best emission data by location for a specified time period.
-
-
getEmissionsDataForLocationByTimeAsync(String, OffsetDateTime, OffsetDateTime, ApiCallback<List<EmissionsData>>) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Calculate the best emission data by location for a specified time period.
-
-
getEmissionsDataForLocationByTimeCall(String, OffsetDateTime, OffsetDateTime, ApiCallback) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Build call for getEmissionsDataForLocationByTime
-
-
getEmissionsDataForLocationByTimeWithHttpInfo(String, OffsetDateTime, OffsetDateTime) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Calculate the best emission data by location for a specified time period.
-
-
getEmissionsDataForLocationsByTime(List<String>, OffsetDateTime, OffsetDateTime) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Calculate the observed emission data by list of locations for a specified time period.
-
-
getEmissionsDataForLocationsByTimeAsync(List<String>, OffsetDateTime, OffsetDateTime, ApiCallback<List<EmissionsData>>) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Calculate the observed emission data by list of locations for a specified time period.
-
-
getEmissionsDataForLocationsByTimeCall(List<String>, OffsetDateTime, OffsetDateTime, ApiCallback) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Build call for getEmissionsDataForLocationsByTime
-
-
getEmissionsDataForLocationsByTimeWithHttpInfo(List<String>, OffsetDateTime, OffsetDateTime) - Method in class org.openapitools.client.api.CarbonAwareApi
-
-
Calculate the observed emission data by list of locations for a specified time period.
-
-
getEndTime() - Method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
-
The time at which the workflow we are measuring carbon intensity for ended
-
-
getEndTime() - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
-
the time at which the workflow we are measuring carbon intensity for ended
-
-
getErrors() - Method in class org.openapitools.client.model.ValidationProblemDetails
-
-
Get errors
-
-
getForecastData() - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
-
The forecasted data points transformed and filtered to reflect the specified time and window parameters.
-
-
getGeneratedAt() - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
-
Timestamp when the forecast was generated.
-
-
getGson() - Static method in class org.openapitools.client.JSON
-
-
Get Gson.
-
-
getHeaders() - Method in class org.openapitools.client.ApiResponse
-
-
Get the headers.
-
-
getHostIndex() - Method in class org.openapitools.client.api.CarbonAwareApi
-
 
-
getHttpClient() - Method in class org.openapitools.client.ApiClient
-
-
Get HTTP client
-
-
getInstance() - Method in class org.openapitools.client.model.ValidationProblemDetails
-
-
Get instance
-
-
getJSON() - Method in class org.openapitools.client.ApiClient
-
-
Get JSON
-
-
getKeyManagers() - Method in class org.openapitools.client.ApiClient
-
-
Getter for the field keyManagers.
-
-
getLocation() - Method in class org.openapitools.client.auth.ApiKeyAuth
-
 
-
getLocation() - Method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
-
The location name where workflow is run
-
-
getLocation() - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
-
the location name where workflow is run
-
-
getLocation() - Method in class org.openapitools.client.model.EmissionsData
-
-
Get location
-
-
getLocation() - Method in class org.openapitools.client.model.EmissionsDataDTO
-
-
Get location
-
-
getLocation() - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
-
The location of the forecast
-
-
getLocation() - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
-
The location of the forecast
-
-
getMessage() - Method in exception class org.openapitools.client.ApiException
-
-
Get the exception message including HTTP response data.
-
-
getName() - Method in class org.openapitools.client.Pair
-
 
-
getOptimalDataPoints() - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
-
The optimal forecasted data point within the 'forecastData' array.
-
-
getParamName() - Method in class org.openapitools.client.auth.ApiKeyAuth
-
 
-
getPassword() - Method in class org.openapitools.client.auth.HttpBasicAuth
-
 
-
getRating() - Method in class org.openapitools.client.model.EmissionsData
-
-
Get rating
-
-
getReadTimeout() - Method in class org.openapitools.client.ApiClient
-
-
Get read timeout (in milliseconds).
-
-
getRequestedAt() - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
-
For historical forecast requests, this value is the timestamp used to access the most recently generated forecast as of that time.
-
-
getRequestedAt() - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
-
For current requests, this value is the timestamp the request for forecast data was made.
-
-
getResponseBody() - Method in exception class org.openapitools.client.ApiException
-
-
Get the HTTP response body.
-
-
getResponseHeaders() - Method in exception class org.openapitools.client.ApiException
-
-
Get the HTTP response headers.
-
-
getSchemas() - Method in class org.openapitools.client.model.AbstractOpenApiSchema
-
-
Get the list of oneOf/anyOf composed schemas allowed to be stored in this object
-
-
getSchemaType() - Method in class org.openapitools.client.model.AbstractOpenApiSchema
-
-
Get the schema type (e.g.
-
-
getSslCaCert() - Method in class org.openapitools.client.ApiClient
-
-
Get SSL CA cert.
-
-
getStartTime() - Method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
-
The time at which the workflow we are measuring carbon intensity for started
-
-
getStartTime() - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
-
the time at which the workflow we are measuring carbon intensity for started
-
-
getStatus() - Method in class org.openapitools.client.model.ValidationProblemDetails
-
-
Get status
-
-
getStatusCode() - Method in class org.openapitools.client.ApiResponse
-
-
Get the status code.
-
-
getTempFolderPath() - Method in class org.openapitools.client.ApiClient
-
-
The path of temporary folder used to store downloaded files from endpoints - with file response.
-
-
getTime() - Method in class org.openapitools.client.model.EmissionsData
-
-
Get time
-
-
getTimestamp() - Method in class org.openapitools.client.model.EmissionsDataDTO
-
-
Get timestamp
-
-
getTitle() - Method in class org.openapitools.client.model.ValidationProblemDetails
-
-
Get title
-
-
getType() - Method in class org.openapitools.client.model.ValidationProblemDetails
-
-
Get type
-
-
getUsername() - Method in class org.openapitools.client.auth.HttpBasicAuth
-
 
-
getValue() - Method in class org.openapitools.client.model.EmissionsDataDTO
-
-
Get value
-
-
getValue() - Method in class org.openapitools.client.Pair
-
 
-
getWindowSize() - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
-
The estimated duration (in minutes) of the workload.
-
-
getWindowSize() - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
-
The estimated duration (in minutes) of the workload.
-
-
getWriteTimeout() - Method in class org.openapitools.client.ApiClient
-
-
Get write timeout (in milliseconds).
-
-
guessContentTypeFromFile(File) - Method in class org.openapitools.client.ApiClient
-
-
Guess Content-Type header from the given file (defaults to "application/octet-stream").
-
-
-

H

-
-
handleResponse(Response, Type) - Method in class org.openapitools.client.ApiClient
-
-
Handle the given response, return the deserialized object when the response is successful.
-
-
hashCode() - Method in class org.openapitools.client.model.AbstractOpenApiSchema
-
 
-
hashCode() - Method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
 
-
hashCode() - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
hashCode() - Method in class org.openapitools.client.model.EmissionsData
-
 
-
hashCode() - Method in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
hashCode() - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
hashCode() - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
hashCode() - Method in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
HttpBasicAuth - Class in org.openapitools.client.auth
-
 
-
HttpBasicAuth() - Constructor for class org.openapitools.client.auth.HttpBasicAuth
-
 
-
HttpBearerAuth - Class in org.openapitools.client.auth
-
 
-
HttpBearerAuth(String) - Constructor for class org.openapitools.client.auth.HttpBearerAuth
-
 
-
-

I

-
-
instance(String) - Method in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
isDebugging() - Method in class org.openapitools.client.ApiClient
-
-
Check that whether debugging is enabled for this API client.
-
-
isJsonMime(String) - Method in class org.openapitools.client.ApiClient
-
-
Check if the given MIME is a JSON MIME.
-
-
isNullable() - Method in class org.openapitools.client.model.AbstractOpenApiSchema
-
-
Is nullable
-
-
isVerifyingSsl() - Method in class org.openapitools.client.ApiClient
-
-
True if isVerifyingSsl flag is on
-
-
-

J

-
-
join(String[], String) - Static method in class org.openapitools.client.StringUtil
-
-
Join an array of strings with the given separator.
-
-
join(Collection<String>, String) - Static method in class org.openapitools.client.StringUtil
-
-
Join a list of strings with the given separator.
-
-
JSON - Class in org.openapitools.client
-
 
-
JSON() - Constructor for class org.openapitools.client.JSON
-
 
-
JSON.ByteArrayAdapter - Class in org.openapitools.client
-
-
Gson TypeAdapter for Byte Array type
-
-
JSON.DateTypeAdapter - Class in org.openapitools.client
-
-
Gson TypeAdapter for java.util.Date type - If the dateFormat is null, ISO8601Utils will be used.
-
-
JSON.LocalDateTypeAdapter - Class in org.openapitools.client
-
-
Gson TypeAdapter for JSR310 LocalDate type
-
-
JSON.OffsetDateTimeTypeAdapter - Class in org.openapitools.client
-
-
Gson TypeAdapter for JSR310 OffsetDateTime type
-
-
JSON.SqlDateTypeAdapter - Class in org.openapitools.client
-
-
Gson TypeAdapter for java.sql.Date type - If the dateFormat is null, a simple "yyyy-MM-dd" format will be used - (more efficient than SimpleDateFormat).
-
-
-

L

-
-
LocalDateTypeAdapter() - Constructor for class org.openapitools.client.JSON.LocalDateTypeAdapter
-
 
-
LocalDateTypeAdapter(DateTimeFormatter) - Constructor for class org.openapitools.client.JSON.LocalDateTypeAdapter
-
 
-
location(String) - Method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
 
-
location(String) - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
location(String) - Method in class org.openapitools.client.model.EmissionsData
-
 
-
location(String) - Method in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
location(String) - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
location(String) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
-

O

-
-
OffsetDateTimeTypeAdapter() - Constructor for class org.openapitools.client.JSON.OffsetDateTimeTypeAdapter
-
 
-
OffsetDateTimeTypeAdapter(DateTimeFormatter) - Constructor for class org.openapitools.client.JSON.OffsetDateTimeTypeAdapter
-
 
-
onDownloadProgress(long, long, boolean) - Method in interface org.openapitools.client.ApiCallback
-
-
This is called when the API download processing.
-
-
onFailure(ApiException, int, Map<String, List<String>>) - Method in interface org.openapitools.client.ApiCallback
-
-
This is called when the API call fails.
-
-
onSuccess(T, int, Map<String, List<String>>) - Method in interface org.openapitools.client.ApiCallback
-
-
This is called when the API call succeeded.
-
-
onUploadProgress(long, long, boolean) - Method in interface org.openapitools.client.ApiCallback
-
-
This is called when the API upload processing.
-
-
openapiFields - Static variable in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
 
-
openapiFields - Static variable in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
openapiFields - Static variable in class org.openapitools.client.model.EmissionsData
-
 
-
openapiFields - Static variable in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
openapiFields - Static variable in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
openapiFields - Static variable in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
openapiFields - Static variable in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
openapiRequiredFields - Static variable in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
 
-
openapiRequiredFields - Static variable in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
openapiRequiredFields - Static variable in class org.openapitools.client.model.EmissionsData
-
 
-
openapiRequiredFields - Static variable in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
openapiRequiredFields - Static variable in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
openapiRequiredFields - Static variable in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
openapiRequiredFields - Static variable in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
optimalDataPoints(List<EmissionsDataDTO>) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
org.openapitools.client - package org.openapitools.client
-
 
-
org.openapitools.client.api - package org.openapitools.client.api
-
 
-
org.openapitools.client.auth - package org.openapitools.client.auth
-
 
-
org.openapitools.client.model - package org.openapitools.client.model
-
 
-
-

P

-
-
Pair - Class in org.openapitools.client
-
 
-
Pair(String, String) - Constructor for class org.openapitools.client.Pair
-
 
-
parameterToPair(String, Object) - Method in class org.openapitools.client.ApiClient
-
-
Formats the specified query parameter to a list containing a single Pair object.
-
-
parameterToPairs(String, String, Collection) - Method in class org.openapitools.client.ApiClient
-
-
Formats the specified collection query parameters to a list of Pair objects.
-
-
parameterToString(Object) - Method in class org.openapitools.client.ApiClient
-
-
Format the given parameter object into string.
-
-
prepareDownloadFile(Response) - Method in class org.openapitools.client.ApiClient
-
-
Prepare file for download
-
-
processCookieParams(Map<String, String>, Request.Builder) - Method in class org.openapitools.client.ApiClient
-
-
Set cookie parameters to the request builder, including default cookies.
-
-
processHeaderParams(Map<String, String>, Request.Builder) - Method in class org.openapitools.client.ApiClient
-
-
Set header parameters to the request builder, including default headers.
-
-
ProgressRequestBody - Class in org.openapitools.client
-
 
-
ProgressRequestBody(RequestBody, ApiCallback) - Constructor for class org.openapitools.client.ProgressRequestBody
-
 
-
ProgressResponseBody - Class in org.openapitools.client
-
 
-
ProgressResponseBody(ResponseBody, ApiCallback) - Constructor for class org.openapitools.client.ProgressResponseBody
-
 
-
-

R

-
-
rating(Double) - Method in class org.openapitools.client.model.EmissionsData
-
 
-
read(JsonReader) - Method in class org.openapitools.client.JSON.ByteArrayAdapter
-
 
-
read(JsonReader) - Method in class org.openapitools.client.JSON.DateTypeAdapter
-
 
-
read(JsonReader) - Method in class org.openapitools.client.JSON.LocalDateTypeAdapter
-
 
-
read(JsonReader) - Method in class org.openapitools.client.JSON.OffsetDateTimeTypeAdapter
-
 
-
read(JsonReader) - Method in class org.openapitools.client.JSON.SqlDateTypeAdapter
-
 
-
requestedAt(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
requestedAt(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
-

S

-
-
sanitizeFilename(String) - Method in class org.openapitools.client.ApiClient
-
-
Sanitize filename by removing path.
-
-
selectHeaderAccept(String[]) - Method in class org.openapitools.client.ApiClient
-
-
Select the Accept header's value from the given accepts array: - if JSON exists in the given array, use it; - otherwise use all of them (joining into a string)
-
-
selectHeaderContentType(String[]) - Method in class org.openapitools.client.ApiClient
-
-
Select the Content-Type header's value from the given array: - if JSON exists in the given array, use it; - otherwise use the first one of the array.
-
-
serialize(Object) - Static method in class org.openapitools.client.JSON
-
-
Serialize the given Java object into JSON string.
-
-
serialize(Object, String) - Method in class org.openapitools.client.ApiClient
-
-
Serialize the given Java object into request body according to the object's - class and the request Content-Type.
-
-
SERIALIZED_NAME_CARBON_INTENSITY - Static variable in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
SERIALIZED_NAME_DATA_END_AT - Static variable in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
SERIALIZED_NAME_DATA_END_AT - Static variable in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
SERIALIZED_NAME_DATA_START_AT - Static variable in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
SERIALIZED_NAME_DATA_START_AT - Static variable in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
SERIALIZED_NAME_DETAIL - Static variable in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
SERIALIZED_NAME_DURATION - Static variable in class org.openapitools.client.model.EmissionsData
-
 
-
SERIALIZED_NAME_DURATION - Static variable in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
SERIALIZED_NAME_END_TIME - Static variable in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
 
-
SERIALIZED_NAME_END_TIME - Static variable in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
SERIALIZED_NAME_ERRORS - Static variable in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
SERIALIZED_NAME_FORECAST_DATA - Static variable in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
SERIALIZED_NAME_GENERATED_AT - Static variable in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
SERIALIZED_NAME_INSTANCE - Static variable in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
SERIALIZED_NAME_LOCATION - Static variable in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
 
-
SERIALIZED_NAME_LOCATION - Static variable in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
SERIALIZED_NAME_LOCATION - Static variable in class org.openapitools.client.model.EmissionsData
-
 
-
SERIALIZED_NAME_LOCATION - Static variable in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
SERIALIZED_NAME_LOCATION - Static variable in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
SERIALIZED_NAME_LOCATION - Static variable in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
SERIALIZED_NAME_OPTIMAL_DATA_POINTS - Static variable in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
SERIALIZED_NAME_RATING - Static variable in class org.openapitools.client.model.EmissionsData
-
 
-
SERIALIZED_NAME_REQUESTED_AT - Static variable in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
SERIALIZED_NAME_REQUESTED_AT - Static variable in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
SERIALIZED_NAME_START_TIME - Static variable in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
 
-
SERIALIZED_NAME_START_TIME - Static variable in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
SERIALIZED_NAME_STATUS - Static variable in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
SERIALIZED_NAME_TIME - Static variable in class org.openapitools.client.model.EmissionsData
-
 
-
SERIALIZED_NAME_TIMESTAMP - Static variable in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
SERIALIZED_NAME_TITLE - Static variable in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
SERIALIZED_NAME_TYPE - Static variable in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
SERIALIZED_NAME_VALUE - Static variable in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
SERIALIZED_NAME_WINDOW_SIZE - Static variable in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
SERIALIZED_NAME_WINDOW_SIZE - Static variable in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
ServerConfiguration - Class in org.openapitools.client
-
-
Representing a Server configuration.
-
-
ServerConfiguration(String, String, Map<String, ServerVariable>) - Constructor for class org.openapitools.client.ServerConfiguration
-
 
-
ServerVariable - Class in org.openapitools.client
-
-
Representing a Server Variable for server URL template substitution.
-
-
ServerVariable(String, String, HashSet<String>) - Constructor for class org.openapitools.client.ServerVariable
-
 
-
setAccessToken(String) - Method in class org.openapitools.client.ApiClient
-
-
Helper method to set access token for the first OAuth2 authentication.
-
-
setActualInstance(Object) - Method in class org.openapitools.client.model.AbstractOpenApiSchema
-
-
Set the actual instance
-
-
setApiClient(ApiClient) - Method in class org.openapitools.client.api.CarbonAwareApi
-
 
-
setApiKey(String) - Method in class org.openapitools.client.ApiClient
-
-
Helper method to set API key value for the first API key authentication.
-
-
setApiKey(String) - Method in class org.openapitools.client.auth.ApiKeyAuth
-
 
-
setApiKeyPrefix(String) - Method in class org.openapitools.client.ApiClient
-
-
Helper method to set API key prefix for the first API key authentication.
-
-
setApiKeyPrefix(String) - Method in class org.openapitools.client.auth.ApiKeyAuth
-
 
-
setBasePath(String) - Method in class org.openapitools.client.ApiClient
-
-
Set base path
-
-
setBearerToken(String) - Method in class org.openapitools.client.auth.HttpBearerAuth
-
-
Sets the token, which together with the scheme, will be sent as the value of the Authorization header.
-
-
setCarbonIntensity(Double) - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
setConnectTimeout(int) - Method in class org.openapitools.client.ApiClient
-
-
Sets the connect timeout (in milliseconds).
-
-
setCustomBaseUrl(String) - Method in class org.openapitools.client.api.CarbonAwareApi
-
 
-
setDataEndAt(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
setDataEndAt(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
setDataStartAt(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
setDataStartAt(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
setDateFormat(DateFormat) - Method in class org.openapitools.client.ApiClient
-
-
Setter for the field dateFormat.
-
-
setDateFormat(DateFormat) - Static method in class org.openapitools.client.JSON
-
 
-
setDebugging(boolean) - Method in class org.openapitools.client.ApiClient
-
-
Enable/disable debugging for this API client.
-
-
setDefaultApiClient(ApiClient) - Static method in class org.openapitools.client.Configuration
-
-
Set the default API client, which would be used when creating API - instances without providing an API client.
-
-
setDetail(String) - Method in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
setDuration(Integer) - Method in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
setDuration(String) - Method in class org.openapitools.client.model.EmissionsData
-
 
-
setEndTime(OffsetDateTime) - Method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
 
-
setEndTime(OffsetDateTime) - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
setForecastData(List<EmissionsDataDTO>) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
setFormat(DateFormat) - Method in class org.openapitools.client.JSON.DateTypeAdapter
-
 
-
setFormat(DateFormat) - Method in class org.openapitools.client.JSON.SqlDateTypeAdapter
-
 
-
setFormat(DateTimeFormatter) - Method in class org.openapitools.client.JSON.LocalDateTypeAdapter
-
 
-
setFormat(DateTimeFormatter) - Method in class org.openapitools.client.JSON.OffsetDateTimeTypeAdapter
-
 
-
setGeneratedAt(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
setGson(Gson) - Static method in class org.openapitools.client.JSON
-
-
Set Gson.
-
-
setHostIndex(int) - Method in class org.openapitools.client.api.CarbonAwareApi
-
 
-
setHttpClient(OkHttpClient) - Method in class org.openapitools.client.ApiClient
-
-
Set HTTP client, which must never be null.
-
-
setInstance(String) - Method in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
setJSON(JSON) - Method in class org.openapitools.client.ApiClient
-
-
Set JSON
-
-
setKeyManagers(KeyManager[]) - Method in class org.openapitools.client.ApiClient
-
-
Configure client keys to use for authorization in an SSL session.
-
-
setLenientOnJson(boolean) - Method in class org.openapitools.client.ApiClient
-
-
Set LenientOnJson.
-
-
setLenientOnJson(boolean) - Static method in class org.openapitools.client.JSON
-
 
-
setLocalDateFormat(DateTimeFormatter) - Method in class org.openapitools.client.ApiClient
-
-
Set LocalDateFormat.
-
-
setLocalDateFormat(DateTimeFormatter) - Static method in class org.openapitools.client.JSON
-
 
-
setLocation(String) - Method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
 
-
setLocation(String) - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
setLocation(String) - Method in class org.openapitools.client.model.EmissionsData
-
 
-
setLocation(String) - Method in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
setLocation(String) - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
setLocation(String) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
setOffsetDateTimeFormat(DateTimeFormatter) - Method in class org.openapitools.client.ApiClient
-
-
Set OffsetDateTimeFormat.
-
-
setOffsetDateTimeFormat(DateTimeFormatter) - Static method in class org.openapitools.client.JSON
-
 
-
setOptimalDataPoints(List<EmissionsDataDTO>) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
setPassword(String) - Method in class org.openapitools.client.ApiClient
-
-
Helper method to set password for the first HTTP basic authentication.
-
-
setPassword(String) - Method in class org.openapitools.client.auth.HttpBasicAuth
-
 
-
setRating(Double) - Method in class org.openapitools.client.model.EmissionsData
-
 
-
setReadTimeout(int) - Method in class org.openapitools.client.ApiClient
-
-
Sets the read timeout (in milliseconds).
-
-
setRequestedAt(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
setRequestedAt(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
setSqlDateFormat(DateFormat) - Method in class org.openapitools.client.ApiClient
-
-
Set SqlDateFormat.
-
-
setSqlDateFormat(DateFormat) - Static method in class org.openapitools.client.JSON
-
 
-
setSslCaCert(InputStream) - Method in class org.openapitools.client.ApiClient
-
-
Configure the CA certificate to be trusted when making https requests.
-
-
setStartTime(OffsetDateTime) - Method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
 
-
setStartTime(OffsetDateTime) - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
setStatus(Integer) - Method in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
setTempFolderPath(String) - Method in class org.openapitools.client.ApiClient
-
-
Set the temporary folder path (for downloading files)
-
-
setTime(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsData
-
 
-
setTimestamp(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
setTitle(String) - Method in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
setType(String) - Method in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
setUserAgent(String) - Method in class org.openapitools.client.ApiClient
-
-
Set the User-Agent header's value (by adding to the default header map).
-
-
setUsername(String) - Method in class org.openapitools.client.ApiClient
-
-
Helper method to set username for the first HTTP basic authentication.
-
-
setUsername(String) - Method in class org.openapitools.client.auth.HttpBasicAuth
-
 
-
setValue(Double) - Method in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
setVerifyingSsl(boolean) - Method in class org.openapitools.client.ApiClient
-
-
Configure whether to verify certificate and hostname when making https requests.
-
-
setWindowSize(Integer) - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
setWindowSize(Integer) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
setWriteTimeout(int) - Method in class org.openapitools.client.ApiClient
-
-
Sets the write timeout (in milliseconds).
-
-
source() - Method in class org.openapitools.client.ProgressResponseBody
-
 
-
SqlDateTypeAdapter() - Constructor for class org.openapitools.client.JSON.SqlDateTypeAdapter
-
 
-
SqlDateTypeAdapter(DateFormat) - Constructor for class org.openapitools.client.JSON.SqlDateTypeAdapter
-
 
-
startTime(OffsetDateTime) - Method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
 
-
startTime(OffsetDateTime) - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
status(Integer) - Method in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
StringUtil - Class in org.openapitools.client
-
 
-
StringUtil() - Constructor for class org.openapitools.client.StringUtil
-
 
-
-

T

-
-
time(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsData
-
 
-
timestamp(OffsetDateTime) - Method in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
title(String) - Method in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
toJson() - Method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
-
Convert an instance of CarbonIntensityBatchParametersDTO to an JSON string
-
-
toJson() - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
-
Convert an instance of CarbonIntensityDTO to an JSON string
-
-
toJson() - Method in class org.openapitools.client.model.EmissionsData
-
-
Convert an instance of EmissionsData to an JSON string
-
-
toJson() - Method in class org.openapitools.client.model.EmissionsDataDTO
-
-
Convert an instance of EmissionsDataDTO to an JSON string
-
-
toJson() - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
-
Convert an instance of EmissionsForecastBatchParametersDTO to an JSON string
-
-
toJson() - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
-
Convert an instance of EmissionsForecastDTO to an JSON string
-
-
toJson() - Method in class org.openapitools.client.model.ValidationProblemDetails
-
-
Convert an instance of ValidationProblemDetails to an JSON string
-
-
toString() - Method in class org.openapitools.client.model.AbstractOpenApiSchema
-
 
-
toString() - Method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
 
-
toString() - Method in class org.openapitools.client.model.CarbonIntensityDTO
-
 
-
toString() - Method in class org.openapitools.client.model.EmissionsData
-
 
-
toString() - Method in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
toString() - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
toString() - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
toString() - Method in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
type(String) - Method in class org.openapitools.client.model.ValidationProblemDetails
-
 
-
-

U

-
-
updateParamsForAuth(String[], List<Pair>, Map<String, String>, Map<String, String>, String, String, URI) - Method in class org.openapitools.client.ApiClient
-
-
Update query and header parameters based on authentication settings.
-
-
URL - Variable in class org.openapitools.client.ServerConfiguration
-
 
-
URL() - Method in class org.openapitools.client.ServerConfiguration
-
-
Format URL template using default server variables.
-
-
URL(Map<String, String>) - Method in class org.openapitools.client.ServerConfiguration
-
-
Format URL template using given variables.
-
-
-

V

-
-
validateJsonObject(JsonObject) - Static method in class org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
-
Validates the JSON Object and throws an exception if issues found
-
-
validateJsonObject(JsonObject) - Static method in class org.openapitools.client.model.CarbonIntensityDTO
-
-
Validates the JSON Object and throws an exception if issues found
-
-
validateJsonObject(JsonObject) - Static method in class org.openapitools.client.model.EmissionsData
-
-
Validates the JSON Object and throws an exception if issues found
-
-
validateJsonObject(JsonObject) - Static method in class org.openapitools.client.model.EmissionsDataDTO
-
-
Validates the JSON Object and throws an exception if issues found
-
-
validateJsonObject(JsonObject) - Static method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
-
Validates the JSON Object and throws an exception if issues found
-
-
validateJsonObject(JsonObject) - Static method in class org.openapitools.client.model.EmissionsForecastDTO
-
-
Validates the JSON Object and throws an exception if issues found
-
-
validateJsonObject(JsonObject) - Static method in class org.openapitools.client.model.ValidationProblemDetails
-
-
Validates the JSON Object and throws an exception if issues found
-
-
ValidationProblemDetails - Class in org.openapitools.client.model
-
-
ValidationProblemDetails
-
-
ValidationProblemDetails() - Constructor for class org.openapitools.client.model.ValidationProblemDetails
-
 
-
ValidationProblemDetails(Map<String, List<String>>) - Constructor for class org.openapitools.client.model.ValidationProblemDetails
-
 
-
ValidationProblemDetails.CustomTypeAdapterFactory - Class in org.openapitools.client.model
-
 
-
value(Double) - Method in class org.openapitools.client.model.EmissionsDataDTO
-
 
-
variables - Variable in class org.openapitools.client.ServerConfiguration
-
 
-
-

W

-
-
windowSize(Integer) - Method in class org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
 
-
windowSize(Integer) - Method in class org.openapitools.client.model.EmissionsForecastDTO
-
 
-
write(JsonWriter, byte[]) - Method in class org.openapitools.client.JSON.ByteArrayAdapter
-
 
-
write(JsonWriter, Date) - Method in class org.openapitools.client.JSON.SqlDateTypeAdapter
-
 
-
write(JsonWriter, LocalDate) - Method in class org.openapitools.client.JSON.LocalDateTypeAdapter
-
 
-
write(JsonWriter, OffsetDateTime) - Method in class org.openapitools.client.JSON.OffsetDateTimeTypeAdapter
-
 
-
write(JsonWriter, Date) - Method in class org.openapitools.client.JSON.DateTypeAdapter
-
 
-
writeTo(BufferedSink) - Method in class org.openapitools.client.ProgressRequestBody
-
 
-
-A B C D E F G H I J L O P R S T U V W 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
- -
-
- - diff --git a/samples/java-client/apidocs/index.html b/samples/java-client/apidocs/index.html deleted file mode 100644 index bf0487d7c..000000000 --- a/samples/java-client/apidocs/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - -Overview (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

openapi-java-client 1.0 API

-
- -
- -
-
- - diff --git a/samples/java-client/apidocs/jquery-ui.overrides.css b/samples/java-client/apidocs/jquery-ui.overrides.css deleted file mode 100644 index f89acb632..000000000 --- a/samples/java-client/apidocs/jquery-ui.overrides.css +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved. - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * This code is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 only, as - * published by the Free Software Foundation. Oracle designates this - * particular file as subject to the "Classpath" exception as provided - * by Oracle in the LICENSE file that accompanied this code. - * - * This code is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - * version 2 for more details (a copy is included in the LICENSE file that - * accompanied this code). - * - * You should have received a copy of the GNU General Public License version - * 2 along with this work; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. - * - * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA - * or visit www.oracle.com if you need additional information or have any - * questions. - */ - -.ui-state-active, -.ui-widget-content .ui-state-active, -.ui-widget-header .ui-state-active, -a.ui-button:active, -.ui-button:active, -.ui-button.ui-state-active:hover { - /* Overrides the color of selection used in jQuery UI */ - background: #F8981D; -} diff --git a/samples/java-client/apidocs/legal/ASSEMBLY_EXCEPTION b/samples/java-client/apidocs/legal/ASSEMBLY_EXCEPTION deleted file mode 100644 index 16c84707d..000000000 --- a/samples/java-client/apidocs/legal/ASSEMBLY_EXCEPTION +++ /dev/null @@ -1,27 +0,0 @@ - -OPENJDK ASSEMBLY EXCEPTION - -The OpenJDK source code made available by Oracle America, Inc. (Oracle) at -openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU -General Public License [http://www.gnu.org/copyleft/gpl.html](http://www.gnu.org/copyleft/gpl.html) version 2 -only ("GPL2"), with the following clarification and special exception. - - Linking this OpenJDK Code statically or dynamically with other code - is making a combined work based on this library. Thus, the terms - and conditions of GPL2 cover the whole combination. - - As a special exception, Oracle gives you permission to link this - OpenJDK Code with certain code licensed by Oracle as indicated at - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - ("Designated Exception Modules") to produce an executable, - regardless of the license terms of the Designated Exception Modules, - and to copy and distribute the resulting executable under GPL2, - provided that the Designated Exception Modules continue to be - governed by the licenses under which they were offered by Oracle. - -As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code -to build an executable that includes those portions of necessary code that -Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 -with the Classpath exception). If you modify or add to the OpenJDK code, -that new GPL2 code may still be combined with Designated Exception Modules -if the new code is made subject to this exception by its copyright holder. diff --git a/samples/java-client/apidocs/legal/jquery.md b/samples/java-client/apidocs/legal/jquery.md deleted file mode 100644 index ea2ea58fc..000000000 --- a/samples/java-client/apidocs/legal/jquery.md +++ /dev/null @@ -1,73 +0,0 @@ -# jQuery v3.5.1 - -## jQuery License - -```text -jQuery v 3.5.1 -Copyright JS Foundation and other contributors, https://js.foundation/ - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -****************************************** - -The jQuery JavaScript Library v3.5.1 also includes Sizzle.js - -Sizzle.js includes the following license: - -Copyright JS Foundation and other contributors, https://js.foundation/ - -This software consists of voluntary contributions made by many -individuals. For exact contribution history, see the revision history -available at https://github.com/jquery/sizzle - -The following license applies to all parts of this software except as -documented below: - -==== - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -==== - -All files located in the node_modules and external directories are -externally maintained libraries used by this software which have their -own licenses; we recommend you read them, as their terms may differ from -the terms above. - -********************* - -``` diff --git a/samples/java-client/apidocs/legal/jqueryUI.md b/samples/java-client/apidocs/legal/jqueryUI.md deleted file mode 100644 index 6c44d3837..000000000 --- a/samples/java-client/apidocs/legal/jqueryUI.md +++ /dev/null @@ -1,50 +0,0 @@ -# jQuery UI v1.12.1 - -## jQuery UI License - -```text -Copyright jQuery Foundation and other contributors, https://jquery.org/ - -This software consists of voluntary contributions made by many -individuals. For exact contribution history, see the revision history -available at https://github.com/jquery/jquery-ui - -The following license applies to all parts of this software except as -documented below: - -==== - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -==== - -Copyright and related rights for sample code are waived via CC0. Sample -code is defined as all source code contained within the demos directory. - -CC0: http://creativecommons.org/publicdomain/zero/1.0/ - -==== - -All files located in the node_modules and external directories are -externally maintained libraries used by this software which have their -own licenses; we recommend you read them, as their terms may differ from -the terms above. - -``` diff --git a/samples/java-client/apidocs/member-search-index.js b/samples/java-client/apidocs/member-search-index.js deleted file mode 100644 index f924b6b04..000000000 --- a/samples/java-client/apidocs/member-search-index.js +++ /dev/null @@ -1 +0,0 @@ -memberSearchIndex = [{"p":"org.openapitools.client.model","c":"AbstractOpenApiSchema","l":"AbstractOpenApiSchema(String, Boolean)","u":"%3Cinit%3E(java.lang.String,java.lang.Boolean)"},{"p":"org.openapitools.client","c":"ApiClient","l":"addDefaultCookie(String, String)","u":"addDefaultCookie(java.lang.String,java.lang.String)"},{"p":"org.openapitools.client","c":"ApiClient","l":"addDefaultHeader(String, String)","u":"addDefaultHeader(java.lang.String,java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"addForecastDataItem(EmissionsDataDTO)","u":"addForecastDataItem(org.openapitools.client.model.EmissionsDataDTO)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"addOptimalDataPointsItem(EmissionsDataDTO)","u":"addOptimalDataPointsItem(org.openapitools.client.model.EmissionsDataDTO)"},{"p":"org.openapitools.client","c":"ApiClient","l":"ApiClient()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client","c":"ApiClient","l":"ApiClient(OkHttpClient)","u":"%3Cinit%3E(okhttp3.OkHttpClient)"},{"p":"org.openapitools.client","c":"ApiException","l":"ApiException()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client","c":"ApiException","l":"ApiException(int, Map>, String)","u":"%3Cinit%3E(int,java.util.Map,java.lang.String)"},{"p":"org.openapitools.client","c":"ApiException","l":"ApiException(int, String)","u":"%3Cinit%3E(int,java.lang.String)"},{"p":"org.openapitools.client","c":"ApiException","l":"ApiException(int, String, Map>, String)","u":"%3Cinit%3E(int,java.lang.String,java.util.Map,java.lang.String)"},{"p":"org.openapitools.client","c":"ApiException","l":"ApiException(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"org.openapitools.client","c":"ApiException","l":"ApiException(String, int, Map>, String)","u":"%3Cinit%3E(java.lang.String,int,java.util.Map,java.lang.String)"},{"p":"org.openapitools.client","c":"ApiException","l":"ApiException(String, Throwable, int, Map>)","u":"%3Cinit%3E(java.lang.String,java.lang.Throwable,int,java.util.Map)"},{"p":"org.openapitools.client","c":"ApiException","l":"ApiException(String, Throwable, int, Map>, String)","u":"%3Cinit%3E(java.lang.String,java.lang.Throwable,int,java.util.Map,java.lang.String)"},{"p":"org.openapitools.client","c":"ApiException","l":"ApiException(Throwable)","u":"%3Cinit%3E(java.lang.Throwable)"},{"p":"org.openapitools.client.auth","c":"ApiKeyAuth","l":"ApiKeyAuth(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"org.openapitools.client","c":"ApiResponse","l":"ApiResponse(int, Map>)","u":"%3Cinit%3E(int,java.util.Map)"},{"p":"org.openapitools.client","c":"ApiResponse","l":"ApiResponse(int, Map>, T)","u":"%3Cinit%3E(int,java.util.Map,T)"},{"p":"org.openapitools.client.auth","c":"ApiKeyAuth","l":"applyToParams(List, Map, Map, String, String, URI)","u":"applyToParams(java.util.List,java.util.Map,java.util.Map,java.lang.String,java.lang.String,java.net.URI)"},{"p":"org.openapitools.client.auth","c":"Authentication","l":"applyToParams(List, Map, Map, String, String, URI)","u":"applyToParams(java.util.List,java.util.Map,java.util.Map,java.lang.String,java.lang.String,java.net.URI)"},{"p":"org.openapitools.client.auth","c":"HttpBasicAuth","l":"applyToParams(List, Map, Map, String, String, URI)","u":"applyToParams(java.util.List,java.util.Map,java.util.Map,java.lang.String,java.lang.String,java.net.URI)"},{"p":"org.openapitools.client.auth","c":"HttpBearerAuth","l":"applyToParams(List, Map, Map, String, String, URI)","u":"applyToParams(java.util.List,java.util.Map,java.util.Map,java.lang.String,java.lang.String,java.net.URI)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"batchForecastDataAsync(List)","u":"batchForecastDataAsync(java.util.List)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"batchForecastDataAsyncAsync(List, ApiCallback>)","u":"batchForecastDataAsyncAsync(java.util.List,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"batchForecastDataAsyncCall(List, ApiCallback)","u":"batchForecastDataAsyncCall(java.util.List,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"batchForecastDataAsyncWithHttpInfo(List)","u":"batchForecastDataAsyncWithHttpInfo(java.util.List)"},{"p":"org.openapitools.client","c":"ApiClient","l":"buildCall(String, String, String, List, List, Object, Map, Map, Map, String[], ApiCallback)","u":"buildCall(java.lang.String,java.lang.String,java.lang.String,java.util.List,java.util.List,java.lang.Object,java.util.Map,java.util.Map,java.util.Map,java.lang.String[],org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client","c":"ApiClient","l":"buildRequest(String, String, String, List, List, Object, Map, Map, Map, String[], ApiCallback)","u":"buildRequest(java.lang.String,java.lang.String,java.lang.String,java.util.List,java.util.List,java.lang.Object,java.util.Map,java.util.Map,java.util.Map,java.lang.String[],org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client","c":"ApiClient","l":"buildRequestBodyFormEncoding(Map)","u":"buildRequestBodyFormEncoding(java.util.Map)"},{"p":"org.openapitools.client","c":"ApiClient","l":"buildRequestBodyMultipart(Map)","u":"buildRequestBodyMultipart(java.util.Map)"},{"p":"org.openapitools.client","c":"ApiClient","l":"buildUrl(String, String, List, List)","u":"buildUrl(java.lang.String,java.lang.String,java.util.List,java.util.List)"},{"p":"org.openapitools.client","c":"JSON.ByteArrayAdapter","l":"ByteArrayAdapter()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"CarbonAwareApi()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"CarbonAwareApi(ApiClient)","u":"%3Cinit%3E(org.openapitools.client.ApiClient)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"carbonIntensity(Double)","u":"carbonIntensity(java.lang.Double)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"CarbonIntensityBatchParametersDTO()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"CarbonIntensityDTO()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client","c":"ApiClient","l":"collectionPathParameterToString(String, Collection)","u":"collectionPathParameterToString(java.lang.String,java.util.Collection)"},{"p":"org.openapitools.client","c":"Configuration","l":"Configuration()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client","c":"StringUtil","l":"containsIgnoreCase(String[], String)","u":"containsIgnoreCase(java.lang.String[],java.lang.String)"},{"p":"org.openapitools.client","c":"ProgressRequestBody","l":"contentLength()"},{"p":"org.openapitools.client","c":"ProgressResponseBody","l":"contentLength()"},{"p":"org.openapitools.client","c":"ProgressRequestBody","l":"contentType()"},{"p":"org.openapitools.client","c":"ProgressResponseBody","l":"contentType()"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory","l":"create(Gson, TypeToken)","u":"create(com.google.gson.Gson,com.google.gson.reflect.TypeToken)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO.CustomTypeAdapterFactory","l":"create(Gson, TypeToken)","u":"create(com.google.gson.Gson,com.google.gson.reflect.TypeToken)"},{"p":"org.openapitools.client.model","c":"EmissionsData.CustomTypeAdapterFactory","l":"create(Gson, TypeToken)","u":"create(com.google.gson.Gson,com.google.gson.reflect.TypeToken)"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO.CustomTypeAdapterFactory","l":"create(Gson, TypeToken)","u":"create(com.google.gson.Gson,com.google.gson.reflect.TypeToken)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory","l":"create(Gson, TypeToken)","u":"create(com.google.gson.Gson,com.google.gson.reflect.TypeToken)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO.CustomTypeAdapterFactory","l":"create(Gson, TypeToken)","u":"create(com.google.gson.Gson,com.google.gson.reflect.TypeToken)"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails.CustomTypeAdapterFactory","l":"create(Gson, TypeToken)","u":"create(com.google.gson.Gson,com.google.gson.reflect.TypeToken)"},{"p":"org.openapitools.client","c":"JSON","l":"createGson()"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory","l":"CustomTypeAdapterFactory()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO.CustomTypeAdapterFactory","l":"CustomTypeAdapterFactory()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.model","c":"EmissionsData.CustomTypeAdapterFactory","l":"CustomTypeAdapterFactory()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO.CustomTypeAdapterFactory","l":"CustomTypeAdapterFactory()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory","l":"CustomTypeAdapterFactory()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO.CustomTypeAdapterFactory","l":"CustomTypeAdapterFactory()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails.CustomTypeAdapterFactory","l":"CustomTypeAdapterFactory()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"dataEndAt(OffsetDateTime)","u":"dataEndAt(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"dataEndAt(OffsetDateTime)","u":"dataEndAt(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"dataStartAt(OffsetDateTime)","u":"dataStartAt(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"dataStartAt(OffsetDateTime)","u":"dataStartAt(java.time.OffsetDateTime)"},{"p":"org.openapitools.client","c":"JSON.DateTypeAdapter","l":"DateTypeAdapter()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client","c":"JSON.DateTypeAdapter","l":"DateTypeAdapter(DateFormat)","u":"%3Cinit%3E(java.text.DateFormat)"},{"p":"org.openapitools.client","c":"ServerVariable","l":"defaultValue"},{"p":"org.openapitools.client","c":"ServerConfiguration","l":"description"},{"p":"org.openapitools.client","c":"ServerVariable","l":"description"},{"p":"org.openapitools.client","c":"ApiClient","l":"deserialize(Response, Type)","u":"deserialize(okhttp3.Response,java.lang.reflect.Type)"},{"p":"org.openapitools.client","c":"JSON","l":"deserialize(String, Type)","u":"deserialize(java.lang.String,java.lang.reflect.Type)"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"detail(String)","u":"detail(java.lang.String)"},{"p":"org.openapitools.client","c":"ApiClient","l":"downloadFileFromResponse(Response)","u":"downloadFileFromResponse(okhttp3.Response)"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"duration(Integer)","u":"duration(java.lang.Integer)"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"duration(String)","u":"duration(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"EmissionsData()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"EmissionsDataDTO()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"EmissionsForecastBatchParametersDTO()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"EmissionsForecastDTO()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"endTime(OffsetDateTime)","u":"endTime(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"endTime(OffsetDateTime)","u":"endTime(java.time.OffsetDateTime)"},{"p":"org.openapitools.client","c":"ServerVariable","l":"enumValues"},{"p":"org.openapitools.client.model","c":"AbstractOpenApiSchema","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"org.openapitools.client","c":"ApiClient","l":"escapeString(String)","u":"escapeString(java.lang.String)"},{"p":"org.openapitools.client","c":"ApiClient","l":"execute(Call)","u":"execute(okhttp3.Call)"},{"p":"org.openapitools.client","c":"ApiClient","l":"execute(Call, Type)","u":"execute(okhttp3.Call,java.lang.reflect.Type)"},{"p":"org.openapitools.client","c":"ApiClient","l":"executeAsync(Call, ApiCallback)","u":"executeAsync(okhttp3.Call,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client","c":"ApiClient","l":"executeAsync(Call, Type, ApiCallback)","u":"executeAsync(okhttp3.Call,java.lang.reflect.Type,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"forecastData(List)","u":"forecastData(java.util.List)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"fromJson(String)","u":"fromJson(java.lang.String)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"fromJson(String)","u":"fromJson(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"fromJson(String)","u":"fromJson(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"fromJson(String)","u":"fromJson(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"fromJson(String)","u":"fromJson(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"fromJson(String)","u":"fromJson(java.lang.String)"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"fromJson(String)","u":"fromJson(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"generatedAt(OffsetDateTime)","u":"generatedAt(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"AbstractOpenApiSchema","l":"getActualInstance()"},{"p":"org.openapitools.client.model","c":"AbstractOpenApiSchema","l":"getActualInstanceRecursively()"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getApiClient()"},{"p":"org.openapitools.client.auth","c":"ApiKeyAuth","l":"getApiKey()"},{"p":"org.openapitools.client.auth","c":"ApiKeyAuth","l":"getApiKeyPrefix()"},{"p":"org.openapitools.client","c":"ApiClient","l":"getAuthentication(String)","u":"getAuthentication(java.lang.String)"},{"p":"org.openapitools.client","c":"ApiClient","l":"getAuthentications()"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getAverageCarbonIntensity(String, OffsetDateTime, OffsetDateTime)","u":"getAverageCarbonIntensity(java.lang.String,java.time.OffsetDateTime,java.time.OffsetDateTime)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getAverageCarbonIntensityAsync(String, OffsetDateTime, OffsetDateTime, ApiCallback)","u":"getAverageCarbonIntensityAsync(java.lang.String,java.time.OffsetDateTime,java.time.OffsetDateTime,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getAverageCarbonIntensityBatch(List)","u":"getAverageCarbonIntensityBatch(java.util.List)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getAverageCarbonIntensityBatchAsync(List, ApiCallback>)","u":"getAverageCarbonIntensityBatchAsync(java.util.List,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getAverageCarbonIntensityBatchCall(List, ApiCallback)","u":"getAverageCarbonIntensityBatchCall(java.util.List,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getAverageCarbonIntensityBatchWithHttpInfo(List)","u":"getAverageCarbonIntensityBatchWithHttpInfo(java.util.List)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getAverageCarbonIntensityCall(String, OffsetDateTime, OffsetDateTime, ApiCallback)","u":"getAverageCarbonIntensityCall(java.lang.String,java.time.OffsetDateTime,java.time.OffsetDateTime,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getAverageCarbonIntensityWithHttpInfo(String, OffsetDateTime, OffsetDateTime)","u":"getAverageCarbonIntensityWithHttpInfo(java.lang.String,java.time.OffsetDateTime,java.time.OffsetDateTime)"},{"p":"org.openapitools.client","c":"ApiClient","l":"getBasePath()"},{"p":"org.openapitools.client.auth","c":"HttpBearerAuth","l":"getBearerToken()"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getBestEmissionsDataForLocationsByTime(List, OffsetDateTime, OffsetDateTime)","u":"getBestEmissionsDataForLocationsByTime(java.util.List,java.time.OffsetDateTime,java.time.OffsetDateTime)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getBestEmissionsDataForLocationsByTimeAsync(List, OffsetDateTime, OffsetDateTime, ApiCallback>)","u":"getBestEmissionsDataForLocationsByTimeAsync(java.util.List,java.time.OffsetDateTime,java.time.OffsetDateTime,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getBestEmissionsDataForLocationsByTimeCall(List, OffsetDateTime, OffsetDateTime, ApiCallback)","u":"getBestEmissionsDataForLocationsByTimeCall(java.util.List,java.time.OffsetDateTime,java.time.OffsetDateTime,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getBestEmissionsDataForLocationsByTimeWithHttpInfo(List, OffsetDateTime, OffsetDateTime)","u":"getBestEmissionsDataForLocationsByTimeWithHttpInfo(java.util.List,java.time.OffsetDateTime,java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"getCarbonIntensity()"},{"p":"org.openapitools.client","c":"ApiException","l":"getCode()"},{"p":"org.openapitools.client","c":"ApiClient","l":"getConnectTimeout()"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getCurrentForecastData(List, OffsetDateTime, OffsetDateTime, Integer)","u":"getCurrentForecastData(java.util.List,java.time.OffsetDateTime,java.time.OffsetDateTime,java.lang.Integer)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getCurrentForecastDataAsync(List, OffsetDateTime, OffsetDateTime, Integer, ApiCallback>)","u":"getCurrentForecastDataAsync(java.util.List,java.time.OffsetDateTime,java.time.OffsetDateTime,java.lang.Integer,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getCurrentForecastDataCall(List, OffsetDateTime, OffsetDateTime, Integer, ApiCallback)","u":"getCurrentForecastDataCall(java.util.List,java.time.OffsetDateTime,java.time.OffsetDateTime,java.lang.Integer,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getCurrentForecastDataWithHttpInfo(List, OffsetDateTime, OffsetDateTime, Integer)","u":"getCurrentForecastDataWithHttpInfo(java.util.List,java.time.OffsetDateTime,java.time.OffsetDateTime,java.lang.Integer)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getCustomBaseUrl()"},{"p":"org.openapitools.client","c":"ApiResponse","l":"getData()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"getDataEndAt()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"getDataEndAt()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"getDataStartAt()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"getDataStartAt()"},{"p":"org.openapitools.client","c":"ApiClient","l":"getDateFormat()"},{"p":"org.openapitools.client","c":"Configuration","l":"getDefaultApiClient()"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"getDetail()"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"getDuration()"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"getDuration()"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getEmissionsDataForLocationByTime(String, OffsetDateTime, OffsetDateTime)","u":"getEmissionsDataForLocationByTime(java.lang.String,java.time.OffsetDateTime,java.time.OffsetDateTime)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getEmissionsDataForLocationByTimeAsync(String, OffsetDateTime, OffsetDateTime, ApiCallback>)","u":"getEmissionsDataForLocationByTimeAsync(java.lang.String,java.time.OffsetDateTime,java.time.OffsetDateTime,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getEmissionsDataForLocationByTimeCall(String, OffsetDateTime, OffsetDateTime, ApiCallback)","u":"getEmissionsDataForLocationByTimeCall(java.lang.String,java.time.OffsetDateTime,java.time.OffsetDateTime,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getEmissionsDataForLocationByTimeWithHttpInfo(String, OffsetDateTime, OffsetDateTime)","u":"getEmissionsDataForLocationByTimeWithHttpInfo(java.lang.String,java.time.OffsetDateTime,java.time.OffsetDateTime)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getEmissionsDataForLocationsByTime(List, OffsetDateTime, OffsetDateTime)","u":"getEmissionsDataForLocationsByTime(java.util.List,java.time.OffsetDateTime,java.time.OffsetDateTime)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getEmissionsDataForLocationsByTimeAsync(List, OffsetDateTime, OffsetDateTime, ApiCallback>)","u":"getEmissionsDataForLocationsByTimeAsync(java.util.List,java.time.OffsetDateTime,java.time.OffsetDateTime,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getEmissionsDataForLocationsByTimeCall(List, OffsetDateTime, OffsetDateTime, ApiCallback)","u":"getEmissionsDataForLocationsByTimeCall(java.util.List,java.time.OffsetDateTime,java.time.OffsetDateTime,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getEmissionsDataForLocationsByTimeWithHttpInfo(List, OffsetDateTime, OffsetDateTime)","u":"getEmissionsDataForLocationsByTimeWithHttpInfo(java.util.List,java.time.OffsetDateTime,java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"getEndTime()"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"getEndTime()"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"getErrors()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"getForecastData()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"getGeneratedAt()"},{"p":"org.openapitools.client","c":"JSON","l":"getGson()"},{"p":"org.openapitools.client","c":"ApiResponse","l":"getHeaders()"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"getHostIndex()"},{"p":"org.openapitools.client","c":"ApiClient","l":"getHttpClient()"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"getInstance()"},{"p":"org.openapitools.client","c":"ApiClient","l":"getJSON()"},{"p":"org.openapitools.client","c":"ApiClient","l":"getKeyManagers()"},{"p":"org.openapitools.client.auth","c":"ApiKeyAuth","l":"getLocation()"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"getLocation()"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"getLocation()"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"getLocation()"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"getLocation()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"getLocation()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"getLocation()"},{"p":"org.openapitools.client","c":"ApiException","l":"getMessage()"},{"p":"org.openapitools.client","c":"Pair","l":"getName()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"getOptimalDataPoints()"},{"p":"org.openapitools.client.auth","c":"ApiKeyAuth","l":"getParamName()"},{"p":"org.openapitools.client.auth","c":"HttpBasicAuth","l":"getPassword()"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"getRating()"},{"p":"org.openapitools.client","c":"ApiClient","l":"getReadTimeout()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"getRequestedAt()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"getRequestedAt()"},{"p":"org.openapitools.client","c":"ApiException","l":"getResponseBody()"},{"p":"org.openapitools.client","c":"ApiException","l":"getResponseHeaders()"},{"p":"org.openapitools.client.model","c":"AbstractOpenApiSchema","l":"getSchemas()"},{"p":"org.openapitools.client.model","c":"AbstractOpenApiSchema","l":"getSchemaType()"},{"p":"org.openapitools.client","c":"ApiClient","l":"getSslCaCert()"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"getStartTime()"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"getStartTime()"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"getStatus()"},{"p":"org.openapitools.client","c":"ApiResponse","l":"getStatusCode()"},{"p":"org.openapitools.client","c":"ApiClient","l":"getTempFolderPath()"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"getTime()"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"getTimestamp()"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"getTitle()"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"getType()"},{"p":"org.openapitools.client.auth","c":"HttpBasicAuth","l":"getUsername()"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"getValue()"},{"p":"org.openapitools.client","c":"Pair","l":"getValue()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"getWindowSize()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"getWindowSize()"},{"p":"org.openapitools.client","c":"ApiClient","l":"getWriteTimeout()"},{"p":"org.openapitools.client","c":"ApiClient","l":"guessContentTypeFromFile(File)","u":"guessContentTypeFromFile(java.io.File)"},{"p":"org.openapitools.client","c":"ApiClient","l":"handleResponse(Response, Type)","u":"handleResponse(okhttp3.Response,java.lang.reflect.Type)"},{"p":"org.openapitools.client.model","c":"AbstractOpenApiSchema","l":"hashCode()"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"hashCode()"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"hashCode()"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"hashCode()"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"hashCode()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"hashCode()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"hashCode()"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"hashCode()"},{"p":"org.openapitools.client.auth","c":"HttpBasicAuth","l":"HttpBasicAuth()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.auth","c":"HttpBearerAuth","l":"HttpBearerAuth(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"instance(String)","u":"instance(java.lang.String)"},{"p":"org.openapitools.client","c":"ApiClient","l":"isDebugging()"},{"p":"org.openapitools.client","c":"ApiClient","l":"isJsonMime(String)","u":"isJsonMime(java.lang.String)"},{"p":"org.openapitools.client.model","c":"AbstractOpenApiSchema","l":"isNullable()"},{"p":"org.openapitools.client","c":"ApiClient","l":"isVerifyingSsl()"},{"p":"org.openapitools.client","c":"StringUtil","l":"join(Collection, String)","u":"join(java.util.Collection,java.lang.String)"},{"p":"org.openapitools.client","c":"StringUtil","l":"join(String[], String)","u":"join(java.lang.String[],java.lang.String)"},{"p":"org.openapitools.client","c":"JSON","l":"JSON()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client","c":"JSON.LocalDateTypeAdapter","l":"LocalDateTypeAdapter()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client","c":"JSON.LocalDateTypeAdapter","l":"LocalDateTypeAdapter(DateTimeFormatter)","u":"%3Cinit%3E(java.time.format.DateTimeFormatter)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"location(String)","u":"location(java.lang.String)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"location(String)","u":"location(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"location(String)","u":"location(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"location(String)","u":"location(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"location(String)","u":"location(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"location(String)","u":"location(java.lang.String)"},{"p":"org.openapitools.client","c":"JSON.OffsetDateTimeTypeAdapter","l":"OffsetDateTimeTypeAdapter()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client","c":"JSON.OffsetDateTimeTypeAdapter","l":"OffsetDateTimeTypeAdapter(DateTimeFormatter)","u":"%3Cinit%3E(java.time.format.DateTimeFormatter)"},{"p":"org.openapitools.client","c":"ApiCallback","l":"onDownloadProgress(long, long, boolean)","u":"onDownloadProgress(long,long,boolean)"},{"p":"org.openapitools.client","c":"ApiCallback","l":"onFailure(ApiException, int, Map>)","u":"onFailure(org.openapitools.client.ApiException,int,java.util.Map)"},{"p":"org.openapitools.client","c":"ApiCallback","l":"onSuccess(T, int, Map>)","u":"onSuccess(T,int,java.util.Map)"},{"p":"org.openapitools.client","c":"ApiCallback","l":"onUploadProgress(long, long, boolean)","u":"onUploadProgress(long,long,boolean)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"openapiFields"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"openapiFields"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"openapiFields"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"openapiFields"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"openapiFields"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"openapiFields"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"openapiFields"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"openapiRequiredFields"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"openapiRequiredFields"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"openapiRequiredFields"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"openapiRequiredFields"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"openapiRequiredFields"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"openapiRequiredFields"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"openapiRequiredFields"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"optimalDataPoints(List)","u":"optimalDataPoints(java.util.List)"},{"p":"org.openapitools.client","c":"Pair","l":"Pair(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"org.openapitools.client","c":"ApiClient","l":"parameterToPair(String, Object)","u":"parameterToPair(java.lang.String,java.lang.Object)"},{"p":"org.openapitools.client","c":"ApiClient","l":"parameterToPairs(String, String, Collection)","u":"parameterToPairs(java.lang.String,java.lang.String,java.util.Collection)"},{"p":"org.openapitools.client","c":"ApiClient","l":"parameterToString(Object)","u":"parameterToString(java.lang.Object)"},{"p":"org.openapitools.client","c":"ApiClient","l":"prepareDownloadFile(Response)","u":"prepareDownloadFile(okhttp3.Response)"},{"p":"org.openapitools.client","c":"ApiClient","l":"processCookieParams(Map, Request.Builder)","u":"processCookieParams(java.util.Map,okhttp3.Request.Builder)"},{"p":"org.openapitools.client","c":"ApiClient","l":"processHeaderParams(Map, Request.Builder)","u":"processHeaderParams(java.util.Map,okhttp3.Request.Builder)"},{"p":"org.openapitools.client","c":"ProgressRequestBody","l":"ProgressRequestBody(RequestBody, ApiCallback)","u":"%3Cinit%3E(okhttp3.RequestBody,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client","c":"ProgressResponseBody","l":"ProgressResponseBody(ResponseBody, ApiCallback)","u":"%3Cinit%3E(okhttp3.ResponseBody,org.openapitools.client.ApiCallback)"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"rating(Double)","u":"rating(java.lang.Double)"},{"p":"org.openapitools.client","c":"JSON.ByteArrayAdapter","l":"read(JsonReader)","u":"read(com.google.gson.stream.JsonReader)"},{"p":"org.openapitools.client","c":"JSON.DateTypeAdapter","l":"read(JsonReader)","u":"read(com.google.gson.stream.JsonReader)"},{"p":"org.openapitools.client","c":"JSON.LocalDateTypeAdapter","l":"read(JsonReader)","u":"read(com.google.gson.stream.JsonReader)"},{"p":"org.openapitools.client","c":"JSON.OffsetDateTimeTypeAdapter","l":"read(JsonReader)","u":"read(com.google.gson.stream.JsonReader)"},{"p":"org.openapitools.client","c":"JSON.SqlDateTypeAdapter","l":"read(JsonReader)","u":"read(com.google.gson.stream.JsonReader)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"requestedAt(OffsetDateTime)","u":"requestedAt(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"requestedAt(OffsetDateTime)","u":"requestedAt(java.time.OffsetDateTime)"},{"p":"org.openapitools.client","c":"ApiClient","l":"sanitizeFilename(String)","u":"sanitizeFilename(java.lang.String)"},{"p":"org.openapitools.client","c":"ApiClient","l":"selectHeaderAccept(String[])","u":"selectHeaderAccept(java.lang.String[])"},{"p":"org.openapitools.client","c":"ApiClient","l":"selectHeaderContentType(String[])","u":"selectHeaderContentType(java.lang.String[])"},{"p":"org.openapitools.client","c":"JSON","l":"serialize(Object)","u":"serialize(java.lang.Object)"},{"p":"org.openapitools.client","c":"ApiClient","l":"serialize(Object, String)","u":"serialize(java.lang.Object,java.lang.String)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"SERIALIZED_NAME_CARBON_INTENSITY"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"SERIALIZED_NAME_DATA_END_AT"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"SERIALIZED_NAME_DATA_END_AT"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"SERIALIZED_NAME_DATA_START_AT"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"SERIALIZED_NAME_DATA_START_AT"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"SERIALIZED_NAME_DETAIL"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"SERIALIZED_NAME_DURATION"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"SERIALIZED_NAME_DURATION"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"SERIALIZED_NAME_END_TIME"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"SERIALIZED_NAME_END_TIME"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"SERIALIZED_NAME_ERRORS"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"SERIALIZED_NAME_FORECAST_DATA"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"SERIALIZED_NAME_GENERATED_AT"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"SERIALIZED_NAME_INSTANCE"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"SERIALIZED_NAME_LOCATION"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"SERIALIZED_NAME_LOCATION"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"SERIALIZED_NAME_LOCATION"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"SERIALIZED_NAME_LOCATION"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"SERIALIZED_NAME_LOCATION"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"SERIALIZED_NAME_LOCATION"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"SERIALIZED_NAME_OPTIMAL_DATA_POINTS"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"SERIALIZED_NAME_RATING"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"SERIALIZED_NAME_REQUESTED_AT"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"SERIALIZED_NAME_REQUESTED_AT"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"SERIALIZED_NAME_START_TIME"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"SERIALIZED_NAME_START_TIME"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"SERIALIZED_NAME_STATUS"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"SERIALIZED_NAME_TIME"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"SERIALIZED_NAME_TIMESTAMP"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"SERIALIZED_NAME_TITLE"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"SERIALIZED_NAME_TYPE"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"SERIALIZED_NAME_VALUE"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"SERIALIZED_NAME_WINDOW_SIZE"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"SERIALIZED_NAME_WINDOW_SIZE"},{"p":"org.openapitools.client","c":"ServerConfiguration","l":"ServerConfiguration(String, String, Map)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.util.Map)"},{"p":"org.openapitools.client","c":"ServerVariable","l":"ServerVariable(String, String, HashSet)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.util.HashSet)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setAccessToken(String)","u":"setAccessToken(java.lang.String)"},{"p":"org.openapitools.client.model","c":"AbstractOpenApiSchema","l":"setActualInstance(Object)","u":"setActualInstance(java.lang.Object)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"setApiClient(ApiClient)","u":"setApiClient(org.openapitools.client.ApiClient)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setApiKey(String)","u":"setApiKey(java.lang.String)"},{"p":"org.openapitools.client.auth","c":"ApiKeyAuth","l":"setApiKey(String)","u":"setApiKey(java.lang.String)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setApiKeyPrefix(String)","u":"setApiKeyPrefix(java.lang.String)"},{"p":"org.openapitools.client.auth","c":"ApiKeyAuth","l":"setApiKeyPrefix(String)","u":"setApiKeyPrefix(java.lang.String)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setBasePath(String)","u":"setBasePath(java.lang.String)"},{"p":"org.openapitools.client.auth","c":"HttpBearerAuth","l":"setBearerToken(String)","u":"setBearerToken(java.lang.String)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"setCarbonIntensity(Double)","u":"setCarbonIntensity(java.lang.Double)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setConnectTimeout(int)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"setCustomBaseUrl(String)","u":"setCustomBaseUrl(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"setDataEndAt(OffsetDateTime)","u":"setDataEndAt(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"setDataEndAt(OffsetDateTime)","u":"setDataEndAt(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"setDataStartAt(OffsetDateTime)","u":"setDataStartAt(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"setDataStartAt(OffsetDateTime)","u":"setDataStartAt(java.time.OffsetDateTime)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setDateFormat(DateFormat)","u":"setDateFormat(java.text.DateFormat)"},{"p":"org.openapitools.client","c":"JSON","l":"setDateFormat(DateFormat)","u":"setDateFormat(java.text.DateFormat)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setDebugging(boolean)"},{"p":"org.openapitools.client","c":"Configuration","l":"setDefaultApiClient(ApiClient)","u":"setDefaultApiClient(org.openapitools.client.ApiClient)"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"setDetail(String)","u":"setDetail(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"setDuration(Integer)","u":"setDuration(java.lang.Integer)"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"setDuration(String)","u":"setDuration(java.lang.String)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"setEndTime(OffsetDateTime)","u":"setEndTime(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"setEndTime(OffsetDateTime)","u":"setEndTime(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"setForecastData(List)","u":"setForecastData(java.util.List)"},{"p":"org.openapitools.client","c":"JSON.DateTypeAdapter","l":"setFormat(DateFormat)","u":"setFormat(java.text.DateFormat)"},{"p":"org.openapitools.client","c":"JSON.SqlDateTypeAdapter","l":"setFormat(DateFormat)","u":"setFormat(java.text.DateFormat)"},{"p":"org.openapitools.client","c":"JSON.LocalDateTypeAdapter","l":"setFormat(DateTimeFormatter)","u":"setFormat(java.time.format.DateTimeFormatter)"},{"p":"org.openapitools.client","c":"JSON.OffsetDateTimeTypeAdapter","l":"setFormat(DateTimeFormatter)","u":"setFormat(java.time.format.DateTimeFormatter)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"setGeneratedAt(OffsetDateTime)","u":"setGeneratedAt(java.time.OffsetDateTime)"},{"p":"org.openapitools.client","c":"JSON","l":"setGson(Gson)","u":"setGson(com.google.gson.Gson)"},{"p":"org.openapitools.client.api","c":"CarbonAwareApi","l":"setHostIndex(int)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setHttpClient(OkHttpClient)","u":"setHttpClient(okhttp3.OkHttpClient)"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"setInstance(String)","u":"setInstance(java.lang.String)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setJSON(JSON)","u":"setJSON(org.openapitools.client.JSON)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setKeyManagers(KeyManager[])","u":"setKeyManagers(javax.net.ssl.KeyManager[])"},{"p":"org.openapitools.client","c":"ApiClient","l":"setLenientOnJson(boolean)"},{"p":"org.openapitools.client","c":"JSON","l":"setLenientOnJson(boolean)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setLocalDateFormat(DateTimeFormatter)","u":"setLocalDateFormat(java.time.format.DateTimeFormatter)"},{"p":"org.openapitools.client","c":"JSON","l":"setLocalDateFormat(DateTimeFormatter)","u":"setLocalDateFormat(java.time.format.DateTimeFormatter)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"setLocation(String)","u":"setLocation(java.lang.String)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"setLocation(String)","u":"setLocation(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"setLocation(String)","u":"setLocation(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"setLocation(String)","u":"setLocation(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"setLocation(String)","u":"setLocation(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"setLocation(String)","u":"setLocation(java.lang.String)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setOffsetDateTimeFormat(DateTimeFormatter)","u":"setOffsetDateTimeFormat(java.time.format.DateTimeFormatter)"},{"p":"org.openapitools.client","c":"JSON","l":"setOffsetDateTimeFormat(DateTimeFormatter)","u":"setOffsetDateTimeFormat(java.time.format.DateTimeFormatter)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"setOptimalDataPoints(List)","u":"setOptimalDataPoints(java.util.List)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setPassword(String)","u":"setPassword(java.lang.String)"},{"p":"org.openapitools.client.auth","c":"HttpBasicAuth","l":"setPassword(String)","u":"setPassword(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"setRating(Double)","u":"setRating(java.lang.Double)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setReadTimeout(int)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"setRequestedAt(OffsetDateTime)","u":"setRequestedAt(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"setRequestedAt(OffsetDateTime)","u":"setRequestedAt(java.time.OffsetDateTime)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setSqlDateFormat(DateFormat)","u":"setSqlDateFormat(java.text.DateFormat)"},{"p":"org.openapitools.client","c":"JSON","l":"setSqlDateFormat(DateFormat)","u":"setSqlDateFormat(java.text.DateFormat)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setSslCaCert(InputStream)","u":"setSslCaCert(java.io.InputStream)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"setStartTime(OffsetDateTime)","u":"setStartTime(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"setStartTime(OffsetDateTime)","u":"setStartTime(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"setStatus(Integer)","u":"setStatus(java.lang.Integer)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setTempFolderPath(String)","u":"setTempFolderPath(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"setTime(OffsetDateTime)","u":"setTime(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"setTimestamp(OffsetDateTime)","u":"setTimestamp(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"setTitle(String)","u":"setTitle(java.lang.String)"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"setType(String)","u":"setType(java.lang.String)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setUserAgent(String)","u":"setUserAgent(java.lang.String)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setUsername(String)","u":"setUsername(java.lang.String)"},{"p":"org.openapitools.client.auth","c":"HttpBasicAuth","l":"setUsername(String)","u":"setUsername(java.lang.String)"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"setValue(Double)","u":"setValue(java.lang.Double)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setVerifyingSsl(boolean)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"setWindowSize(Integer)","u":"setWindowSize(java.lang.Integer)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"setWindowSize(Integer)","u":"setWindowSize(java.lang.Integer)"},{"p":"org.openapitools.client","c":"ApiClient","l":"setWriteTimeout(int)"},{"p":"org.openapitools.client","c":"ProgressResponseBody","l":"source()"},{"p":"org.openapitools.client","c":"JSON.SqlDateTypeAdapter","l":"SqlDateTypeAdapter()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client","c":"JSON.SqlDateTypeAdapter","l":"SqlDateTypeAdapter(DateFormat)","u":"%3Cinit%3E(java.text.DateFormat)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"startTime(OffsetDateTime)","u":"startTime(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"startTime(OffsetDateTime)","u":"startTime(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"status(Integer)","u":"status(java.lang.Integer)"},{"p":"org.openapitools.client","c":"StringUtil","l":"StringUtil()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"time(OffsetDateTime)","u":"time(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"timestamp(OffsetDateTime)","u":"timestamp(java.time.OffsetDateTime)"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"title(String)","u":"title(java.lang.String)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"toJson()"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"toJson()"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"toJson()"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"toJson()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"toJson()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"toJson()"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"toJson()"},{"p":"org.openapitools.client.model","c":"AbstractOpenApiSchema","l":"toString()"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"toString()"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"toString()"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"toString()"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"toString()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"toString()"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"toString()"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"toString()"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"type(String)","u":"type(java.lang.String)"},{"p":"org.openapitools.client","c":"ApiClient","l":"updateParamsForAuth(String[], List, Map, Map, String, String, URI)","u":"updateParamsForAuth(java.lang.String[],java.util.List,java.util.Map,java.util.Map,java.lang.String,java.lang.String,java.net.URI)"},{"p":"org.openapitools.client","c":"ServerConfiguration","l":"URL"},{"p":"org.openapitools.client","c":"ServerConfiguration","l":"URL()"},{"p":"org.openapitools.client","c":"ServerConfiguration","l":"URL(Map)","u":"URL(java.util.Map)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityBatchParametersDTO","l":"validateJsonObject(JsonObject)","u":"validateJsonObject(com.google.gson.JsonObject)"},{"p":"org.openapitools.client.model","c":"CarbonIntensityDTO","l":"validateJsonObject(JsonObject)","u":"validateJsonObject(com.google.gson.JsonObject)"},{"p":"org.openapitools.client.model","c":"EmissionsData","l":"validateJsonObject(JsonObject)","u":"validateJsonObject(com.google.gson.JsonObject)"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"validateJsonObject(JsonObject)","u":"validateJsonObject(com.google.gson.JsonObject)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"validateJsonObject(JsonObject)","u":"validateJsonObject(com.google.gson.JsonObject)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"validateJsonObject(JsonObject)","u":"validateJsonObject(com.google.gson.JsonObject)"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"validateJsonObject(JsonObject)","u":"validateJsonObject(com.google.gson.JsonObject)"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"ValidationProblemDetails()","u":"%3Cinit%3E()"},{"p":"org.openapitools.client.model","c":"ValidationProblemDetails","l":"ValidationProblemDetails(Map>)","u":"%3Cinit%3E(java.util.Map)"},{"p":"org.openapitools.client.model","c":"EmissionsDataDTO","l":"value(Double)","u":"value(java.lang.Double)"},{"p":"org.openapitools.client","c":"ServerConfiguration","l":"variables"},{"p":"org.openapitools.client.model","c":"EmissionsForecastBatchParametersDTO","l":"windowSize(Integer)","u":"windowSize(java.lang.Integer)"},{"p":"org.openapitools.client.model","c":"EmissionsForecastDTO","l":"windowSize(Integer)","u":"windowSize(java.lang.Integer)"},{"p":"org.openapitools.client","c":"JSON.ByteArrayAdapter","l":"write(JsonWriter, byte[])","u":"write(com.google.gson.stream.JsonWriter,byte[])"},{"p":"org.openapitools.client","c":"JSON.SqlDateTypeAdapter","l":"write(JsonWriter, Date)","u":"write(com.google.gson.stream.JsonWriter,java.sql.Date)"},{"p":"org.openapitools.client","c":"JSON.DateTypeAdapter","l":"write(JsonWriter, Date)","u":"write(com.google.gson.stream.JsonWriter,java.util.Date)"},{"p":"org.openapitools.client","c":"JSON.LocalDateTypeAdapter","l":"write(JsonWriter, LocalDate)","u":"write(com.google.gson.stream.JsonWriter,java.time.LocalDate)"},{"p":"org.openapitools.client","c":"JSON.OffsetDateTimeTypeAdapter","l":"write(JsonWriter, OffsetDateTime)","u":"write(com.google.gson.stream.JsonWriter,java.time.OffsetDateTime)"},{"p":"org.openapitools.client","c":"ProgressRequestBody","l":"writeTo(BufferedSink)","u":"writeTo(okio.BufferedSink)"}];updateSearchResults(); \ No newline at end of file diff --git a/samples/java-client/apidocs/module-search-index.js b/samples/java-client/apidocs/module-search-index.js deleted file mode 100644 index 0d59754fc..000000000 --- a/samples/java-client/apidocs/module-search-index.js +++ /dev/null @@ -1 +0,0 @@ -moduleSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/samples/java-client/apidocs/org/openapitools/client/ApiCallback.html b/samples/java-client/apidocs/org/openapitools/client/ApiCallback.html deleted file mode 100644 index 825781574..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/ApiCallback.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -ApiCallback (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Interface ApiCallback<T>

-
-
-
-
Type Parameters:
-
T - The return type
-
-
-
public interface ApiCallback<T>
-
Callback for asynchronous API call.
-
-
-
    - -
  • -
    -

    Method Summary

    -
    -
    -
    -
    -
    Modifier and Type
    -
    Method
    -
    Description
    -
    void
    -
    onDownloadProgress(long bytesRead, - long contentLength, - boolean done)
    -
    -
    This is called when the API download processing.
    -
    -
    void
    -
    onFailure(ApiException e, - int statusCode, - Map<String,List<String>> responseHeaders)
    -
    -
    This is called when the API call fails.
    -
    -
    void
    -
    onSuccess(T result, - int statusCode, - Map<String,List<String>> responseHeaders)
    -
    -
    This is called when the API call succeeded.
    -
    -
    void
    -
    onUploadProgress(long bytesWritten, - long contentLength, - boolean done)
    -
    -
    This is called when the API upload processing.
    -
    -
    -
    -
    -
    -
  • -
-
-
-
    - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      onFailure

      -
      void onFailure(ApiException e, - int statusCode, - Map<String,List<String>> responseHeaders)
      -
      This is called when the API call fails.
      -
      -
      Parameters:
      -
      e - The exception causing the failure
      -
      statusCode - Status code of the response if available, otherwise it would be 0
      -
      responseHeaders - Headers of the response if available, otherwise it would be null
      -
      -
      -
    • -
    • -
      -

      onSuccess

      -
      void onSuccess(T result, - int statusCode, - Map<String,List<String>> responseHeaders)
      -
      This is called when the API call succeeded.
      -
      -
      Parameters:
      -
      result - The result deserialized from response
      -
      statusCode - Status code of the response
      -
      responseHeaders - Headers of the response
      -
      -
      -
    • -
    • -
      -

      onUploadProgress

      -
      void onUploadProgress(long bytesWritten, - long contentLength, - boolean done)
      -
      This is called when the API upload processing.
      -
      -
      Parameters:
      -
      bytesWritten - bytes Written
      -
      contentLength - content length of request body
      -
      done - write end
      -
      -
      -
    • -
    • -
      -

      onDownloadProgress

      -
      void onDownloadProgress(long bytesRead, - long contentLength, - boolean done)
      -
      This is called when the API download processing.
      -
      -
      Parameters:
      -
      bytesRead - bytes Read
      -
      contentLength - content length of the response
      -
      done - Read end
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/ApiClient.html b/samples/java-client/apidocs/org/openapitools/client/ApiClient.html deleted file mode 100644 index d7d55110a..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/ApiClient.html +++ /dev/null @@ -1,1548 +0,0 @@ - - - - -ApiClient (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class ApiClient

-
-
java.lang.Object -
org.openapitools.client.ApiClient
-
-
-
-
public class ApiClient -extends Object
-

ApiClient class.

-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      ApiClient

      -
      public ApiClient()
      -
      Basic constructor for ApiClient
      -
      -
    • -
    • -
      -

      ApiClient

      -
      public ApiClient(okhttp3.OkHttpClient client)
      -
      Basic constructor with custom OkHttpClient
      -
      -
      Parameters:
      -
      client - a OkHttpClient object
      -
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      getBasePath

      -
      public String getBasePath()
      -
      Get base path
      -
      -
      Returns:
      -
      Base path
      -
      -
      -
    • -
    • -
      -

      setBasePath

      -
      public ApiClient setBasePath(String basePath)
      -
      Set base path
      -
      -
      Parameters:
      -
      basePath - Base path of the URL (e.g http://localhost
      -
      Returns:
      -
      An instance of OkHttpClient
      -
      -
      -
    • -
    • -
      -

      getHttpClient

      -
      public okhttp3.OkHttpClient getHttpClient()
      -
      Get HTTP client
      -
      -
      Returns:
      -
      An instance of OkHttpClient
      -
      -
      -
    • -
    • -
      -

      setHttpClient

      -
      public ApiClient setHttpClient(okhttp3.OkHttpClient newHttpClient)
      -
      Set HTTP client, which must never be null.
      -
      -
      Parameters:
      -
      newHttpClient - An instance of OkHttpClient
      -
      Returns:
      -
      Api Client
      -
      Throws:
      -
      NullPointerException - when newHttpClient is null
      -
      -
      -
    • -
    • -
      -

      getJSON

      -
      public JSON getJSON()
      -
      Get JSON
      -
      -
      Returns:
      -
      JSON object
      -
      -
      -
    • -
    • -
      -

      setJSON

      -
      public ApiClient setJSON(JSON json)
      -
      Set JSON
      -
      -
      Parameters:
      -
      json - JSON object
      -
      Returns:
      -
      Api client
      -
      -
      -
    • -
    • -
      -

      isVerifyingSsl

      -
      public boolean isVerifyingSsl()
      -
      True if isVerifyingSsl flag is on
      -
      -
      Returns:
      -
      True if isVerifySsl flag is on
      -
      -
      -
    • -
    • -
      -

      setVerifyingSsl

      -
      public ApiClient setVerifyingSsl(boolean verifyingSsl)
      -
      Configure whether to verify certificate and hostname when making https requests. - Default to true. - NOTE: Do NOT set to false in production code, otherwise you would face multiple types of cryptographic attacks.
      -
      -
      Parameters:
      -
      verifyingSsl - True to verify TLS/SSL connection
      -
      Returns:
      -
      ApiClient
      -
      -
      -
    • -
    • -
      -

      getSslCaCert

      -
      public InputStream getSslCaCert()
      -
      Get SSL CA cert.
      -
      -
      Returns:
      -
      Input stream to the SSL CA cert
      -
      -
      -
    • -
    • -
      -

      setSslCaCert

      -
      public ApiClient setSslCaCert(InputStream sslCaCert)
      -
      Configure the CA certificate to be trusted when making https requests. - Use null to reset to default.
      -
      -
      Parameters:
      -
      sslCaCert - input stream for SSL CA cert
      -
      Returns:
      -
      ApiClient
      -
      -
      -
    • -
    • -
      -

      getKeyManagers

      -
      public KeyManager[] getKeyManagers()
      -

      Getter for the field keyManagers.

      -
      -
      Returns:
      -
      an array of KeyManager objects
      -
      -
      -
    • -
    • -
      -

      setKeyManagers

      -
      public ApiClient setKeyManagers(KeyManager[] managers)
      -
      Configure client keys to use for authorization in an SSL session. - Use null to reset to default.
      -
      -
      Parameters:
      -
      managers - The KeyManagers to use
      -
      Returns:
      -
      ApiClient
      -
      -
      -
    • -
    • -
      -

      getDateFormat

      -
      public DateFormat getDateFormat()
      -

      Getter for the field dateFormat.

      -
      -
      Returns:
      -
      a DateFormat object
      -
      -
      -
    • -
    • -
      -

      setDateFormat

      -
      public ApiClient setDateFormat(DateFormat dateFormat)
      -

      Setter for the field dateFormat.

      -
      -
      Parameters:
      -
      dateFormat - a DateFormat object
      -
      Returns:
      -
      a ApiClient object
      -
      -
      -
    • -
    • -
      -

      setSqlDateFormat

      -
      public ApiClient setSqlDateFormat(DateFormat dateFormat)
      -

      Set SqlDateFormat.

      -
      -
      Parameters:
      -
      dateFormat - a DateFormat object
      -
      Returns:
      -
      a ApiClient object
      -
      -
      -
    • -
    • -
      -

      setOffsetDateTimeFormat

      -
      public ApiClient setOffsetDateTimeFormat(DateTimeFormatter dateFormat)
      -

      Set OffsetDateTimeFormat.

      -
      -
      Parameters:
      -
      dateFormat - a DateTimeFormatter object
      -
      Returns:
      -
      a ApiClient object
      -
      -
      -
    • -
    • -
      -

      setLocalDateFormat

      -
      public ApiClient setLocalDateFormat(DateTimeFormatter dateFormat)
      -

      Set LocalDateFormat.

      -
      -
      Parameters:
      -
      dateFormat - a DateTimeFormatter object
      -
      Returns:
      -
      a ApiClient object
      -
      -
      -
    • -
    • -
      -

      setLenientOnJson

      -
      public ApiClient setLenientOnJson(boolean lenientOnJson)
      -

      Set LenientOnJson.

      -
      -
      Parameters:
      -
      lenientOnJson - a boolean
      -
      Returns:
      -
      a ApiClient object
      -
      -
      -
    • -
    • -
      -

      getAuthentications

      -
      public Map<String,Authentication> getAuthentications()
      -
      Get authentications (key: authentication name, value: authentication).
      -
      -
      Returns:
      -
      Map of authentication objects
      -
      -
      -
    • -
    • -
      -

      getAuthentication

      -
      public Authentication getAuthentication(String authName)
      -
      Get authentication for the given name.
      -
      -
      Parameters:
      -
      authName - The authentication name
      -
      Returns:
      -
      The authentication, null if not found
      -
      -
      -
    • -
    • -
      -

      setUsername

      -
      public void setUsername(String username)
      -
      Helper method to set username for the first HTTP basic authentication.
      -
      -
      Parameters:
      -
      username - Username
      -
      -
      -
    • -
    • -
      -

      setPassword

      -
      public void setPassword(String password)
      -
      Helper method to set password for the first HTTP basic authentication.
      -
      -
      Parameters:
      -
      password - Password
      -
      -
      -
    • -
    • -
      -

      setApiKey

      -
      public void setApiKey(String apiKey)
      -
      Helper method to set API key value for the first API key authentication.
      -
      -
      Parameters:
      -
      apiKey - API key
      -
      -
      -
    • -
    • -
      -

      setApiKeyPrefix

      -
      public void setApiKeyPrefix(String apiKeyPrefix)
      -
      Helper method to set API key prefix for the first API key authentication.
      -
      -
      Parameters:
      -
      apiKeyPrefix - API key prefix
      -
      -
      -
    • -
    • -
      -

      setAccessToken

      -
      public void setAccessToken(String accessToken)
      -
      Helper method to set access token for the first OAuth2 authentication.
      -
      -
      Parameters:
      -
      accessToken - Access token
      -
      -
      -
    • -
    • -
      -

      setUserAgent

      -
      public ApiClient setUserAgent(String userAgent)
      -
      Set the User-Agent header's value (by adding to the default header map).
      -
      -
      Parameters:
      -
      userAgent - HTTP request's user agent
      -
      Returns:
      -
      ApiClient
      -
      -
      -
    • -
    • -
      -

      addDefaultHeader

      -
      public ApiClient addDefaultHeader(String key, - String value)
      -
      Add a default header.
      -
      -
      Parameters:
      -
      key - The header's key
      -
      value - The header's value
      -
      Returns:
      -
      ApiClient
      -
      -
      -
    • -
    • -
      -

      addDefaultCookie

      -
      public ApiClient addDefaultCookie(String key, - String value)
      -
      Add a default cookie.
      -
      -
      Parameters:
      -
      key - The cookie's key
      -
      value - The cookie's value
      -
      Returns:
      -
      ApiClient
      -
      -
      -
    • -
    • -
      -

      isDebugging

      -
      public boolean isDebugging()
      -
      Check that whether debugging is enabled for this API client.
      -
      -
      Returns:
      -
      True if debugging is enabled, false otherwise.
      -
      -
      -
    • -
    • -
      -

      setDebugging

      -
      public ApiClient setDebugging(boolean debugging)
      -
      Enable/disable debugging for this API client.
      -
      -
      Parameters:
      -
      debugging - To enable (true) or disable (false) debugging
      -
      Returns:
      -
      ApiClient
      -
      -
      -
    • -
    • -
      -

      getTempFolderPath

      -
      public String getTempFolderPath()
      -
      The path of temporary folder used to store downloaded files from endpoints - with file response. The default value is null, i.e. using - the system's default temporary folder.
      -
      -
      Returns:
      -
      Temporary folder path
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      setTempFolderPath

      -
      public ApiClient setTempFolderPath(String tempFolderPath)
      -
      Set the temporary folder path (for downloading files)
      -
      -
      Parameters:
      -
      tempFolderPath - Temporary folder path
      -
      Returns:
      -
      ApiClient
      -
      -
      -
    • -
    • -
      -

      getConnectTimeout

      -
      public int getConnectTimeout()
      -
      Get connection timeout (in milliseconds).
      -
      -
      Returns:
      -
      Timeout in milliseconds
      -
      -
      -
    • -
    • -
      -

      setConnectTimeout

      -
      public ApiClient setConnectTimeout(int connectionTimeout)
      -
      Sets the connect timeout (in milliseconds). - A value of 0 means no timeout, otherwise values must be between 1 and - Integer.MAX_VALUE.
      -
      -
      Parameters:
      -
      connectionTimeout - connection timeout in milliseconds
      -
      Returns:
      -
      Api client
      -
      -
      -
    • -
    • -
      -

      getReadTimeout

      -
      public int getReadTimeout()
      -
      Get read timeout (in milliseconds).
      -
      -
      Returns:
      -
      Timeout in milliseconds
      -
      -
      -
    • -
    • -
      -

      setReadTimeout

      -
      public ApiClient setReadTimeout(int readTimeout)
      -
      Sets the read timeout (in milliseconds). - A value of 0 means no timeout, otherwise values must be between 1 and - Integer.MAX_VALUE.
      -
      -
      Parameters:
      -
      readTimeout - read timeout in milliseconds
      -
      Returns:
      -
      Api client
      -
      -
      -
    • -
    • -
      -

      getWriteTimeout

      -
      public int getWriteTimeout()
      -
      Get write timeout (in milliseconds).
      -
      -
      Returns:
      -
      Timeout in milliseconds
      -
      -
      -
    • -
    • -
      -

      setWriteTimeout

      -
      public ApiClient setWriteTimeout(int writeTimeout)
      -
      Sets the write timeout (in milliseconds). - A value of 0 means no timeout, otherwise values must be between 1 and - Integer.MAX_VALUE.
      -
      -
      Parameters:
      -
      writeTimeout - connection timeout in milliseconds
      -
      Returns:
      -
      Api client
      -
      -
      -
    • -
    • -
      -

      parameterToString

      -
      public String parameterToString(Object param)
      -
      Format the given parameter object into string.
      -
      -
      Parameters:
      -
      param - Parameter
      -
      Returns:
      -
      String representation of the parameter
      -
      -
      -
    • -
    • -
      -

      parameterToPair

      -
      public List<Pair> parameterToPair(String name, - Object value)
      -
      Formats the specified query parameter to a list containing a single Pair object. - - Note that value must not be a collection.
      -
      -
      Parameters:
      -
      name - The name of the parameter.
      -
      value - The value of the parameter.
      -
      Returns:
      -
      A list containing a single Pair object.
      -
      -
      -
    • -
    • -
      -

      parameterToPairs

      -
      public List<Pair> parameterToPairs(String collectionFormat, - String name, - Collection value)
      -
      Formats the specified collection query parameters to a list of Pair objects. - - Note that the values of each of the returned Pair objects are percent-encoded.
      -
      -
      Parameters:
      -
      collectionFormat - The collection format of the parameter.
      -
      name - The name of the parameter.
      -
      value - The value of the parameter.
      -
      Returns:
      -
      A list of Pair objects.
      -
      -
      -
    • -
    • -
      -

      collectionPathParameterToString

      -
      public String collectionPathParameterToString(String collectionFormat, - Collection value)
      -
      Formats the specified collection path parameter to a string value.
      -
      -
      Parameters:
      -
      collectionFormat - The collection format of the parameter.
      -
      value - The value of the parameter.
      -
      Returns:
      -
      String representation of the parameter
      -
      -
      -
    • -
    • -
      -

      sanitizeFilename

      -
      public String sanitizeFilename(String filename)
      -
      Sanitize filename by removing path. - e.g. ../../sun.gif becomes sun.gif
      -
      -
      Parameters:
      -
      filename - The filename to be sanitized
      -
      Returns:
      -
      The sanitized filename
      -
      -
      -
    • -
    • -
      -

      isJsonMime

      -
      public boolean isJsonMime(String mime)
      -
      Check if the given MIME is a JSON MIME. - JSON MIME examples: - application/json - application/json; charset=UTF8 - APPLICATION/JSON - application/vnd.company+json - "* / *" is also default to JSON
      -
      -
      Parameters:
      -
      mime - MIME (Multipurpose Internet Mail Extensions)
      -
      Returns:
      -
      True if the given MIME is JSON, false otherwise.
      -
      -
      -
    • -
    • -
      -

      selectHeaderAccept

      -
      public String selectHeaderAccept(String[] accepts)
      -
      Select the Accept header's value from the given accepts array: - if JSON exists in the given array, use it; - otherwise use all of them (joining into a string)
      -
      -
      Parameters:
      -
      accepts - The accepts array to select from
      -
      Returns:
      -
      The Accept header to use. If the given array is empty, - null will be returned (not to set the Accept header explicitly).
      -
      -
      -
    • -
    • -
      -

      selectHeaderContentType

      -
      public String selectHeaderContentType(String[] contentTypes)
      -
      Select the Content-Type header's value from the given array: - if JSON exists in the given array, use it; - otherwise use the first one of the array.
      -
      -
      Parameters:
      -
      contentTypes - The Content-Type array to select from
      -
      Returns:
      -
      The Content-Type header to use. If the given array is empty, - returns null. If it matches "any", JSON will be used.
      -
      -
      -
    • -
    • -
      -

      escapeString

      -
      public String escapeString(String str)
      -
      Escape the given string to be used as URL query value.
      -
      -
      Parameters:
      -
      str - String to be escaped
      -
      Returns:
      -
      Escaped string
      -
      -
      -
    • -
    • -
      -

      deserialize

      -
      public <T> T deserialize(okhttp3.Response response, - Type returnType) - throws ApiException
      -
      Deserialize response body to Java object, according to the return type and - the Content-Type response header.
      -
      -
      Type Parameters:
      -
      T - Type
      -
      Parameters:
      -
      response - HTTP response
      -
      returnType - The type of the Java object
      -
      Returns:
      -
      The deserialized Java object
      -
      Throws:
      -
      ApiException - If fail to deserialize response body, i.e. cannot read response body - or the Content-Type of the response is not supported.
      -
      -
      -
    • -
    • -
      -

      serialize

      -
      public okhttp3.RequestBody serialize(Object obj, - String contentType) - throws ApiException
      -
      Serialize the given Java object into request body according to the object's - class and the request Content-Type.
      -
      -
      Parameters:
      -
      obj - The Java object
      -
      contentType - The request Content-Type
      -
      Returns:
      -
      The serialized request body
      -
      Throws:
      -
      ApiException - If fail to serialize the given object
      -
      -
      -
    • -
    • -
      -

      downloadFileFromResponse

      -
      public File downloadFileFromResponse(okhttp3.Response response) - throws ApiException
      -
      Download file from the given response.
      -
      -
      Parameters:
      -
      response - An instance of the Response object
      -
      Returns:
      -
      Downloaded file
      -
      Throws:
      -
      ApiException - If fail to read file content from response and write to disk
      -
      -
      -
    • -
    • -
      -

      prepareDownloadFile

      -
      public File prepareDownloadFile(okhttp3.Response response) - throws IOException
      -
      Prepare file for download
      -
      -
      Parameters:
      -
      response - An instance of the Response object
      -
      Returns:
      -
      Prepared file for the download
      -
      Throws:
      -
      IOException - If fail to prepare file for download
      -
      -
      -
    • -
    • -
      -

      execute

      -
      public <T> ApiResponse<T> execute(okhttp3.Call call) - throws ApiException
      - -
      -
      Type Parameters:
      -
      T - Type
      -
      Parameters:
      -
      call - An instance of the Call object
      -
      Returns:
      -
      ApiResponse<T>
      -
      Throws:
      -
      ApiException - If fail to execute the call
      -
      -
      -
    • -
    • -
      -

      execute

      -
      public <T> ApiResponse<T> execute(okhttp3.Call call, - Type returnType) - throws ApiException
      -
      Execute HTTP call and deserialize the HTTP response body into the given return type.
      -
      -
      Type Parameters:
      -
      T - The return type corresponding to (same with) returnType
      -
      Parameters:
      -
      returnType - The return type used to deserialize HTTP response body
      -
      call - Call
      -
      Returns:
      -
      ApiResponse object containing response status, headers and - data, which is a Java object deserialized from response body and would be null - when returnType is null.
      -
      Throws:
      -
      ApiException - If fail to execute the call
      -
      -
      -
    • -
    • -
      -

      executeAsync

      -
      public <T> void executeAsync(okhttp3.Call call, - ApiCallback<T> callback)
      - -
      -
      Type Parameters:
      -
      T - Type
      -
      Parameters:
      -
      call - An instance of the Call object
      -
      callback - ApiCallback<T>
      -
      -
      -
    • -
    • -
      -

      executeAsync

      -
      public <T> void executeAsync(okhttp3.Call call, - Type returnType, - ApiCallback<T> callback)
      -
      Execute HTTP call asynchronously.
      -
      -
      Type Parameters:
      -
      T - Type
      -
      Parameters:
      -
      call - The callback to be executed when the API call finishes
      -
      returnType - Return type
      -
      callback - ApiCallback
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      handleResponse

      -
      public <T> T handleResponse(okhttp3.Response response, - Type returnType) - throws ApiException
      -
      Handle the given response, return the deserialized object when the response is successful.
      -
      -
      Type Parameters:
      -
      T - Type
      -
      Parameters:
      -
      response - Response
      -
      returnType - Return type
      -
      Returns:
      -
      Type
      -
      Throws:
      -
      ApiException - If the response has an unsuccessful status code or - fail to deserialize the response body
      -
      -
      -
    • -
    • -
      -

      buildCall

      -
      public okhttp3.Call buildCall(String baseUrl, - String path, - String method, - List<Pair> queryParams, - List<Pair> collectionQueryParams, - Object body, - Map<String,String> headerParams, - Map<String,String> cookieParams, - Map<String,Object> formParams, - String[] authNames, - ApiCallback callback) - throws ApiException
      -
      Build HTTP call with the given options.
      -
      -
      Parameters:
      -
      baseUrl - The base URL
      -
      path - The sub-path of the HTTP URL
      -
      method - The request method, one of "GET", "HEAD", "OPTIONS", "POST", "PUT", "PATCH" and "DELETE"
      -
      queryParams - The query parameters
      -
      collectionQueryParams - The collection query parameters
      -
      body - The request body object
      -
      headerParams - The header parameters
      -
      cookieParams - The cookie parameters
      -
      formParams - The form parameters
      -
      authNames - The authentications to apply
      -
      callback - Callback for upload/download progress
      -
      Returns:
      -
      The HTTP call
      -
      Throws:
      -
      ApiException - If fail to serialize the request body object
      -
      -
      -
    • -
    • -
      -

      buildRequest

      -
      public okhttp3.Request buildRequest(String baseUrl, - String path, - String method, - List<Pair> queryParams, - List<Pair> collectionQueryParams, - Object body, - Map<String,String> headerParams, - Map<String,String> cookieParams, - Map<String,Object> formParams, - String[] authNames, - ApiCallback callback) - throws ApiException
      -
      Build an HTTP request with the given options.
      -
      -
      Parameters:
      -
      baseUrl - The base URL
      -
      path - The sub-path of the HTTP URL
      -
      method - The request method, one of "GET", "HEAD", "OPTIONS", "POST", "PUT", "PATCH" and "DELETE"
      -
      queryParams - The query parameters
      -
      collectionQueryParams - The collection query parameters
      -
      body - The request body object
      -
      headerParams - The header parameters
      -
      cookieParams - The cookie parameters
      -
      formParams - The form parameters
      -
      authNames - The authentications to apply
      -
      callback - Callback for upload/download progress
      -
      Returns:
      -
      The HTTP request
      -
      Throws:
      -
      ApiException - If fail to serialize the request body object
      -
      -
      -
    • -
    • -
      -

      buildUrl

      -
      public String buildUrl(String baseUrl, - String path, - List<Pair> queryParams, - List<Pair> collectionQueryParams)
      -
      Build full URL by concatenating base path, the given sub path and query parameters.
      -
      -
      Parameters:
      -
      baseUrl - The base URL
      -
      path - The sub path
      -
      queryParams - The query parameters
      -
      collectionQueryParams - The collection query parameters
      -
      Returns:
      -
      The full URL
      -
      -
      -
    • -
    • -
      -

      processHeaderParams

      -
      public void processHeaderParams(Map<String,String> headerParams, - okhttp3.Request.Builder reqBuilder)
      -
      Set header parameters to the request builder, including default headers.
      -
      -
      Parameters:
      -
      headerParams - Header parameters in the form of Map
      -
      reqBuilder - Request.Builder
      -
      -
      -
    • -
    • -
      -

      processCookieParams

      -
      public void processCookieParams(Map<String,String> cookieParams, - okhttp3.Request.Builder reqBuilder)
      -
      Set cookie parameters to the request builder, including default cookies.
      -
      -
      Parameters:
      -
      cookieParams - Cookie parameters in the form of Map
      -
      reqBuilder - Request.Builder
      -
      -
      -
    • -
    • -
      -

      updateParamsForAuth

      -
      public void updateParamsForAuth(String[] authNames, - List<Pair> queryParams, - Map<String,String> headerParams, - Map<String,String> cookieParams, - String payload, - String method, - URI uri) - throws ApiException
      -
      Update query and header parameters based on authentication settings.
      -
      -
      Parameters:
      -
      authNames - The authentications to apply
      -
      queryParams - List of query parameters
      -
      headerParams - Map of header parameters
      -
      cookieParams - Map of cookie parameters
      -
      payload - HTTP request body
      -
      method - HTTP method
      -
      uri - URI
      -
      Throws:
      -
      ApiException - If fails to update the parameters
      -
      -
      -
    • -
    • -
      -

      buildRequestBodyFormEncoding

      -
      public okhttp3.RequestBody buildRequestBodyFormEncoding(Map<String,Object> formParams)
      -
      Build a form-encoding request body with the given form parameters.
      -
      -
      Parameters:
      -
      formParams - Form parameters in the form of Map
      -
      Returns:
      -
      RequestBody
      -
      -
      -
    • -
    • -
      -

      buildRequestBodyMultipart

      -
      public okhttp3.RequestBody buildRequestBodyMultipart(Map<String,Object> formParams)
      -
      Build a multipart (file uploading) request body with the given form parameters, - which could contain text fields and file fields.
      -
      -
      Parameters:
      -
      formParams - Form parameters in the form of Map
      -
      Returns:
      -
      RequestBody
      -
      -
      -
    • -
    • -
      -

      guessContentTypeFromFile

      -
      public String guessContentTypeFromFile(File file)
      -
      Guess Content-Type header from the given file (defaults to "application/octet-stream").
      -
      -
      Parameters:
      -
      file - The given file
      -
      Returns:
      -
      The guessed Content-Type
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/ApiException.html b/samples/java-client/apidocs/org/openapitools/client/ApiException.html deleted file mode 100644 index 5fadd6584..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/ApiException.html +++ /dev/null @@ -1,432 +0,0 @@ - - - - -ApiException (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class ApiException

-
-
java.lang.Object -
java.lang.Throwable -
java.lang.Exception -
org.openapitools.client.ApiException
-
-
-
-
-
-
All Implemented Interfaces:
-
Serializable
-
-
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", - date="2022-10-16T20:20:49.941+09:00[Asia/Tokyo]") -public class ApiException -extends Exception
-

ApiException class.

-
-
See Also:
-
- -
-
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      ApiException

      -
      public ApiException()
      -

      Constructor for ApiException.

      -
      -
    • -
    • -
      -

      ApiException

      -
      public ApiException(Throwable throwable)
      -

      Constructor for ApiException.

      -
      -
      Parameters:
      -
      throwable - a Throwable object
      -
      -
      -
    • -
    • -
      -

      ApiException

      -
      public ApiException(String message)
      -

      Constructor for ApiException.

      -
      -
      Parameters:
      -
      message - the error message
      -
      -
      -
    • -
    • -
      -

      ApiException

      -
      public ApiException(String message, - Throwable throwable, - int code, - Map<String,List<String>> responseHeaders, - String responseBody)
      -

      Constructor for ApiException.

      -
      -
      Parameters:
      -
      message - the error message
      -
      throwable - a Throwable object
      -
      code - HTTP status code
      -
      responseHeaders - a Map of HTTP response headers
      -
      responseBody - the response body
      -
      -
      -
    • -
    • -
      -

      ApiException

      -
      public ApiException(String message, - int code, - Map<String,List<String>> responseHeaders, - String responseBody)
      -

      Constructor for ApiException.

      -
      -
      Parameters:
      -
      message - the error message
      -
      code - HTTP status code
      -
      responseHeaders - a Map of HTTP response headers
      -
      responseBody - the response body
      -
      -
      -
    • -
    • -
      -

      ApiException

      -
      public ApiException(String message, - Throwable throwable, - int code, - Map<String,List<String>> responseHeaders)
      -

      Constructor for ApiException.

      -
      -
      Parameters:
      -
      message - the error message
      -
      throwable - a Throwable object
      -
      code - HTTP status code
      -
      responseHeaders - a Map of HTTP response headers
      -
      -
      -
    • -
    • -
      -

      ApiException

      -
      public ApiException(int code, - Map<String,List<String>> responseHeaders, - String responseBody)
      -

      Constructor for ApiException.

      -
      -
      Parameters:
      -
      code - HTTP status code
      -
      responseHeaders - a Map of HTTP response headers
      -
      responseBody - the response body
      -
      -
      -
    • -
    • -
      -

      ApiException

      -
      public ApiException(int code, - String message)
      -

      Constructor for ApiException.

      -
      -
      Parameters:
      -
      code - HTTP status code
      -
      message - a String object
      -
      -
      -
    • -
    • -
      -

      ApiException

      -
      public ApiException(int code, - String message, - Map<String,List<String>> responseHeaders, - String responseBody)
      -

      Constructor for ApiException.

      -
      -
      Parameters:
      -
      code - HTTP status code
      -
      message - the error message
      -
      responseHeaders - a Map of HTTP response headers
      -
      responseBody - the response body
      -
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      getCode

      -
      public int getCode()
      -
      Get the HTTP status code.
      -
      -
      Returns:
      -
      HTTP status code
      -
      -
      -
    • -
    • -
      -

      getResponseHeaders

      -
      public Map<String,List<String>> getResponseHeaders()
      -
      Get the HTTP response headers.
      -
      -
      Returns:
      -
      A map of list of string
      -
      -
      -
    • -
    • -
      -

      getResponseBody

      -
      public String getResponseBody()
      -
      Get the HTTP response body.
      -
      -
      Returns:
      -
      Response body in the form of string
      -
      -
      -
    • -
    • -
      -

      getMessage

      -
      public String getMessage()
      -
      Get the exception message including HTTP response data.
      -
      -
      Overrides:
      -
      getMessage in class Throwable
      -
      Returns:
      -
      The exception message
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/ApiResponse.html b/samples/java-client/apidocs/org/openapitools/client/ApiResponse.html deleted file mode 100644 index e7ca43411..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/ApiResponse.html +++ /dev/null @@ -1,253 +0,0 @@ - - - - -ApiResponse (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class ApiResponse<T>

-
-
java.lang.Object -
org.openapitools.client.ApiResponse<T>
-
-
-
-
public class ApiResponse<T> -extends Object
-
API response returned by API call.
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      ApiResponse

      -
      public ApiResponse(int statusCode, - Map<String,List<String>> headers)
      -

      Constructor for ApiResponse.

      -
      -
      Parameters:
      -
      statusCode - The status code of HTTP response
      -
      headers - The headers of HTTP response
      -
      -
      -
    • -
    • -
      -

      ApiResponse

      -
      public ApiResponse(int statusCode, - Map<String,List<String>> headers, - T data)
      -

      Constructor for ApiResponse.

      -
      -
      Parameters:
      -
      statusCode - The status code of HTTP response
      -
      headers - The headers of HTTP response
      -
      data - The object deserialized from response bod
      -
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      getStatusCode

      -
      public int getStatusCode()
      -

      Get the status code.

      -
      -
      Returns:
      -
      the status code
      -
      -
      -
    • -
    • -
      -

      getHeaders

      -
      public Map<String,List<String>> getHeaders()
      -

      Get the headers.

      -
      -
      Returns:
      -
      a Map of headers
      -
      -
      -
    • -
    • -
      -

      getData

      -
      public T getData()
      -

      Get the data.

      -
      -
      Returns:
      -
      the data
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/Configuration.html b/samples/java-client/apidocs/org/openapitools/client/Configuration.html deleted file mode 100644 index f250d1367..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/Configuration.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - -Configuration (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class Configuration

-
-
java.lang.Object -
org.openapitools.client.Configuration
-
-
-
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", - date="2022-10-16T20:20:49.941+09:00[Asia/Tokyo]") -public class Configuration -extends Object
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      Configuration

      -
      public Configuration()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      getDefaultApiClient

      -
      public static ApiClient getDefaultApiClient()
      -
      Get the default API client, which would be used when creating API - instances without providing an API client.
      -
      -
      Returns:
      -
      Default API client
      -
      -
      -
    • -
    • -
      -

      setDefaultApiClient

      -
      public static void setDefaultApiClient(ApiClient apiClient)
      -
      Set the default API client, which would be used when creating API - instances without providing an API client.
      -
      -
      Parameters:
      -
      apiClient - API client
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/JSON.ByteArrayAdapter.html b/samples/java-client/apidocs/org/openapitools/client/JSON.ByteArrayAdapter.html deleted file mode 100644 index 85a2e0ee6..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/JSON.ByteArrayAdapter.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - -JSON.ByteArrayAdapter (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class JSON.ByteArrayAdapter

-
-
java.lang.Object -
com.google.gson.TypeAdapter<byte[]> -
org.openapitools.client.JSON.ByteArrayAdapter
-
-
-
-
-
Enclosing class:
-
JSON
-
-
-
public static class JSON.ByteArrayAdapter -extends com.google.gson.TypeAdapter<byte[]>
-
Gson TypeAdapter for Byte Array type
-
-
-
    - -
  • -
    -

    Constructor Summary

    -
    Constructors
    -
    -
    Constructor
    -
    Description
    - -
     
    -
    -
    -
  • - -
  • -
    -

    Method Summary

    -
    -
    -
    -
    -
    Modifier and Type
    -
    Method
    -
    Description
    -
    byte[]
    -
    read(com.google.gson.stream.JsonReader in)
    -
     
    -
    void
    -
    write(com.google.gson.stream.JsonWriter out, - byte[] value)
    -
     
    -
    -
    -
    -
    -

    Methods inherited from class com.google.gson.TypeAdapter

    -fromJson, fromJson, fromJsonTree, nullSafe, toJson, toJson, toJsonTree
    -
    -

    Methods inherited from class java.lang.Object

    -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
  • -
-
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      ByteArrayAdapter

      -
      public ByteArrayAdapter()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      write

      -
      public void write(com.google.gson.stream.JsonWriter out, - byte[] value) - throws IOException
      -
      -
      Specified by:
      -
      write in class com.google.gson.TypeAdapter<byte[]>
      -
      Throws:
      -
      IOException
      -
      -
      -
    • -
    • -
      -

      read

      -
      public byte[] read(com.google.gson.stream.JsonReader in) - throws IOException
      -
      -
      Specified by:
      -
      read in class com.google.gson.TypeAdapter<byte[]>
      -
      Throws:
      -
      IOException
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/JSON.DateTypeAdapter.html b/samples/java-client/apidocs/org/openapitools/client/JSON.DateTypeAdapter.html deleted file mode 100644 index 22d4d76f6..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/JSON.DateTypeAdapter.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - -JSON.DateTypeAdapter (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class JSON.DateTypeAdapter

-
-
java.lang.Object -
com.google.gson.TypeAdapter<Date> -
org.openapitools.client.JSON.DateTypeAdapter
-
-
-
-
-
Enclosing class:
-
JSON
-
-
-
public static class JSON.DateTypeAdapter -extends com.google.gson.TypeAdapter<Date>
-
Gson TypeAdapter for java.util.Date type - If the dateFormat is null, ISO8601Utils will be used.
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      DateTypeAdapter

      -
      public DateTypeAdapter()
      -
      -
    • -
    • -
      -

      DateTypeAdapter

      -
      public DateTypeAdapter(DateFormat dateFormat)
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      setFormat

      -
      public void setFormat(DateFormat dateFormat)
      -
      -
    • -
    • -
      -

      write

      -
      public void write(com.google.gson.stream.JsonWriter out, - Date date) - throws IOException
      -
      -
      Specified by:
      -
      write in class com.google.gson.TypeAdapter<Date>
      -
      Throws:
      -
      IOException
      -
      -
      -
    • -
    • -
      -

      read

      -
      public Date read(com.google.gson.stream.JsonReader in) - throws IOException
      -
      -
      Specified by:
      -
      read in class com.google.gson.TypeAdapter<Date>
      -
      Throws:
      -
      IOException
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/JSON.LocalDateTypeAdapter.html b/samples/java-client/apidocs/org/openapitools/client/JSON.LocalDateTypeAdapter.html deleted file mode 100644 index 76c19a3f2..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/JSON.LocalDateTypeAdapter.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - -JSON.LocalDateTypeAdapter (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class JSON.LocalDateTypeAdapter

-
-
java.lang.Object -
com.google.gson.TypeAdapter<LocalDate> -
org.openapitools.client.JSON.LocalDateTypeAdapter
-
-
-
-
-
Enclosing class:
-
JSON
-
-
-
public static class JSON.LocalDateTypeAdapter -extends com.google.gson.TypeAdapter<LocalDate>
-
Gson TypeAdapter for JSR310 LocalDate type
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      LocalDateTypeAdapter

      -
      public LocalDateTypeAdapter()
      -
      -
    • -
    • -
      -

      LocalDateTypeAdapter

      -
      public LocalDateTypeAdapter(DateTimeFormatter formatter)
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      setFormat

      -
      public void setFormat(DateTimeFormatter dateFormat)
      -
      -
    • -
    • -
      -

      write

      -
      public void write(com.google.gson.stream.JsonWriter out, - LocalDate date) - throws IOException
      -
      -
      Specified by:
      -
      write in class com.google.gson.TypeAdapter<LocalDate>
      -
      Throws:
      -
      IOException
      -
      -
      -
    • -
    • -
      -

      read

      -
      public LocalDate read(com.google.gson.stream.JsonReader in) - throws IOException
      -
      -
      Specified by:
      -
      read in class com.google.gson.TypeAdapter<LocalDate>
      -
      Throws:
      -
      IOException
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/JSON.OffsetDateTimeTypeAdapter.html b/samples/java-client/apidocs/org/openapitools/client/JSON.OffsetDateTimeTypeAdapter.html deleted file mode 100644 index cc0e09341..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/JSON.OffsetDateTimeTypeAdapter.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - -JSON.OffsetDateTimeTypeAdapter (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class JSON.OffsetDateTimeTypeAdapter

-
-
java.lang.Object -
com.google.gson.TypeAdapter<OffsetDateTime> -
org.openapitools.client.JSON.OffsetDateTimeTypeAdapter
-
-
-
-
-
Enclosing class:
-
JSON
-
-
-
public static class JSON.OffsetDateTimeTypeAdapter -extends com.google.gson.TypeAdapter<OffsetDateTime>
-
Gson TypeAdapter for JSR310 OffsetDateTime type
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      OffsetDateTimeTypeAdapter

      -
      public OffsetDateTimeTypeAdapter()
      -
      -
    • -
    • -
      -

      OffsetDateTimeTypeAdapter

      -
      public OffsetDateTimeTypeAdapter(DateTimeFormatter formatter)
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    - -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/JSON.SqlDateTypeAdapter.html b/samples/java-client/apidocs/org/openapitools/client/JSON.SqlDateTypeAdapter.html deleted file mode 100644 index 16bba34fb..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/JSON.SqlDateTypeAdapter.html +++ /dev/null @@ -1,236 +0,0 @@ - - - - -JSON.SqlDateTypeAdapter (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class JSON.SqlDateTypeAdapter

-
-
java.lang.Object -
com.google.gson.TypeAdapter<Date> -
org.openapitools.client.JSON.SqlDateTypeAdapter
-
-
-
-
-
Enclosing class:
-
JSON
-
-
-
public static class JSON.SqlDateTypeAdapter -extends com.google.gson.TypeAdapter<Date>
-
Gson TypeAdapter for java.sql.Date type - If the dateFormat is null, a simple "yyyy-MM-dd" format will be used - (more efficient than SimpleDateFormat).
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      SqlDateTypeAdapter

      -
      public SqlDateTypeAdapter()
      -
      -
    • -
    • -
      -

      SqlDateTypeAdapter

      -
      public SqlDateTypeAdapter(DateFormat dateFormat)
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      setFormat

      -
      public void setFormat(DateFormat dateFormat)
      -
      -
    • -
    • -
      -

      write

      -
      public void write(com.google.gson.stream.JsonWriter out, - Date date) - throws IOException
      -
      -
      Specified by:
      -
      write in class com.google.gson.TypeAdapter<Date>
      -
      Throws:
      -
      IOException
      -
      -
      -
    • -
    • -
      -

      read

      -
      public Date read(com.google.gson.stream.JsonReader in) - throws IOException
      -
      -
      Specified by:
      -
      read in class com.google.gson.TypeAdapter<Date>
      -
      Throws:
      -
      IOException
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/JSON.html b/samples/java-client/apidocs/org/openapitools/client/JSON.html deleted file mode 100644 index be47f84b6..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/JSON.html +++ /dev/null @@ -1,340 +0,0 @@ - - - - -JSON (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class JSON

-
-
java.lang.Object -
org.openapitools.client.JSON
-
-
-
-
public class JSON -extends Object
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      JSON

      -
      public JSON()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      createGson

      -
      public static com.google.gson.GsonBuilder createGson()
      -
      -
    • -
    • -
      -

      getGson

      -
      public static com.google.gson.Gson getGson()
      -
      Get Gson.
      -
      -
      Returns:
      -
      Gson
      -
      -
      -
    • -
    • -
      -

      setGson

      -
      public static void setGson(com.google.gson.Gson gson)
      -
      Set Gson.
      -
      -
      Parameters:
      -
      gson - Gson
      -
      -
      -
    • -
    • -
      -

      setLenientOnJson

      -
      public static void setLenientOnJson(boolean lenientOnJson)
      -
      -
    • -
    • -
      -

      serialize

      -
      public static String serialize(Object obj)
      -
      Serialize the given Java object into JSON string.
      -
      -
      Parameters:
      -
      obj - Object
      -
      Returns:
      -
      String representation of the JSON
      -
      -
      -
    • -
    • -
      -

      deserialize

      -
      public static <T> T deserialize(String body, - Type returnType)
      -
      Deserialize the given JSON string to Java object.
      -
      -
      Type Parameters:
      -
      T - Type
      -
      Parameters:
      -
      body - The JSON string
      -
      returnType - The type to deserialize into
      -
      Returns:
      -
      The deserialized Java object
      -
      -
      -
    • -
    • -
      -

      setOffsetDateTimeFormat

      -
      public static void setOffsetDateTimeFormat(DateTimeFormatter dateFormat)
      -
      -
    • -
    • -
      -

      setLocalDateFormat

      -
      public static void setLocalDateFormat(DateTimeFormatter dateFormat)
      -
      -
    • -
    • -
      -

      setDateFormat

      -
      public static void setDateFormat(DateFormat dateFormat)
      -
      -
    • -
    • -
      -

      setSqlDateFormat

      -
      public static void setSqlDateFormat(DateFormat dateFormat)
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/Pair.html b/samples/java-client/apidocs/org/openapitools/client/Pair.html deleted file mode 100644 index e736ff7bd..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/Pair.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - -Pair (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class Pair

-
-
java.lang.Object -
org.openapitools.client.Pair
-
-
-
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", - date="2022-10-16T20:20:49.941+09:00[Asia/Tokyo]") -public class Pair -extends Object
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      Pair

      -
      public Pair(String name, - String value)
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      getName

      -
      public String getName()
      -
      -
    • -
    • -
      -

      getValue

      -
      public String getValue()
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/ProgressRequestBody.html b/samples/java-client/apidocs/org/openapitools/client/ProgressRequestBody.html deleted file mode 100644 index 4374e94f8..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/ProgressRequestBody.html +++ /dev/null @@ -1,243 +0,0 @@ - - - - -ProgressRequestBody (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class ProgressRequestBody

-
-
java.lang.Object -
okhttp3.RequestBody -
org.openapitools.client.ProgressRequestBody
-
-
-
-
-
public class ProgressRequestBody -extends okhttp3.RequestBody
-
-
-
    - -
  • -
    -

    Nested Class Summary

    -
    -

    Nested classes/interfaces inherited from class okhttp3.RequestBody

    -okhttp3.RequestBody.Companion
    -
    -
  • - -
  • -
    -

    Field Summary

    -
    -

    Fields inherited from class okhttp3.RequestBody

    -Companion
    -
    -
  • - -
  • -
    -

    Constructor Summary

    -
    Constructors
    -
    -
    Constructor
    -
    Description
    -
    ProgressRequestBody(okhttp3.RequestBody requestBody, - ApiCallback callback)
    -
     
    -
    -
    -
  • - -
  • -
    -

    Method Summary

    -
    -
    -
    -
    -
    Modifier and Type
    -
    Method
    -
    Description
    -
    long
    - -
     
    -
    okhttp3.MediaType
    - -
     
    -
    void
    -
    writeTo(okio.BufferedSink sink)
    -
     
    -
    -
    -
    -
    -

    Methods inherited from class okhttp3.RequestBody

    -create, create, create, create, create, create, create, create, create, create, create, create, create, isDuplex, isOneShot
    -
    -

    Methods inherited from class java.lang.Object

    -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
  • -
-
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      ProgressRequestBody

      -
      public ProgressRequestBody(okhttp3.RequestBody requestBody, - ApiCallback callback)
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      contentType

      -
      public okhttp3.MediaType contentType()
      -
      -
      Specified by:
      -
      contentType in class okhttp3.RequestBody
      -
      -
      -
    • -
    • -
      -

      contentLength

      -
      public long contentLength() - throws IOException
      -
      -
      Overrides:
      -
      contentLength in class okhttp3.RequestBody
      -
      Throws:
      -
      IOException
      -
      -
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(okio.BufferedSink sink) - throws IOException
      -
      -
      Specified by:
      -
      writeTo in class okhttp3.RequestBody
      -
      Throws:
      -
      IOException
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/ProgressResponseBody.html b/samples/java-client/apidocs/org/openapitools/client/ProgressResponseBody.html deleted file mode 100644 index 318505a2b..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/ProgressResponseBody.html +++ /dev/null @@ -1,241 +0,0 @@ - - - - -ProgressResponseBody (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class ProgressResponseBody

-
-
java.lang.Object -
okhttp3.ResponseBody -
org.openapitools.client.ProgressResponseBody
-
-
-
-
-
All Implemented Interfaces:
-
Closeable, AutoCloseable
-
-
-
public class ProgressResponseBody -extends okhttp3.ResponseBody
-
-
-
    - -
  • -
    -

    Nested Class Summary

    -
    -

    Nested classes/interfaces inherited from class okhttp3.ResponseBody

    -okhttp3.ResponseBody.BomAwareReader, okhttp3.ResponseBody.Companion
    -
    -
  • - -
  • -
    -

    Field Summary

    -
    -

    Fields inherited from class okhttp3.ResponseBody

    -Companion
    -
    -
  • - -
  • -
    -

    Constructor Summary

    -
    Constructors
    -
    -
    Constructor
    -
    Description
    -
    ProgressResponseBody(okhttp3.ResponseBody responseBody, - ApiCallback callback)
    -
     
    -
    -
    -
  • - -
  • -
    -

    Method Summary

    -
    -
    -
    -
    -
    Modifier and Type
    -
    Method
    -
    Description
    -
    long
    - -
     
    -
    okhttp3.MediaType
    - -
     
    -
    okio.BufferedSource
    - -
     
    -
    -
    -
    -
    -

    Methods inherited from class okhttp3.ResponseBody

    -bytes, byteStream, byteString, charStream, close, create, create, create, create, create, create, create, create, string
    -
    -

    Methods inherited from class java.lang.Object

    -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
  • -
-
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      ProgressResponseBody

      -
      public ProgressResponseBody(okhttp3.ResponseBody responseBody, - ApiCallback callback)
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      contentType

      -
      public okhttp3.MediaType contentType()
      -
      -
      Specified by:
      -
      contentType in class okhttp3.ResponseBody
      -
      -
      -
    • -
    • -
      -

      contentLength

      -
      public long contentLength()
      -
      -
      Specified by:
      -
      contentLength in class okhttp3.ResponseBody
      -
      -
      -
    • -
    • -
      -

      source

      -
      public okio.BufferedSource source()
      -
      -
      Specified by:
      -
      source in class okhttp3.ResponseBody
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/ServerConfiguration.html b/samples/java-client/apidocs/org/openapitools/client/ServerConfiguration.html deleted file mode 100644 index 5a45b07bd..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/ServerConfiguration.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - -ServerConfiguration (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class ServerConfiguration

-
-
java.lang.Object -
org.openapitools.client.ServerConfiguration
-
-
-
-
public class ServerConfiguration -extends Object
-
Representing a Server configuration.
-
-
- -
-
-
    - -
  • -
    -

    Field Details

    - -
    -
  • - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      ServerConfiguration

      -
      public ServerConfiguration(String URL, - String description, - Map<String,ServerVariable> variables)
      -
      -
      Parameters:
      -
      URL - A URL to the target host.
      -
      description - A description of the host designated by the URL.
      -
      variables - A map between a variable name and its value. The value is used for substitution in the server's URL template.
      -
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      URL

      -
      public String URL(Map<String,String> variables)
      -
      Format URL template using given variables.
      -
      -
      Parameters:
      -
      variables - A map between a variable name and its value.
      -
      Returns:
      -
      Formatted URL.
      -
      -
      -
    • -
    • -
      -

      URL

      -
      public String URL()
      -
      Format URL template using default server variables.
      -
      -
      Returns:
      -
      Formatted URL.
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/ServerVariable.html b/samples/java-client/apidocs/org/openapitools/client/ServerVariable.html deleted file mode 100644 index 3b3f6f7a1..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/ServerVariable.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - -ServerVariable (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class ServerVariable

-
-
java.lang.Object -
org.openapitools.client.ServerVariable
-
-
-
-
public class ServerVariable -extends Object
-
Representing a Server Variable for server URL template substitution.
-
-
- -
-
-
    - -
  • -
    -

    Field Details

    -
      -
    • -
      -

      description

      -
      public String description
      -
      -
    • -
    • -
      -

      defaultValue

      -
      public String defaultValue
      -
      -
    • -
    • -
      -

      enumValues

      -
      public HashSet<String> enumValues
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      ServerVariable

      -
      public ServerVariable(String description, - String defaultValue, - HashSet<String> enumValues)
      -
      -
      Parameters:
      -
      description - A description for the server variable.
      -
      defaultValue - The default value to use for substitution.
      -
      enumValues - An enumeration of string values to be used if the substitution options are from a limited set.
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/StringUtil.html b/samples/java-client/apidocs/org/openapitools/client/StringUtil.html deleted file mode 100644 index 6aa101c2e..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/StringUtil.html +++ /dev/null @@ -1,242 +0,0 @@ - - - - -StringUtil (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class StringUtil

-
-
java.lang.Object -
org.openapitools.client.StringUtil
-
-
-
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", - date="2022-10-16T20:20:49.941+09:00[Asia/Tokyo]") -public class StringUtil -extends Object
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      StringUtil

      -
      public StringUtil()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      containsIgnoreCase

      -
      public static boolean containsIgnoreCase(String[] array, - String value)
      -
      Check if the given array contains the given value (with case-insensitive comparison).
      -
      -
      Parameters:
      -
      array - The array
      -
      value - The value to search
      -
      Returns:
      -
      true if the array contains the value
      -
      -
      -
    • -
    • -
      -

      join

      -
      public static String join(String[] array, - String separator)
      -
      Join an array of strings with the given separator. -

      - Note: This might be replaced by utility method from commons-lang or guava someday - if one of those libraries is added as dependency. -

      -
      -
      Parameters:
      -
      array - The array of strings
      -
      separator - The separator
      -
      Returns:
      -
      the resulting string
      -
      -
      -
    • -
    • -
      -

      join

      -
      public static String join(Collection<String> list, - String separator)
      -
      Join a list of strings with the given separator.
      -
      -
      Parameters:
      -
      list - The list of strings
      -
      separator - The separator
      -
      Returns:
      -
      the resulting string
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/api/CarbonAwareApi.html b/samples/java-client/apidocs/org/openapitools/client/api/CarbonAwareApi.html deleted file mode 100644 index e5ce2357f..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/api/CarbonAwareApi.html +++ /dev/null @@ -1,1213 +0,0 @@ - - - - -CarbonAwareApi (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class CarbonAwareApi

-
-
java.lang.Object -
org.openapitools.client.api.CarbonAwareApi
-
-
-
-
public class CarbonAwareApi -extends Object
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      CarbonAwareApi

      -
      public CarbonAwareApi()
      -
      -
    • -
    • -
      -

      CarbonAwareApi

      -
      public CarbonAwareApi(ApiClient apiClient)
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      getApiClient

      -
      public ApiClient getApiClient()
      -
      -
    • -
    • -
      -

      setApiClient

      -
      public void setApiClient(ApiClient apiClient)
      -
      -
    • -
    • -
      -

      getHostIndex

      -
      public int getHostIndex()
      -
      -
    • -
    • -
      -

      setHostIndex

      -
      public void setHostIndex(int hostIndex)
      -
      -
    • -
    • -
      -

      getCustomBaseUrl

      -
      public String getCustomBaseUrl()
      -
      -
    • -
    • -
      -

      setCustomBaseUrl

      -
      public void setCustomBaseUrl(String customBaseUrl)
      -
      -
    • -
    • -
      -

      batchForecastDataAsyncCall

      -
      public okhttp3.Call batchForecastDataAsyncCall(List<EmissionsForecastBatchParametersDTO> emissionsForecastBatchParametersDTO, - ApiCallback _callback) - throws ApiException
      -
      Build call for batchForecastDataAsync
      -
      -
      Parameters:
      -
      emissionsForecastBatchParametersDTO - Array of requested forecasts. (optional)
      -
      _callback - Callback for upload/download progress
      -
      Returns:
      -
      Call to execute
      -
      Throws:
      -
      ApiException - If fail to serialize the request body object
      -
      Http Response Details:
      -
      - - - - - -
      Status Code Description Response Headers
      200 Returns the requested forecast objects -
      400 Returned if any of the input parameters are invalid -
      500 Internal server error -
      501 Returned if the underlying data source does not support forecasting -
      -
      -
      -
    • -
    • -
      -

      batchForecastDataAsync

      -
      public List<EmissionsForecastDTO> batchForecastDataAsync(List<EmissionsForecastBatchParametersDTO> emissionsForecastBatchParametersDTO) - throws ApiException
      -
      Given an array of historical forecasts, retrieves the data that contains forecasts metadata, the optimal forecast and a range of forecasts filtered by the attributes [start...end] if provided. - This endpoint takes a batch of requests for historical forecast data, fetches them, and calculates the optimal marginal carbon intensity windows for each using the same parameters available to the '/emissions/forecasts/current' endpoint. This endpoint is useful for back-testing what one might have done in the past, if they had access to the current forecast at the time.
      -
      -
      Parameters:
      -
      emissionsForecastBatchParametersDTO - Array of requested forecasts. (optional)
      -
      Returns:
      -
      List<EmissionsForecastDTO>
      -
      Throws:
      -
      ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
      -
      Http Response Details:
      -
      - - - - - -
      Status Code Description Response Headers
      200 Returns the requested forecast objects -
      400 Returned if any of the input parameters are invalid -
      500 Internal server error -
      501 Returned if the underlying data source does not support forecasting -
      -
      -
      -
    • -
    • -
      -

      batchForecastDataAsyncWithHttpInfo

      -
      public ApiResponse<List<EmissionsForecastDTO>> batchForecastDataAsyncWithHttpInfo(List<EmissionsForecastBatchParametersDTO> emissionsForecastBatchParametersDTO) - throws ApiException
      -
      Given an array of historical forecasts, retrieves the data that contains forecasts metadata, the optimal forecast and a range of forecasts filtered by the attributes [start...end] if provided. - This endpoint takes a batch of requests for historical forecast data, fetches them, and calculates the optimal marginal carbon intensity windows for each using the same parameters available to the '/emissions/forecasts/current' endpoint. This endpoint is useful for back-testing what one might have done in the past, if they had access to the current forecast at the time.
      -
      -
      Parameters:
      -
      emissionsForecastBatchParametersDTO - Array of requested forecasts. (optional)
      -
      Returns:
      -
      ApiResponse<List<EmissionsForecastDTO>>
      -
      Throws:
      -
      ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
      -
      Http Response Details:
      -
      - - - - - -
      Status Code Description Response Headers
      200 Returns the requested forecast objects -
      400 Returned if any of the input parameters are invalid -
      500 Internal server error -
      501 Returned if the underlying data source does not support forecasting -
      -
      -
      -
    • -
    • -
      -

      batchForecastDataAsyncAsync

      -
      public okhttp3.Call batchForecastDataAsyncAsync(List<EmissionsForecastBatchParametersDTO> emissionsForecastBatchParametersDTO, - ApiCallback<List<EmissionsForecastDTO>> _callback) - throws ApiException
      -
      Given an array of historical forecasts, retrieves the data that contains forecasts metadata, the optimal forecast and a range of forecasts filtered by the attributes [start...end] if provided. (asynchronously) - This endpoint takes a batch of requests for historical forecast data, fetches them, and calculates the optimal marginal carbon intensity windows for each using the same parameters available to the '/emissions/forecasts/current' endpoint. This endpoint is useful for back-testing what one might have done in the past, if they had access to the current forecast at the time.
      -
      -
      Parameters:
      -
      emissionsForecastBatchParametersDTO - Array of requested forecasts. (optional)
      -
      _callback - The callback to be executed when the API call finishes
      -
      Returns:
      -
      The request call
      -
      Throws:
      -
      ApiException - If fail to process the API call, e.g. serializing the request body object
      -
      Http Response Details:
      -
      - - - - - -
      Status Code Description Response Headers
      200 Returns the requested forecast objects -
      400 Returned if any of the input parameters are invalid -
      500 Internal server error -
      501 Returned if the underlying data source does not support forecasting -
      -
      -
      -
    • -
    • -
      -

      getAverageCarbonIntensityCall

      -
      public okhttp3.Call getAverageCarbonIntensityCall(String location, - OffsetDateTime startTime, - OffsetDateTime endTime, - ApiCallback _callback) - throws ApiException
      -
      Build call for getAverageCarbonIntensity
      -
      -
      Parameters:
      -
      location - The location name where workflow is run (required)
      -
      startTime - The time at which the workflow we are measuring carbon intensity for started (required)
      -
      endTime - The time at which the workflow we are measuring carbon intensity for ended (required)
      -
      _callback - Callback for upload/download progress
      -
      Returns:
      -
      Call to execute
      -
      Throws:
      -
      ApiException - If fail to serialize the request body object
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Returns a single object that contains the information about the request and the average marginal carbon intensity -
      400 Returned if any of the requested items are invalid -
      500 Internal server error -
      -
      -
      -
    • -
    • -
      -

      getAverageCarbonIntensity

      -
      public CarbonIntensityDTO getAverageCarbonIntensity(String location, - OffsetDateTime startTime, - OffsetDateTime endTime) - throws ApiException
      -
      Retrieves the measured carbon intensity data between the time boundaries and calculates the average carbon intensity during that period. - This endpoint is useful for reporting the measured carbon intensity for a specific time period in a specific location.
      -
      -
      Parameters:
      -
      location - The location name where workflow is run (required)
      -
      startTime - The time at which the workflow we are measuring carbon intensity for started (required)
      -
      endTime - The time at which the workflow we are measuring carbon intensity for ended (required)
      -
      Returns:
      -
      CarbonIntensityDTO
      -
      Throws:
      -
      ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Returns a single object that contains the information about the request and the average marginal carbon intensity -
      400 Returned if any of the requested items are invalid -
      500 Internal server error -
      -
      -
      -
    • -
    • -
      -

      getAverageCarbonIntensityWithHttpInfo

      -
      public ApiResponse<CarbonIntensityDTO> getAverageCarbonIntensityWithHttpInfo(String location, - OffsetDateTime startTime, - OffsetDateTime endTime) - throws ApiException
      -
      Retrieves the measured carbon intensity data between the time boundaries and calculates the average carbon intensity during that period. - This endpoint is useful for reporting the measured carbon intensity for a specific time period in a specific location.
      -
      -
      Parameters:
      -
      location - The location name where workflow is run (required)
      -
      startTime - The time at which the workflow we are measuring carbon intensity for started (required)
      -
      endTime - The time at which the workflow we are measuring carbon intensity for ended (required)
      -
      Returns:
      -
      ApiResponse<CarbonIntensityDTO>
      -
      Throws:
      -
      ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Returns a single object that contains the information about the request and the average marginal carbon intensity -
      400 Returned if any of the requested items are invalid -
      500 Internal server error -
      -
      -
      -
    • -
    • -
      -

      getAverageCarbonIntensityAsync

      -
      public okhttp3.Call getAverageCarbonIntensityAsync(String location, - OffsetDateTime startTime, - OffsetDateTime endTime, - ApiCallback<CarbonIntensityDTO> _callback) - throws ApiException
      -
      Retrieves the measured carbon intensity data between the time boundaries and calculates the average carbon intensity during that period. (asynchronously) - This endpoint is useful for reporting the measured carbon intensity for a specific time period in a specific location.
      -
      -
      Parameters:
      -
      location - The location name where workflow is run (required)
      -
      startTime - The time at which the workflow we are measuring carbon intensity for started (required)
      -
      endTime - The time at which the workflow we are measuring carbon intensity for ended (required)
      -
      _callback - The callback to be executed when the API call finishes
      -
      Returns:
      -
      The request call
      -
      Throws:
      -
      ApiException - If fail to process the API call, e.g. serializing the request body object
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Returns a single object that contains the information about the request and the average marginal carbon intensity -
      400 Returned if any of the requested items are invalid -
      500 Internal server error -
      -
      -
      -
    • -
    • -
      -

      getAverageCarbonIntensityBatchCall

      -
      public okhttp3.Call getAverageCarbonIntensityBatchCall(List<CarbonIntensityBatchParametersDTO> carbonIntensityBatchParametersDTO, - ApiCallback _callback) - throws ApiException
      -
      Build call for getAverageCarbonIntensityBatch
      -
      -
      Parameters:
      -
      carbonIntensityBatchParametersDTO - Array of inputs where each contains a \"location\", \"startDate\", and \"endDate\" for which to calculate average marginal carbon intensity. (optional)
      -
      _callback - Callback for upload/download progress
      -
      Returns:
      -
      Call to execute
      -
      Throws:
      -
      ApiException - If fail to serialize the request body object
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Returns an array of objects where each contains location, time boundaries and the corresponding average marginal carbon intensity -
      400 Returned if any of the requested items are invalid -
      500 Internal server error -
      -
      -
      -
    • -
    • -
      -

      getAverageCarbonIntensityBatch

      -
      public List<CarbonIntensityDTO> getAverageCarbonIntensityBatch(List<CarbonIntensityBatchParametersDTO> carbonIntensityBatchParametersDTO) - throws ApiException
      -
      Given an array of request objects, each with their own location and time boundaries, calculate the average carbon intensity for that location and time period and return an array of carbon intensity objects. - The application only supports batching across a single location with different time boundaries. If multiple locations are provided, an error is returned. For each item in the request array, the application returns a corresponding object containing the location, time boundaries, and average marginal carbon intensity.
      -
      -
      Parameters:
      -
      carbonIntensityBatchParametersDTO - Array of inputs where each contains a \"location\", \"startDate\", and \"endDate\" for which to calculate average marginal carbon intensity. (optional)
      -
      Returns:
      -
      List<CarbonIntensityDTO>
      -
      Throws:
      -
      ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Returns an array of objects where each contains location, time boundaries and the corresponding average marginal carbon intensity -
      400 Returned if any of the requested items are invalid -
      500 Internal server error -
      -
      -
      -
    • -
    • -
      -

      getAverageCarbonIntensityBatchWithHttpInfo

      -
      public ApiResponse<List<CarbonIntensityDTO>> getAverageCarbonIntensityBatchWithHttpInfo(List<CarbonIntensityBatchParametersDTO> carbonIntensityBatchParametersDTO) - throws ApiException
      -
      Given an array of request objects, each with their own location and time boundaries, calculate the average carbon intensity for that location and time period and return an array of carbon intensity objects. - The application only supports batching across a single location with different time boundaries. If multiple locations are provided, an error is returned. For each item in the request array, the application returns a corresponding object containing the location, time boundaries, and average marginal carbon intensity.
      -
      -
      Parameters:
      -
      carbonIntensityBatchParametersDTO - Array of inputs where each contains a \"location\", \"startDate\", and \"endDate\" for which to calculate average marginal carbon intensity. (optional)
      -
      Returns:
      -
      ApiResponse<List<CarbonIntensityDTO>>
      -
      Throws:
      -
      ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Returns an array of objects where each contains location, time boundaries and the corresponding average marginal carbon intensity -
      400 Returned if any of the requested items are invalid -
      500 Internal server error -
      -
      -
      -
    • -
    • -
      -

      getAverageCarbonIntensityBatchAsync

      -
      public okhttp3.Call getAverageCarbonIntensityBatchAsync(List<CarbonIntensityBatchParametersDTO> carbonIntensityBatchParametersDTO, - ApiCallback<List<CarbonIntensityDTO>> _callback) - throws ApiException
      -
      Given an array of request objects, each with their own location and time boundaries, calculate the average carbon intensity for that location and time period and return an array of carbon intensity objects. (asynchronously) - The application only supports batching across a single location with different time boundaries. If multiple locations are provided, an error is returned. For each item in the request array, the application returns a corresponding object containing the location, time boundaries, and average marginal carbon intensity.
      -
      -
      Parameters:
      -
      carbonIntensityBatchParametersDTO - Array of inputs where each contains a \"location\", \"startDate\", and \"endDate\" for which to calculate average marginal carbon intensity. (optional)
      -
      _callback - The callback to be executed when the API call finishes
      -
      Returns:
      -
      The request call
      -
      Throws:
      -
      ApiException - If fail to process the API call, e.g. serializing the request body object
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Returns an array of objects where each contains location, time boundaries and the corresponding average marginal carbon intensity -
      400 Returned if any of the requested items are invalid -
      500 Internal server error -
      -
      -
      -
    • -
    • -
      -

      getBestEmissionsDataForLocationsByTimeCall

      -
      public okhttp3.Call getBestEmissionsDataForLocationsByTimeCall(List<String> location, - OffsetDateTime time, - OffsetDateTime toTime, - ApiCallback _callback) - throws ApiException
      -
      Build call for getBestEmissionsDataForLocationsByTime
      -
      -
      Parameters:
      -
      location - String array of named locations (required)
      -
      time - [Optional] Start time for the data query. (optional)
      -
      toTime - [Optional] End time for the data query. (optional)
      -
      _callback - Callback for upload/download progress
      -
      Returns:
      -
      Call to execute
      -
      Throws:
      -
      ApiException - If fail to serialize the request body object
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Success -
      204 No Content -
      400 Bad Request -
      -
      -
      -
    • -
    • -
      -

      getBestEmissionsDataForLocationsByTime

      -
      public List<EmissionsData> getBestEmissionsDataForLocationsByTime(List<String> location, - OffsetDateTime time, - OffsetDateTime toTime) - throws ApiException
      -
      Calculate the best emission data by list of locations for a specified time period.
      -
      -
      Parameters:
      -
      location - String array of named locations (required)
      -
      time - [Optional] Start time for the data query. (optional)
      -
      toTime - [Optional] End time for the data query. (optional)
      -
      Returns:
      -
      List<EmissionsData>
      -
      Throws:
      -
      ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Success -
      204 No Content -
      400 Bad Request -
      -
      -
      -
    • -
    • -
      -

      getBestEmissionsDataForLocationsByTimeWithHttpInfo

      -
      public ApiResponse<List<EmissionsData>> getBestEmissionsDataForLocationsByTimeWithHttpInfo(List<String> location, - OffsetDateTime time, - OffsetDateTime toTime) - throws ApiException
      -
      Calculate the best emission data by list of locations for a specified time period.
      -
      -
      Parameters:
      -
      location - String array of named locations (required)
      -
      time - [Optional] Start time for the data query. (optional)
      -
      toTime - [Optional] End time for the data query. (optional)
      -
      Returns:
      -
      ApiResponse<List<EmissionsData>>
      -
      Throws:
      -
      ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Success -
      204 No Content -
      400 Bad Request -
      -
      -
      -
    • -
    • -
      -

      getBestEmissionsDataForLocationsByTimeAsync

      -
      public okhttp3.Call getBestEmissionsDataForLocationsByTimeAsync(List<String> location, - OffsetDateTime time, - OffsetDateTime toTime, - ApiCallback<List<EmissionsData>> _callback) - throws ApiException
      -
      Calculate the best emission data by list of locations for a specified time period. (asynchronously)
      -
      -
      Parameters:
      -
      location - String array of named locations (required)
      -
      time - [Optional] Start time for the data query. (optional)
      -
      toTime - [Optional] End time for the data query. (optional)
      -
      _callback - The callback to be executed when the API call finishes
      -
      Returns:
      -
      The request call
      -
      Throws:
      -
      ApiException - If fail to process the API call, e.g. serializing the request body object
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Success -
      204 No Content -
      400 Bad Request -
      -
      -
      -
    • -
    • -
      -

      getCurrentForecastDataCall

      -
      public okhttp3.Call getCurrentForecastDataCall(List<String> location, - OffsetDateTime dataStartAt, - OffsetDateTime dataEndAt, - Integer windowSize, - ApiCallback _callback) - throws ApiException
      -
      Build call for getCurrentForecastData
      -
      -
      Parameters:
      -
      location - String array of named locations (required)
      -
      dataStartAt - Start time boundary of forecasted data points.Ignores current forecast data points before this time. Defaults to the earliest time in the forecast data. (optional)
      -
      dataEndAt - End time boundary of forecasted data points. Ignores current forecast data points after this time. Defaults to the latest time in the forecast data. (optional)
      -
      windowSize - The estimated duration (in minutes) of the workload. Defaults to the duration of a single forecast data point. (optional)
      -
      _callback - Callback for upload/download progress
      -
      Returns:
      -
      Call to execute
      -
      Throws:
      -
      ApiException - If fail to serialize the request body object
      -
      Http Response Details:
      -
      - - - - - -
      Status Code Description Response Headers
      200 Returns the requested forecast objects -
      400 Returned if any of the input parameters are invalid -
      500 Internal server error -
      501 Returned if the underlying data source does not support forecasting -
      -
      -
      -
    • -
    • -
      -

      getCurrentForecastData

      -
      public List<EmissionsForecastDTO> getCurrentForecastData(List<String> location, - OffsetDateTime dataStartAt, - OffsetDateTime dataEndAt, - Integer windowSize) - throws ApiException
      -
      Retrieves the most recent forecasted data and calculates the optimal marginal carbon intensity window. - This endpoint fetches only the most recently generated forecast for all provided locations. It uses the \"dataStartAt\" and \"dataEndAt\" parameters to scope the forecasted data points (if available for those times). If no start or end time boundaries are provided, the entire forecast dataset is used. The scoped data points are used to calculate average marginal carbon intensities of the specified \"windowSize\" and the optimal marginal carbon intensity window is identified. The forecast data represents what the data source predicts future marginal carbon intesity values to be, not actual measured emissions data (as future values cannot be known). This endpoint is useful for determining if there is a more carbon-optimal time to use electicity predicted in the future.
      -
      -
      Parameters:
      -
      location - String array of named locations (required)
      -
      dataStartAt - Start time boundary of forecasted data points.Ignores current forecast data points before this time. Defaults to the earliest time in the forecast data. (optional)
      -
      dataEndAt - End time boundary of forecasted data points. Ignores current forecast data points after this time. Defaults to the latest time in the forecast data. (optional)
      -
      windowSize - The estimated duration (in minutes) of the workload. Defaults to the duration of a single forecast data point. (optional)
      -
      Returns:
      -
      List<EmissionsForecastDTO>
      -
      Throws:
      -
      ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
      -
      Http Response Details:
      -
      - - - - - -
      Status Code Description Response Headers
      200 Returns the requested forecast objects -
      400 Returned if any of the input parameters are invalid -
      500 Internal server error -
      501 Returned if the underlying data source does not support forecasting -
      -
      -
      -
    • -
    • -
      -

      getCurrentForecastDataWithHttpInfo

      -
      public ApiResponse<List<EmissionsForecastDTO>> getCurrentForecastDataWithHttpInfo(List<String> location, - OffsetDateTime dataStartAt, - OffsetDateTime dataEndAt, - Integer windowSize) - throws ApiException
      -
      Retrieves the most recent forecasted data and calculates the optimal marginal carbon intensity window. - This endpoint fetches only the most recently generated forecast for all provided locations. It uses the \"dataStartAt\" and \"dataEndAt\" parameters to scope the forecasted data points (if available for those times). If no start or end time boundaries are provided, the entire forecast dataset is used. The scoped data points are used to calculate average marginal carbon intensities of the specified \"windowSize\" and the optimal marginal carbon intensity window is identified. The forecast data represents what the data source predicts future marginal carbon intesity values to be, not actual measured emissions data (as future values cannot be known). This endpoint is useful for determining if there is a more carbon-optimal time to use electicity predicted in the future.
      -
      -
      Parameters:
      -
      location - String array of named locations (required)
      -
      dataStartAt - Start time boundary of forecasted data points.Ignores current forecast data points before this time. Defaults to the earliest time in the forecast data. (optional)
      -
      dataEndAt - End time boundary of forecasted data points. Ignores current forecast data points after this time. Defaults to the latest time in the forecast data. (optional)
      -
      windowSize - The estimated duration (in minutes) of the workload. Defaults to the duration of a single forecast data point. (optional)
      -
      Returns:
      -
      ApiResponse<List<EmissionsForecastDTO>>
      -
      Throws:
      -
      ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
      -
      Http Response Details:
      -
      - - - - - -
      Status Code Description Response Headers
      200 Returns the requested forecast objects -
      400 Returned if any of the input parameters are invalid -
      500 Internal server error -
      501 Returned if the underlying data source does not support forecasting -
      -
      -
      -
    • -
    • -
      -

      getCurrentForecastDataAsync

      -
      public okhttp3.Call getCurrentForecastDataAsync(List<String> location, - OffsetDateTime dataStartAt, - OffsetDateTime dataEndAt, - Integer windowSize, - ApiCallback<List<EmissionsForecastDTO>> _callback) - throws ApiException
      -
      Retrieves the most recent forecasted data and calculates the optimal marginal carbon intensity window. (asynchronously) - This endpoint fetches only the most recently generated forecast for all provided locations. It uses the \"dataStartAt\" and \"dataEndAt\" parameters to scope the forecasted data points (if available for those times). If no start or end time boundaries are provided, the entire forecast dataset is used. The scoped data points are used to calculate average marginal carbon intensities of the specified \"windowSize\" and the optimal marginal carbon intensity window is identified. The forecast data represents what the data source predicts future marginal carbon intesity values to be, not actual measured emissions data (as future values cannot be known). This endpoint is useful for determining if there is a more carbon-optimal time to use electicity predicted in the future.
      -
      -
      Parameters:
      -
      location - String array of named locations (required)
      -
      dataStartAt - Start time boundary of forecasted data points.Ignores current forecast data points before this time. Defaults to the earliest time in the forecast data. (optional)
      -
      dataEndAt - End time boundary of forecasted data points. Ignores current forecast data points after this time. Defaults to the latest time in the forecast data. (optional)
      -
      windowSize - The estimated duration (in minutes) of the workload. Defaults to the duration of a single forecast data point. (optional)
      -
      _callback - The callback to be executed when the API call finishes
      -
      Returns:
      -
      The request call
      -
      Throws:
      -
      ApiException - If fail to process the API call, e.g. serializing the request body object
      -
      Http Response Details:
      -
      - - - - - -
      Status Code Description Response Headers
      200 Returns the requested forecast objects -
      400 Returned if any of the input parameters are invalid -
      500 Internal server error -
      501 Returned if the underlying data source does not support forecasting -
      -
      -
      -
    • -
    • -
      -

      getEmissionsDataForLocationByTimeCall

      -
      public okhttp3.Call getEmissionsDataForLocationByTimeCall(String location, - OffsetDateTime time, - OffsetDateTime toTime, - ApiCallback _callback) - throws ApiException
      -
      Build call for getEmissionsDataForLocationByTime
      -
      -
      Parameters:
      -
      location - String named location. (required)
      -
      time - [Optional] Start time for the data query. (optional)
      -
      toTime - [Optional] End time for the data query. (optional)
      -
      _callback - Callback for upload/download progress
      -
      Returns:
      -
      Call to execute
      -
      Throws:
      -
      ApiException - If fail to serialize the request body object
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Success -
      204 No Content -
      400 Bad Request -
      -
      -
      -
    • -
    • -
      -

      getEmissionsDataForLocationByTime

      -
      public List<EmissionsData> getEmissionsDataForLocationByTime(String location, - OffsetDateTime time, - OffsetDateTime toTime) - throws ApiException
      -
      Calculate the best emission data by location for a specified time period.
      -
      -
      Parameters:
      -
      location - String named location. (required)
      -
      time - [Optional] Start time for the data query. (optional)
      -
      toTime - [Optional] End time for the data query. (optional)
      -
      Returns:
      -
      List<EmissionsData>
      -
      Throws:
      -
      ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Success -
      204 No Content -
      400 Bad Request -
      -
      -
      -
    • -
    • -
      -

      getEmissionsDataForLocationByTimeWithHttpInfo

      -
      public ApiResponse<List<EmissionsData>> getEmissionsDataForLocationByTimeWithHttpInfo(String location, - OffsetDateTime time, - OffsetDateTime toTime) - throws ApiException
      -
      Calculate the best emission data by location for a specified time period.
      -
      -
      Parameters:
      -
      location - String named location. (required)
      -
      time - [Optional] Start time for the data query. (optional)
      -
      toTime - [Optional] End time for the data query. (optional)
      -
      Returns:
      -
      ApiResponse<List<EmissionsData>>
      -
      Throws:
      -
      ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Success -
      204 No Content -
      400 Bad Request -
      -
      -
      -
    • -
    • -
      -

      getEmissionsDataForLocationByTimeAsync

      -
      public okhttp3.Call getEmissionsDataForLocationByTimeAsync(String location, - OffsetDateTime time, - OffsetDateTime toTime, - ApiCallback<List<EmissionsData>> _callback) - throws ApiException
      -
      Calculate the best emission data by location for a specified time period. (asynchronously)
      -
      -
      Parameters:
      -
      location - String named location. (required)
      -
      time - [Optional] Start time for the data query. (optional)
      -
      toTime - [Optional] End time for the data query. (optional)
      -
      _callback - The callback to be executed when the API call finishes
      -
      Returns:
      -
      The request call
      -
      Throws:
      -
      ApiException - If fail to process the API call, e.g. serializing the request body object
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Success -
      204 No Content -
      400 Bad Request -
      -
      -
      -
    • -
    • -
      -

      getEmissionsDataForLocationsByTimeCall

      -
      public okhttp3.Call getEmissionsDataForLocationsByTimeCall(List<String> location, - OffsetDateTime time, - OffsetDateTime toTime, - ApiCallback _callback) - throws ApiException
      -
      Build call for getEmissionsDataForLocationsByTime
      -
      -
      Parameters:
      -
      location - String array of named locations (required)
      -
      time - [Optional] Start time for the data query. (optional)
      -
      toTime - [Optional] End time for the data query. (optional)
      -
      _callback - Callback for upload/download progress
      -
      Returns:
      -
      Call to execute
      -
      Throws:
      -
      ApiException - If fail to serialize the request body object
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Success -
      204 No Content -
      400 Bad Request -
      -
      -
      -
    • -
    • -
      -

      getEmissionsDataForLocationsByTime

      -
      public List<EmissionsData> getEmissionsDataForLocationsByTime(List<String> location, - OffsetDateTime time, - OffsetDateTime toTime) - throws ApiException
      -
      Calculate the observed emission data by list of locations for a specified time period.
      -
      -
      Parameters:
      -
      location - String array of named locations (required)
      -
      time - [Optional] Start time for the data query. (optional)
      -
      toTime - [Optional] End time for the data query. (optional)
      -
      Returns:
      -
      List<EmissionsData>
      -
      Throws:
      -
      ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Success -
      204 No Content -
      400 Bad Request -
      -
      -
      -
    • -
    • -
      -

      getEmissionsDataForLocationsByTimeWithHttpInfo

      -
      public ApiResponse<List<EmissionsData>> getEmissionsDataForLocationsByTimeWithHttpInfo(List<String> location, - OffsetDateTime time, - OffsetDateTime toTime) - throws ApiException
      -
      Calculate the observed emission data by list of locations for a specified time period.
      -
      -
      Parameters:
      -
      location - String array of named locations (required)
      -
      time - [Optional] Start time for the data query. (optional)
      -
      toTime - [Optional] End time for the data query. (optional)
      -
      Returns:
      -
      ApiResponse<List<EmissionsData>>
      -
      Throws:
      -
      ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Success -
      204 No Content -
      400 Bad Request -
      -
      -
      -
    • -
    • -
      -

      getEmissionsDataForLocationsByTimeAsync

      -
      public okhttp3.Call getEmissionsDataForLocationsByTimeAsync(List<String> location, - OffsetDateTime time, - OffsetDateTime toTime, - ApiCallback<List<EmissionsData>> _callback) - throws ApiException
      -
      Calculate the observed emission data by list of locations for a specified time period. (asynchronously)
      -
      -
      Parameters:
      -
      location - String array of named locations (required)
      -
      time - [Optional] Start time for the data query. (optional)
      -
      toTime - [Optional] End time for the data query. (optional)
      -
      _callback - The callback to be executed when the API call finishes
      -
      Returns:
      -
      The request call
      -
      Throws:
      -
      ApiException - If fail to process the API call, e.g. serializing the request body object
      -
      Http Response Details:
      -
      - - - - -
      Status Code Description Response Headers
      200 Success -
      204 No Content -
      400 Bad Request -
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/api/class-use/CarbonAwareApi.html b/samples/java-client/apidocs/org/openapitools/client/api/class-use/CarbonAwareApi.html deleted file mode 100644 index 62c13dd9d..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/api/class-use/CarbonAwareApi.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.api.CarbonAwareApi (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.api.CarbonAwareApi

-
-No usage of org.openapitools.client.api.CarbonAwareApi
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/api/package-summary.html b/samples/java-client/apidocs/org/openapitools/client/api/package-summary.html deleted file mode 100644 index cff35dd77..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/api/package-summary.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - -org.openapitools.client.api (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Package org.openapitools.client.api

-
-
-
package org.openapitools.client.api
-
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/api/package-tree.html b/samples/java-client/apidocs/org/openapitools/client/api/package-tree.html deleted file mode 100644 index 8bdd57ba7..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/api/package-tree.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - -org.openapitools.client.api Class Hierarchy (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Hierarchy For Package org.openapitools.client.api

-Package Hierarchies: - -
-
-

Class Hierarchy

- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/api/package-use.html b/samples/java-client/apidocs/org/openapitools/client/api/package-use.html deleted file mode 100644 index 14566b983..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/api/package-use.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Package org.openapitools.client.api (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Package
org.openapitools.client.api

-
-No usage of org.openapitools.client.api
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/auth/ApiKeyAuth.html b/samples/java-client/apidocs/org/openapitools/client/auth/ApiKeyAuth.html deleted file mode 100644 index 7e1ec0b51..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/auth/ApiKeyAuth.html +++ /dev/null @@ -1,273 +0,0 @@ - - - - -ApiKeyAuth (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class ApiKeyAuth

-
-
java.lang.Object -
org.openapitools.client.auth.ApiKeyAuth
-
-
-
-
All Implemented Interfaces:
-
Authentication
-
-
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", - date="2022-10-16T20:20:49.941+09:00[Asia/Tokyo]") -public class ApiKeyAuth -extends Object -implements Authentication
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      ApiKeyAuth

      -
      public ApiKeyAuth(String location, - String paramName)
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      getLocation

      -
      public String getLocation()
      -
      -
    • -
    • -
      -

      getParamName

      -
      public String getParamName()
      -
      -
    • -
    • -
      -

      getApiKey

      -
      public String getApiKey()
      -
      -
    • -
    • -
      -

      setApiKey

      -
      public void setApiKey(String apiKey)
      -
      -
    • -
    • -
      -

      getApiKeyPrefix

      -
      public String getApiKeyPrefix()
      -
      -
    • -
    • -
      -

      setApiKeyPrefix

      -
      public void setApiKeyPrefix(String apiKeyPrefix)
      -
      -
    • -
    • -
      -

      applyToParams

      -
      public void applyToParams(List<Pair> queryParams, - Map<String,String> headerParams, - Map<String,String> cookieParams, - String payload, - String method, - URI uri) - throws ApiException
      -
      Description copied from interface: Authentication
      -
      Apply authentication settings to header and query params.
      -
      -
      Specified by:
      -
      applyToParams in interface Authentication
      -
      Parameters:
      -
      queryParams - List of query parameters
      -
      headerParams - Map of header parameters
      -
      cookieParams - Map of cookie parameters
      -
      payload - HTTP request body
      -
      method - HTTP method
      -
      uri - URI
      -
      Throws:
      -
      ApiException - if failed to update the parameters
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/auth/Authentication.html b/samples/java-client/apidocs/org/openapitools/client/auth/Authentication.html deleted file mode 100644 index 534f4b607..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/auth/Authentication.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - -Authentication (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Interface Authentication

-
-
-
-
All Known Implementing Classes:
-
ApiKeyAuth, HttpBasicAuth, HttpBearerAuth
-
-
-
public interface Authentication
-
-
-
    - -
  • -
    -

    Method Summary

    -
    -
    -
    -
    -
    Modifier and Type
    -
    Method
    -
    Description
    -
    void
    -
    applyToParams(List<Pair> queryParams, - Map<String,String> headerParams, - Map<String,String> cookieParams, - String payload, - String method, - URI uri)
    -
    -
    Apply authentication settings to header and query params.
    -
    -
    -
    -
    -
    -
  • -
-
-
-
    - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      applyToParams

      -
      void applyToParams(List<Pair> queryParams, - Map<String,String> headerParams, - Map<String,String> cookieParams, - String payload, - String method, - URI uri) - throws ApiException
      -
      Apply authentication settings to header and query params.
      -
      -
      Parameters:
      -
      queryParams - List of query parameters
      -
      headerParams - Map of header parameters
      -
      cookieParams - Map of cookie parameters
      -
      payload - HTTP request body
      -
      method - HTTP method
      -
      uri - URI
      -
      Throws:
      -
      ApiException - if failed to update the parameters
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/auth/HttpBasicAuth.html b/samples/java-client/apidocs/org/openapitools/client/auth/HttpBasicAuth.html deleted file mode 100644 index fdea47750..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/auth/HttpBasicAuth.html +++ /dev/null @@ -1,251 +0,0 @@ - - - - -HttpBasicAuth (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class HttpBasicAuth

-
-
java.lang.Object -
org.openapitools.client.auth.HttpBasicAuth
-
-
-
-
All Implemented Interfaces:
-
Authentication
-
-
-
public class HttpBasicAuth -extends Object -implements Authentication
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      HttpBasicAuth

      -
      public HttpBasicAuth()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      getUsername

      -
      public String getUsername()
      -
      -
    • -
    • -
      -

      setUsername

      -
      public void setUsername(String username)
      -
      -
    • -
    • -
      -

      getPassword

      -
      public String getPassword()
      -
      -
    • -
    • -
      -

      setPassword

      -
      public void setPassword(String password)
      -
      -
    • -
    • -
      -

      applyToParams

      -
      public void applyToParams(List<Pair> queryParams, - Map<String,String> headerParams, - Map<String,String> cookieParams, - String payload, - String method, - URI uri) - throws ApiException
      -
      Description copied from interface: Authentication
      -
      Apply authentication settings to header and query params.
      -
      -
      Specified by:
      -
      applyToParams in interface Authentication
      -
      Parameters:
      -
      queryParams - List of query parameters
      -
      headerParams - Map of header parameters
      -
      cookieParams - Map of cookie parameters
      -
      payload - HTTP request body
      -
      method - HTTP method
      -
      uri - URI
      -
      Throws:
      -
      ApiException - if failed to update the parameters
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/auth/HttpBearerAuth.html b/samples/java-client/apidocs/org/openapitools/client/auth/HttpBearerAuth.html deleted file mode 100644 index 263c07271..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/auth/HttpBearerAuth.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - -HttpBearerAuth (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class HttpBearerAuth

-
-
java.lang.Object -
org.openapitools.client.auth.HttpBearerAuth
-
-
-
-
All Implemented Interfaces:
-
Authentication
-
-
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", - date="2022-10-16T20:20:49.941+09:00[Asia/Tokyo]") -public class HttpBearerAuth -extends Object -implements Authentication
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      HttpBearerAuth

      -
      public HttpBearerAuth(String scheme)
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      getBearerToken

      -
      public String getBearerToken()
      -
      Gets the token, which together with the scheme, will be sent as the value of the Authorization header.
      -
      -
      Returns:
      -
      The bearer token
      -
      -
      -
    • -
    • -
      -

      setBearerToken

      -
      public void setBearerToken(String bearerToken)
      -
      Sets the token, which together with the scheme, will be sent as the value of the Authorization header.
      -
      -
      Parameters:
      -
      bearerToken - The bearer token to send in the Authorization header
      -
      -
      -
    • -
    • -
      -

      applyToParams

      -
      public void applyToParams(List<Pair> queryParams, - Map<String,String> headerParams, - Map<String,String> cookieParams, - String payload, - String method, - URI uri) - throws ApiException
      -
      Description copied from interface: Authentication
      -
      Apply authentication settings to header and query params.
      -
      -
      Specified by:
      -
      applyToParams in interface Authentication
      -
      Parameters:
      -
      queryParams - List of query parameters
      -
      headerParams - Map of header parameters
      -
      cookieParams - Map of cookie parameters
      -
      payload - HTTP request body
      -
      method - HTTP method
      -
      uri - URI
      -
      Throws:
      -
      ApiException - if failed to update the parameters
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/auth/class-use/ApiKeyAuth.html b/samples/java-client/apidocs/org/openapitools/client/auth/class-use/ApiKeyAuth.html deleted file mode 100644 index 0178645a8..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/auth/class-use/ApiKeyAuth.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.auth.ApiKeyAuth (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.auth.ApiKeyAuth

-
-No usage of org.openapitools.client.auth.ApiKeyAuth
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/auth/class-use/Authentication.html b/samples/java-client/apidocs/org/openapitools/client/auth/class-use/Authentication.html deleted file mode 100644 index 1b158ec98..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/auth/class-use/Authentication.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - -Uses of Interface org.openapitools.client.auth.Authentication (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Interface
org.openapitools.client.auth.Authentication

-
-
Packages that use Authentication
-
-
Package
-
Description
- -
 
- -
 
-
-
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/auth/class-use/HttpBasicAuth.html b/samples/java-client/apidocs/org/openapitools/client/auth/class-use/HttpBasicAuth.html deleted file mode 100644 index 707cdee47..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/auth/class-use/HttpBasicAuth.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.auth.HttpBasicAuth (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.auth.HttpBasicAuth

-
-No usage of org.openapitools.client.auth.HttpBasicAuth
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/auth/class-use/HttpBearerAuth.html b/samples/java-client/apidocs/org/openapitools/client/auth/class-use/HttpBearerAuth.html deleted file mode 100644 index 5895d12eb..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/auth/class-use/HttpBearerAuth.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.auth.HttpBearerAuth (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.auth.HttpBearerAuth

-
-No usage of org.openapitools.client.auth.HttpBearerAuth
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/auth/package-summary.html b/samples/java-client/apidocs/org/openapitools/client/auth/package-summary.html deleted file mode 100644 index e31bbc817..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/auth/package-summary.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - -org.openapitools.client.auth (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Package org.openapitools.client.auth

-
-
-
package org.openapitools.client.auth
-
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/auth/package-tree.html b/samples/java-client/apidocs/org/openapitools/client/auth/package-tree.html deleted file mode 100644 index 16a087a0d..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/auth/package-tree.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - -org.openapitools.client.auth Class Hierarchy (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Hierarchy For Package org.openapitools.client.auth

-Package Hierarchies: - -
-
-

Class Hierarchy

- -
-
-

Interface Hierarchy

- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/auth/package-use.html b/samples/java-client/apidocs/org/openapitools/client/auth/package-use.html deleted file mode 100644 index 617e018a7..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/auth/package-use.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - -Uses of Package org.openapitools.client.auth (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Package
org.openapitools.client.auth

-
- -
-
Package
-
Description
- -
 
- -
 
-
-
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/ApiCallback.html b/samples/java-client/apidocs/org/openapitools/client/class-use/ApiCallback.html deleted file mode 100644 index 07870795e..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/ApiCallback.html +++ /dev/null @@ -1,260 +0,0 @@ - - - - -Uses of Interface org.openapitools.client.ApiCallback (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Interface
org.openapitools.client.ApiCallback

-
-
Packages that use ApiCallback
-
-
Package
-
Description
- -
 
- -
 
-
-
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/ApiClient.html b/samples/java-client/apidocs/org/openapitools/client/class-use/ApiClient.html deleted file mode 100644 index 1e4b6ba95..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/ApiClient.html +++ /dev/null @@ -1,233 +0,0 @@ - - - - -Uses of Class org.openapitools.client.ApiClient (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.ApiClient

-
-
Packages that use ApiClient
-
-
Package
-
Description
- -
 
- -
 
-
-
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/ApiException.html b/samples/java-client/apidocs/org/openapitools/client/class-use/ApiException.html deleted file mode 100644 index 38d709c19..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/ApiException.html +++ /dev/null @@ -1,432 +0,0 @@ - - - - -Uses of Class org.openapitools.client.ApiException (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.ApiException

-
-
Packages that use ApiException
- -
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/ApiResponse.html b/samples/java-client/apidocs/org/openapitools/client/class-use/ApiResponse.html deleted file mode 100644 index 8f4ba7396..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/ApiResponse.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - -Uses of Class org.openapitools.client.ApiResponse (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.ApiResponse

-
-
Packages that use ApiResponse
-
-
Package
-
Description
- -
 
- -
 
-
-
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/Configuration.html b/samples/java-client/apidocs/org/openapitools/client/class-use/Configuration.html deleted file mode 100644 index c72269286..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/Configuration.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.Configuration (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.Configuration

-
-No usage of org.openapitools.client.Configuration
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.ByteArrayAdapter.html b/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.ByteArrayAdapter.html deleted file mode 100644 index 9f33d1c19..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.ByteArrayAdapter.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.JSON.ByteArrayAdapter (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.JSON.ByteArrayAdapter

-
-No usage of org.openapitools.client.JSON.ByteArrayAdapter
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.DateTypeAdapter.html b/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.DateTypeAdapter.html deleted file mode 100644 index 8fdcf7d76..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.DateTypeAdapter.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.JSON.DateTypeAdapter (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.JSON.DateTypeAdapter

-
-No usage of org.openapitools.client.JSON.DateTypeAdapter
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.LocalDateTypeAdapter.html b/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.LocalDateTypeAdapter.html deleted file mode 100644 index f3aa11b29..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.LocalDateTypeAdapter.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.JSON.LocalDateTypeAdapter (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.JSON.LocalDateTypeAdapter

-
-No usage of org.openapitools.client.JSON.LocalDateTypeAdapter
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.OffsetDateTimeTypeAdapter.html b/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.OffsetDateTimeTypeAdapter.html deleted file mode 100644 index 786063afe..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.OffsetDateTimeTypeAdapter.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.JSON.OffsetDateTimeTypeAdapter (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.JSON.OffsetDateTimeTypeAdapter

-
-No usage of org.openapitools.client.JSON.OffsetDateTimeTypeAdapter
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.SqlDateTypeAdapter.html b/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.SqlDateTypeAdapter.html deleted file mode 100644 index fb3151b9b..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.SqlDateTypeAdapter.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.JSON.SqlDateTypeAdapter (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.JSON.SqlDateTypeAdapter

-
-No usage of org.openapitools.client.JSON.SqlDateTypeAdapter
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.html b/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.html deleted file mode 100644 index 1e122d657..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/JSON.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - -Uses of Class org.openapitools.client.JSON (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.JSON

-
-
Packages that use JSON
-
-
Package
-
Description
- -
 
-
-
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/Pair.html b/samples/java-client/apidocs/org/openapitools/client/class-use/Pair.html deleted file mode 100644 index d8fedd303..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/Pair.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - -Uses of Class org.openapitools.client.Pair (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.Pair

-
-
Packages that use Pair
-
-
Package
-
Description
- -
 
- -
 
-
-
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/ProgressRequestBody.html b/samples/java-client/apidocs/org/openapitools/client/class-use/ProgressRequestBody.html deleted file mode 100644 index 9c710b0a0..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/ProgressRequestBody.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.ProgressRequestBody (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.ProgressRequestBody

-
-No usage of org.openapitools.client.ProgressRequestBody
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/ProgressResponseBody.html b/samples/java-client/apidocs/org/openapitools/client/class-use/ProgressResponseBody.html deleted file mode 100644 index ac80b5232..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/ProgressResponseBody.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.ProgressResponseBody (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.ProgressResponseBody

-
-No usage of org.openapitools.client.ProgressResponseBody
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/ServerConfiguration.html b/samples/java-client/apidocs/org/openapitools/client/class-use/ServerConfiguration.html deleted file mode 100644 index e92e1c54e..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/ServerConfiguration.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.ServerConfiguration (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.ServerConfiguration

-
-No usage of org.openapitools.client.ServerConfiguration
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/ServerVariable.html b/samples/java-client/apidocs/org/openapitools/client/class-use/ServerVariable.html deleted file mode 100644 index e2aa4af5e..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/ServerVariable.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - -Uses of Class org.openapitools.client.ServerVariable (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.ServerVariable

-
-
Packages that use ServerVariable
-
-
Package
-
Description
- -
 
-
-
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/class-use/StringUtil.html b/samples/java-client/apidocs/org/openapitools/client/class-use/StringUtil.html deleted file mode 100644 index 01a595c1b..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/class-use/StringUtil.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.StringUtil (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.StringUtil

-
-No usage of org.openapitools.client.StringUtil
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/AbstractOpenApiSchema.html b/samples/java-client/apidocs/org/openapitools/client/model/AbstractOpenApiSchema.html deleted file mode 100644 index 6db37caab..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/AbstractOpenApiSchema.html +++ /dev/null @@ -1,313 +0,0 @@ - - - - -AbstractOpenApiSchema (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class AbstractOpenApiSchema

-
-
java.lang.Object -
org.openapitools.client.model.AbstractOpenApiSchema
-
-
-
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", - date="2022-10-16T20:20:49.941+09:00[Asia/Tokyo]") -public abstract class AbstractOpenApiSchema -extends Object
-
Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      AbstractOpenApiSchema

      -
      public AbstractOpenApiSchema(String schemaType, - Boolean isNullable)
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      getSchemas

      -
      public abstract Map<String,javax.ws.rs.core.GenericType> getSchemas()
      -
      Get the list of oneOf/anyOf composed schemas allowed to be stored in this object
      -
      -
      Returns:
      -
      an instance of the actual schema/object
      -
      -
      -
    • -
    • -
      -

      getActualInstance

      -
      public Object getActualInstance()
      -
      Get the actual instance
      -
      -
      Returns:
      -
      an instance of the actual schema/object
      -
      -
      -
    • -
    • -
      -

      setActualInstance

      -
      public void setActualInstance(Object instance)
      -
      Set the actual instance
      -
      -
      Parameters:
      -
      instance - the actual instance of the schema/object
      -
      -
      -
    • -
    • -
      -

      getActualInstanceRecursively

      -
      public Object getActualInstanceRecursively()
      -
      Get the instant recursively when the schemas defined in oneOf/anyof happen to be oneOf/anyOf schema as well
      -
      -
      Returns:
      -
      an instance of the actual schema/object
      -
      -
      -
    • -
    • -
      -

      getSchemaType

      -
      public String getSchemaType()
      -
      Get the schema type (e.g. anyOf, oneOf)
      -
      -
      Returns:
      -
      the schema type
      -
      -
      -
    • -
    • -
      -

      toString

      -
      public String toString()
      -
      -
      Overrides:
      -
      toString in class Object
      -
      -
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object o)
      -
      -
      Overrides:
      -
      equals in class Object
      -
      -
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Overrides:
      -
      hashCode in class Object
      -
      -
      -
    • -
    • -
      -

      isNullable

      -
      public Boolean isNullable()
      -
      Is nullable
      -
      -
      Returns:
      -
      true if it's nullable
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory.html b/samples/java-client/apidocs/org/openapitools/client/model/CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory.html deleted file mode 100644 index 3f1c10dee..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - -CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory

-
-
java.lang.Object -
org.openapitools.client.model.CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory
-
-
-
-
All Implemented Interfaces:
-
com.google.gson.TypeAdapterFactory
-
-
-
Enclosing class:
-
CarbonIntensityBatchParametersDTO
-
-
-
public static class CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory -extends Object -implements com.google.gson.TypeAdapterFactory
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      CustomTypeAdapterFactory

      -
      public CustomTypeAdapterFactory()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      create

      -
      public <T> com.google.gson.TypeAdapter<T> create(com.google.gson.Gson gson, - com.google.gson.reflect.TypeToken<T> type)
      -
      -
      Specified by:
      -
      create in interface com.google.gson.TypeAdapterFactory
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/CarbonIntensityBatchParametersDTO.html b/samples/java-client/apidocs/org/openapitools/client/model/CarbonIntensityBatchParametersDTO.html deleted file mode 100644 index 3e54944d7..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/CarbonIntensityBatchParametersDTO.html +++ /dev/null @@ -1,480 +0,0 @@ - - - - -CarbonIntensityBatchParametersDTO (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class CarbonIntensityBatchParametersDTO

-
-
java.lang.Object -
org.openapitools.client.model.CarbonIntensityBatchParametersDTO
-
-
-
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", - date="2022-10-16T20:20:49.941+09:00[Asia/Tokyo]") -public class CarbonIntensityBatchParametersDTO -extends Object
-
CarbonIntensityBatchParametersDTO
-
-
- -
-
-
    - -
  • -
    -

    Field Details

    -
      -
    • -
      -

      SERIALIZED_NAME_LOCATION

      -
      public static final String SERIALIZED_NAME_LOCATION
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_START_TIME

      -
      public static final String SERIALIZED_NAME_START_TIME
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_END_TIME

      -
      public static final String SERIALIZED_NAME_END_TIME
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      openapiFields

      -
      public static HashSet<String> openapiFields
      -
      -
    • -
    • -
      -

      openapiRequiredFields

      -
      public static HashSet<String> openapiRequiredFields
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      CarbonIntensityBatchParametersDTO

      -
      public CarbonIntensityBatchParametersDTO()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      location

      -
      public CarbonIntensityBatchParametersDTO location(String location)
      -
      -
    • -
    • -
      -

      getLocation

      -
      @Nullable -public String getLocation()
      -
      The location name where workflow is run
      -
      -
      Returns:
      -
      location
      -
      -
      -
    • -
    • -
      -

      setLocation

      -
      public void setLocation(String location)
      -
      -
    • -
    • -
      -

      startTime

      -
      public CarbonIntensityBatchParametersDTO startTime(OffsetDateTime startTime)
      -
      -
    • -
    • -
      -

      getStartTime

      -
      @Nullable -public OffsetDateTime getStartTime()
      -
      The time at which the workflow we are measuring carbon intensity for started
      -
      -
      Returns:
      -
      startTime
      -
      -
      -
    • -
    • -
      -

      setStartTime

      -
      public void setStartTime(OffsetDateTime startTime)
      -
      -
    • -
    • -
      -

      endTime

      - -
      -
    • -
    • -
      -

      getEndTime

      -
      @Nullable -public OffsetDateTime getEndTime()
      -
      The time at which the workflow we are measuring carbon intensity for ended
      -
      -
      Returns:
      -
      endTime
      -
      -
      -
    • -
    • -
      -

      setEndTime

      -
      public void setEndTime(OffsetDateTime endTime)
      -
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object o)
      -
      -
      Overrides:
      -
      equals in class Object
      -
      -
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Overrides:
      -
      hashCode in class Object
      -
      -
      -
    • -
    • -
      -

      toString

      -
      public String toString()
      -
      -
      Overrides:
      -
      toString in class Object
      -
      -
      -
    • -
    • -
      -

      validateJsonObject

      -
      public static void validateJsonObject(com.google.gson.JsonObject jsonObj) - throws IOException
      -
      Validates the JSON Object and throws an exception if issues found
      -
      -
      Parameters:
      -
      jsonObj - JSON Object
      -
      Throws:
      -
      IOException - if the JSON Object is invalid with respect to CarbonIntensityBatchParametersDTO
      -
      -
      -
    • -
    • -
      -

      fromJson

      -
      public static CarbonIntensityBatchParametersDTO fromJson(String jsonString) - throws IOException
      -
      Create an instance of CarbonIntensityBatchParametersDTO given an JSON string
      -
      -
      Parameters:
      -
      jsonString - JSON string
      -
      Returns:
      -
      An instance of CarbonIntensityBatchParametersDTO
      -
      Throws:
      -
      IOException - if the JSON string is invalid with respect to CarbonIntensityBatchParametersDTO
      -
      -
      -
    • -
    • -
      -

      toJson

      -
      public String toJson()
      -
      Convert an instance of CarbonIntensityBatchParametersDTO to an JSON string
      -
      -
      Returns:
      -
      JSON string
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/CarbonIntensityDTO.CustomTypeAdapterFactory.html b/samples/java-client/apidocs/org/openapitools/client/model/CarbonIntensityDTO.CustomTypeAdapterFactory.html deleted file mode 100644 index b275d5305..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/CarbonIntensityDTO.CustomTypeAdapterFactory.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - -CarbonIntensityDTO.CustomTypeAdapterFactory (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class CarbonIntensityDTO.CustomTypeAdapterFactory

-
-
java.lang.Object -
org.openapitools.client.model.CarbonIntensityDTO.CustomTypeAdapterFactory
-
-
-
-
All Implemented Interfaces:
-
com.google.gson.TypeAdapterFactory
-
-
-
Enclosing class:
-
CarbonIntensityDTO
-
-
-
public static class CarbonIntensityDTO.CustomTypeAdapterFactory -extends Object -implements com.google.gson.TypeAdapterFactory
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      CustomTypeAdapterFactory

      -
      public CustomTypeAdapterFactory()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      create

      -
      public <T> com.google.gson.TypeAdapter<T> create(com.google.gson.Gson gson, - com.google.gson.reflect.TypeToken<T> type)
      -
      -
      Specified by:
      -
      create in interface com.google.gson.TypeAdapterFactory
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/CarbonIntensityDTO.html b/samples/java-client/apidocs/org/openapitools/client/model/CarbonIntensityDTO.html deleted file mode 100644 index c89f47acf..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/CarbonIntensityDTO.html +++ /dev/null @@ -1,532 +0,0 @@ - - - - -CarbonIntensityDTO (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class CarbonIntensityDTO

-
-
java.lang.Object -
org.openapitools.client.model.CarbonIntensityDTO
-
-
-
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", - date="2022-10-16T20:20:49.941+09:00[Asia/Tokyo]") -public class CarbonIntensityDTO -extends Object
-
CarbonIntensityDTO
-
-
- -
-
-
    - -
  • -
    -

    Field Details

    -
      -
    • -
      -

      SERIALIZED_NAME_LOCATION

      -
      public static final String SERIALIZED_NAME_LOCATION
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_START_TIME

      -
      public static final String SERIALIZED_NAME_START_TIME
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_END_TIME

      -
      public static final String SERIALIZED_NAME_END_TIME
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_CARBON_INTENSITY

      -
      public static final String SERIALIZED_NAME_CARBON_INTENSITY
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      openapiFields

      -
      public static HashSet<String> openapiFields
      -
      -
    • -
    • -
      -

      openapiRequiredFields

      -
      public static HashSet<String> openapiRequiredFields
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      CarbonIntensityDTO

      -
      public CarbonIntensityDTO()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      location

      -
      public CarbonIntensityDTO location(String location)
      -
      -
    • -
    • -
      -

      getLocation

      -
      @Nullable -public String getLocation()
      -
      the location name where workflow is run
      -
      -
      Returns:
      -
      location
      -
      -
      -
    • -
    • -
      -

      setLocation

      -
      public void setLocation(String location)
      -
      -
    • -
    • -
      -

      startTime

      -
      public CarbonIntensityDTO startTime(OffsetDateTime startTime)
      -
      -
    • -
    • -
      -

      getStartTime

      -
      @Nullable -public OffsetDateTime getStartTime()
      -
      the time at which the workflow we are measuring carbon intensity for started
      -
      -
      Returns:
      -
      startTime
      -
      -
      -
    • -
    • -
      -

      setStartTime

      -
      public void setStartTime(OffsetDateTime startTime)
      -
      -
    • -
    • -
      -

      endTime

      -
      public CarbonIntensityDTO endTime(OffsetDateTime endTime)
      -
      -
    • -
    • -
      -

      getEndTime

      -
      @Nullable -public OffsetDateTime getEndTime()
      -
      the time at which the workflow we are measuring carbon intensity for ended
      -
      -
      Returns:
      -
      endTime
      -
      -
      -
    • -
    • -
      -

      setEndTime

      -
      public void setEndTime(OffsetDateTime endTime)
      -
      -
    • -
    • -
      -

      carbonIntensity

      -
      public CarbonIntensityDTO carbonIntensity(Double carbonIntensity)
      -
      -
    • -
    • -
      -

      getCarbonIntensity

      -
      @Nullable -public Double getCarbonIntensity()
      -
      Value of the marginal carbon intensity in grams per kilowatt-hour.
      -
      -
      Returns:
      -
      carbonIntensity
      -
      -
      -
    • -
    • -
      -

      setCarbonIntensity

      -
      public void setCarbonIntensity(Double carbonIntensity)
      -
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object o)
      -
      -
      Overrides:
      -
      equals in class Object
      -
      -
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Overrides:
      -
      hashCode in class Object
      -
      -
      -
    • -
    • -
      -

      toString

      -
      public String toString()
      -
      -
      Overrides:
      -
      toString in class Object
      -
      -
      -
    • -
    • -
      -

      validateJsonObject

      -
      public static void validateJsonObject(com.google.gson.JsonObject jsonObj) - throws IOException
      -
      Validates the JSON Object and throws an exception if issues found
      -
      -
      Parameters:
      -
      jsonObj - JSON Object
      -
      Throws:
      -
      IOException - if the JSON Object is invalid with respect to CarbonIntensityDTO
      -
      -
      -
    • -
    • -
      -

      fromJson

      -
      public static CarbonIntensityDTO fromJson(String jsonString) - throws IOException
      -
      Create an instance of CarbonIntensityDTO given an JSON string
      -
      -
      Parameters:
      -
      jsonString - JSON string
      -
      Returns:
      -
      An instance of CarbonIntensityDTO
      -
      Throws:
      -
      IOException - if the JSON string is invalid with respect to CarbonIntensityDTO
      -
      -
      -
    • -
    • -
      -

      toJson

      -
      public String toJson()
      -
      Convert an instance of CarbonIntensityDTO to an JSON string
      -
      -
      Returns:
      -
      JSON string
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsData.CustomTypeAdapterFactory.html b/samples/java-client/apidocs/org/openapitools/client/model/EmissionsData.CustomTypeAdapterFactory.html deleted file mode 100644 index 2b71bd54e..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsData.CustomTypeAdapterFactory.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - -EmissionsData.CustomTypeAdapterFactory (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class EmissionsData.CustomTypeAdapterFactory

-
-
java.lang.Object -
org.openapitools.client.model.EmissionsData.CustomTypeAdapterFactory
-
-
-
-
All Implemented Interfaces:
-
com.google.gson.TypeAdapterFactory
-
-
-
Enclosing class:
-
EmissionsData
-
-
-
public static class EmissionsData.CustomTypeAdapterFactory -extends Object -implements com.google.gson.TypeAdapterFactory
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      CustomTypeAdapterFactory

      -
      public CustomTypeAdapterFactory()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      create

      -
      public <T> com.google.gson.TypeAdapter<T> create(com.google.gson.Gson gson, - com.google.gson.reflect.TypeToken<T> type)
      -
      -
      Specified by:
      -
      create in interface com.google.gson.TypeAdapterFactory
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsData.html b/samples/java-client/apidocs/org/openapitools/client/model/EmissionsData.html deleted file mode 100644 index da4df892c..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsData.html +++ /dev/null @@ -1,532 +0,0 @@ - - - - -EmissionsData (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class EmissionsData

-
-
java.lang.Object -
org.openapitools.client.model.EmissionsData
-
-
-
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", - date="2022-10-16T20:20:49.941+09:00[Asia/Tokyo]") -public class EmissionsData -extends Object
-
EmissionsData
-
-
- -
-
-
    - -
  • -
    -

    Field Details

    -
      -
    • -
      -

      SERIALIZED_NAME_LOCATION

      -
      public static final String SERIALIZED_NAME_LOCATION
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_TIME

      -
      public static final String SERIALIZED_NAME_TIME
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_RATING

      -
      public static final String SERIALIZED_NAME_RATING
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_DURATION

      -
      public static final String SERIALIZED_NAME_DURATION
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      openapiFields

      -
      public static HashSet<String> openapiFields
      -
      -
    • -
    • -
      -

      openapiRequiredFields

      -
      public static HashSet<String> openapiRequiredFields
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      EmissionsData

      -
      public EmissionsData()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      location

      -
      public EmissionsData location(String location)
      -
      -
    • -
    • -
      -

      getLocation

      -
      @Nullable -public String getLocation()
      -
      Get location
      -
      -
      Returns:
      -
      location
      -
      -
      -
    • -
    • -
      -

      setLocation

      -
      public void setLocation(String location)
      -
      -
    • -
    • -
      -

      time

      -
      public EmissionsData time(OffsetDateTime time)
      -
      -
    • -
    • -
      -

      getTime

      -
      @Nullable -public OffsetDateTime getTime()
      -
      Get time
      -
      -
      Returns:
      -
      time
      -
      -
      -
    • -
    • -
      -

      setTime

      -
      public void setTime(OffsetDateTime time)
      -
      -
    • -
    • -
      -

      rating

      -
      public EmissionsData rating(Double rating)
      -
      -
    • -
    • -
      -

      getRating

      -
      @Nullable -public Double getRating()
      -
      Get rating
      -
      -
      Returns:
      -
      rating
      -
      -
      -
    • -
    • -
      -

      setRating

      -
      public void setRating(Double rating)
      -
      -
    • -
    • -
      -

      duration

      -
      public EmissionsData duration(String duration)
      -
      -
    • -
    • -
      -

      getDuration

      -
      @Nullable -public String getDuration()
      -
      Get duration
      -
      -
      Returns:
      -
      duration
      -
      -
      -
    • -
    • -
      -

      setDuration

      -
      public void setDuration(String duration)
      -
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object o)
      -
      -
      Overrides:
      -
      equals in class Object
      -
      -
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Overrides:
      -
      hashCode in class Object
      -
      -
      -
    • -
    • -
      -

      toString

      -
      public String toString()
      -
      -
      Overrides:
      -
      toString in class Object
      -
      -
      -
    • -
    • -
      -

      validateJsonObject

      -
      public static void validateJsonObject(com.google.gson.JsonObject jsonObj) - throws IOException
      -
      Validates the JSON Object and throws an exception if issues found
      -
      -
      Parameters:
      -
      jsonObj - JSON Object
      -
      Throws:
      -
      IOException - if the JSON Object is invalid with respect to EmissionsData
      -
      -
      -
    • -
    • -
      -

      fromJson

      -
      public static EmissionsData fromJson(String jsonString) - throws IOException
      -
      Create an instance of EmissionsData given an JSON string
      -
      -
      Parameters:
      -
      jsonString - JSON string
      -
      Returns:
      -
      An instance of EmissionsData
      -
      Throws:
      -
      IOException - if the JSON string is invalid with respect to EmissionsData
      -
      -
      -
    • -
    • -
      -

      toJson

      -
      public String toJson()
      -
      Convert an instance of EmissionsData to an JSON string
      -
      -
      Returns:
      -
      JSON string
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsDataDTO.CustomTypeAdapterFactory.html b/samples/java-client/apidocs/org/openapitools/client/model/EmissionsDataDTO.CustomTypeAdapterFactory.html deleted file mode 100644 index fad344569..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsDataDTO.CustomTypeAdapterFactory.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - -EmissionsDataDTO.CustomTypeAdapterFactory (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class EmissionsDataDTO.CustomTypeAdapterFactory

-
-
java.lang.Object -
org.openapitools.client.model.EmissionsDataDTO.CustomTypeAdapterFactory
-
-
-
-
All Implemented Interfaces:
-
com.google.gson.TypeAdapterFactory
-
-
-
Enclosing class:
-
EmissionsDataDTO
-
-
-
public static class EmissionsDataDTO.CustomTypeAdapterFactory -extends Object -implements com.google.gson.TypeAdapterFactory
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      CustomTypeAdapterFactory

      -
      public CustomTypeAdapterFactory()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      create

      -
      public <T> com.google.gson.TypeAdapter<T> create(com.google.gson.Gson gson, - com.google.gson.reflect.TypeToken<T> type)
      -
      -
      Specified by:
      -
      create in interface com.google.gson.TypeAdapterFactory
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsDataDTO.html b/samples/java-client/apidocs/org/openapitools/client/model/EmissionsDataDTO.html deleted file mode 100644 index ef449f870..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsDataDTO.html +++ /dev/null @@ -1,532 +0,0 @@ - - - - -EmissionsDataDTO (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class EmissionsDataDTO

-
-
java.lang.Object -
org.openapitools.client.model.EmissionsDataDTO
-
-
-
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", - date="2022-10-16T20:20:49.941+09:00[Asia/Tokyo]") -public class EmissionsDataDTO -extends Object
-
EmissionsDataDTO
-
-
- -
-
-
    - -
  • -
    -

    Field Details

    -
      -
    • -
      -

      SERIALIZED_NAME_LOCATION

      -
      public static final String SERIALIZED_NAME_LOCATION
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_TIMESTAMP

      -
      public static final String SERIALIZED_NAME_TIMESTAMP
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_DURATION

      -
      public static final String SERIALIZED_NAME_DURATION
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_VALUE

      -
      public static final String SERIALIZED_NAME_VALUE
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      openapiFields

      -
      public static HashSet<String> openapiFields
      -
      -
    • -
    • -
      -

      openapiRequiredFields

      -
      public static HashSet<String> openapiRequiredFields
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      EmissionsDataDTO

      -
      public EmissionsDataDTO()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      location

      -
      public EmissionsDataDTO location(String location)
      -
      -
    • -
    • -
      -

      getLocation

      -
      @Nullable -public String getLocation()
      -
      Get location
      -
      -
      Returns:
      -
      location
      -
      -
      -
    • -
    • -
      -

      setLocation

      -
      public void setLocation(String location)
      -
      -
    • -
    • -
      -

      timestamp

      -
      public EmissionsDataDTO timestamp(OffsetDateTime timestamp)
      -
      -
    • -
    • -
      -

      getTimestamp

      -
      @Nullable -public OffsetDateTime getTimestamp()
      -
      Get timestamp
      -
      -
      Returns:
      -
      timestamp
      -
      -
      -
    • -
    • -
      -

      setTimestamp

      -
      public void setTimestamp(OffsetDateTime timestamp)
      -
      -
    • -
    • -
      -

      duration

      -
      public EmissionsDataDTO duration(Integer duration)
      -
      -
    • -
    • -
      -

      getDuration

      -
      @Nullable -public Integer getDuration()
      -
      Get duration
      -
      -
      Returns:
      -
      duration
      -
      -
      -
    • -
    • -
      -

      setDuration

      -
      public void setDuration(Integer duration)
      -
      -
    • -
    • -
      -

      value

      -
      public EmissionsDataDTO value(Double value)
      -
      -
    • -
    • -
      -

      getValue

      -
      @Nullable -public Double getValue()
      -
      Get value
      -
      -
      Returns:
      -
      value
      -
      -
      -
    • -
    • -
      -

      setValue

      -
      public void setValue(Double value)
      -
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object o)
      -
      -
      Overrides:
      -
      equals in class Object
      -
      -
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Overrides:
      -
      hashCode in class Object
      -
      -
      -
    • -
    • -
      -

      toString

      -
      public String toString()
      -
      -
      Overrides:
      -
      toString in class Object
      -
      -
      -
    • -
    • -
      -

      validateJsonObject

      -
      public static void validateJsonObject(com.google.gson.JsonObject jsonObj) - throws IOException
      -
      Validates the JSON Object and throws an exception if issues found
      -
      -
      Parameters:
      -
      jsonObj - JSON Object
      -
      Throws:
      -
      IOException - if the JSON Object is invalid with respect to EmissionsDataDTO
      -
      -
      -
    • -
    • -
      -

      fromJson

      -
      public static EmissionsDataDTO fromJson(String jsonString) - throws IOException
      -
      Create an instance of EmissionsDataDTO given an JSON string
      -
      -
      Parameters:
      -
      jsonString - JSON string
      -
      Returns:
      -
      An instance of EmissionsDataDTO
      -
      Throws:
      -
      IOException - if the JSON string is invalid with respect to EmissionsDataDTO
      -
      -
      -
    • -
    • -
      -

      toJson

      -
      public String toJson()
      -
      Convert an instance of EmissionsDataDTO to an JSON string
      -
      -
      Returns:
      -
      JSON string
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory.html b/samples/java-client/apidocs/org/openapitools/client/model/EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory.html deleted file mode 100644 index 2289f6e44..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - -EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory

-
-
java.lang.Object -
org.openapitools.client.model.EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory
-
-
-
-
All Implemented Interfaces:
-
com.google.gson.TypeAdapterFactory
-
-
-
Enclosing class:
-
EmissionsForecastBatchParametersDTO
-
-
-
public static class EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory -extends Object -implements com.google.gson.TypeAdapterFactory
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      CustomTypeAdapterFactory

      -
      public CustomTypeAdapterFactory()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      create

      -
      public <T> com.google.gson.TypeAdapter<T> create(com.google.gson.Gson gson, - com.google.gson.reflect.TypeToken<T> type)
      -
      -
      Specified by:
      -
      create in interface com.google.gson.TypeAdapterFactory
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsForecastBatchParametersDTO.html b/samples/java-client/apidocs/org/openapitools/client/model/EmissionsForecastBatchParametersDTO.html deleted file mode 100644 index 10979704e..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsForecastBatchParametersDTO.html +++ /dev/null @@ -1,584 +0,0 @@ - - - - -EmissionsForecastBatchParametersDTO (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class EmissionsForecastBatchParametersDTO

-
-
java.lang.Object -
org.openapitools.client.model.EmissionsForecastBatchParametersDTO
-
-
-
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", - date="2022-10-16T20:20:49.941+09:00[Asia/Tokyo]") -public class EmissionsForecastBatchParametersDTO -extends Object
-
EmissionsForecastBatchParametersDTO
-
-
- -
-
-
    - -
  • -
    -

    Field Details

    -
      -
    • -
      -

      SERIALIZED_NAME_REQUESTED_AT

      -
      public static final String SERIALIZED_NAME_REQUESTED_AT
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_LOCATION

      -
      public static final String SERIALIZED_NAME_LOCATION
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_DATA_START_AT

      -
      public static final String SERIALIZED_NAME_DATA_START_AT
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_DATA_END_AT

      -
      public static final String SERIALIZED_NAME_DATA_END_AT
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_WINDOW_SIZE

      -
      public static final String SERIALIZED_NAME_WINDOW_SIZE
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      openapiFields

      -
      public static HashSet<String> openapiFields
      -
      -
    • -
    • -
      -

      openapiRequiredFields

      -
      public static HashSet<String> openapiRequiredFields
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      EmissionsForecastBatchParametersDTO

      -
      public EmissionsForecastBatchParametersDTO()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      requestedAt

      -
      public EmissionsForecastBatchParametersDTO requestedAt(OffsetDateTime requestedAt)
      -
      -
    • -
    • -
      -

      getRequestedAt

      -
      @Nullable -public OffsetDateTime getRequestedAt()
      -
      For historical forecast requests, this value is the timestamp used to access the most recently generated forecast as of that time.
      -
      -
      Returns:
      -
      requestedAt
      -
      -
      -
    • -
    • -
      -

      setRequestedAt

      -
      public void setRequestedAt(OffsetDateTime requestedAt)
      -
      -
    • -
    • -
      -

      location

      -
      public EmissionsForecastBatchParametersDTO location(String location)
      -
      -
    • -
    • -
      -

      getLocation

      -
      @Nullable -public String getLocation()
      -
      The location of the forecast
      -
      -
      Returns:
      -
      location
      -
      -
      -
    • -
    • -
      -

      setLocation

      -
      public void setLocation(String location)
      -
      -
    • -
    • -
      -

      dataStartAt

      -
      public EmissionsForecastBatchParametersDTO dataStartAt(OffsetDateTime dataStartAt)
      -
      -
    • -
    • -
      -

      getDataStartAt

      -
      @Nullable -public OffsetDateTime getDataStartAt()
      -
      Start time boundary of forecasted data points.Ignores current forecast data points before this time. Defaults to the earliest time in the forecast data.
      -
      -
      Returns:
      -
      dataStartAt
      -
      -
      -
    • -
    • -
      -

      setDataStartAt

      -
      public void setDataStartAt(OffsetDateTime dataStartAt)
      -
      -
    • -
    • -
      -

      dataEndAt

      - -
      -
    • -
    • -
      -

      getDataEndAt

      -
      @Nullable -public OffsetDateTime getDataEndAt()
      -
      End time boundary of forecasted data points. Ignores current forecast data points after this time. Defaults to the latest time in the forecast data.
      -
      -
      Returns:
      -
      dataEndAt
      -
      -
      -
    • -
    • -
      -

      setDataEndAt

      -
      public void setDataEndAt(OffsetDateTime dataEndAt)
      -
      -
    • -
    • -
      -

      windowSize

      -
      public EmissionsForecastBatchParametersDTO windowSize(Integer windowSize)
      -
      -
    • -
    • -
      -

      getWindowSize

      -
      @Nullable -public Integer getWindowSize()
      -
      The estimated duration (in minutes) of the workload. Defaults to the duration of a single forecast data point.
      -
      -
      Returns:
      -
      windowSize
      -
      -
      -
    • -
    • -
      -

      setWindowSize

      -
      public void setWindowSize(Integer windowSize)
      -
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object o)
      -
      -
      Overrides:
      -
      equals in class Object
      -
      -
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Overrides:
      -
      hashCode in class Object
      -
      -
      -
    • -
    • -
      -

      toString

      -
      public String toString()
      -
      -
      Overrides:
      -
      toString in class Object
      -
      -
      -
    • -
    • -
      -

      validateJsonObject

      -
      public static void validateJsonObject(com.google.gson.JsonObject jsonObj) - throws IOException
      -
      Validates the JSON Object and throws an exception if issues found
      -
      -
      Parameters:
      -
      jsonObj - JSON Object
      -
      Throws:
      -
      IOException - if the JSON Object is invalid with respect to EmissionsForecastBatchParametersDTO
      -
      -
      -
    • -
    • -
      -

      fromJson

      -
      public static EmissionsForecastBatchParametersDTO fromJson(String jsonString) - throws IOException
      -
      Create an instance of EmissionsForecastBatchParametersDTO given an JSON string
      -
      -
      Parameters:
      -
      jsonString - JSON string
      -
      Returns:
      -
      An instance of EmissionsForecastBatchParametersDTO
      -
      Throws:
      -
      IOException - if the JSON string is invalid with respect to EmissionsForecastBatchParametersDTO
      -
      -
      -
    • -
    • -
      -

      toJson

      -
      public String toJson()
      -
      Convert an instance of EmissionsForecastBatchParametersDTO to an JSON string
      -
      -
      Returns:
      -
      JSON string
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsForecastDTO.CustomTypeAdapterFactory.html b/samples/java-client/apidocs/org/openapitools/client/model/EmissionsForecastDTO.CustomTypeAdapterFactory.html deleted file mode 100644 index 2d2fe66a0..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsForecastDTO.CustomTypeAdapterFactory.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - -EmissionsForecastDTO.CustomTypeAdapterFactory (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class EmissionsForecastDTO.CustomTypeAdapterFactory

-
-
java.lang.Object -
org.openapitools.client.model.EmissionsForecastDTO.CustomTypeAdapterFactory
-
-
-
-
All Implemented Interfaces:
-
com.google.gson.TypeAdapterFactory
-
-
-
Enclosing class:
-
EmissionsForecastDTO
-
-
-
public static class EmissionsForecastDTO.CustomTypeAdapterFactory -extends Object -implements com.google.gson.TypeAdapterFactory
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      CustomTypeAdapterFactory

      -
      public CustomTypeAdapterFactory()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      create

      -
      public <T> com.google.gson.TypeAdapter<T> create(com.google.gson.Gson gson, - com.google.gson.reflect.TypeToken<T> type)
      -
      -
      Specified by:
      -
      create in interface com.google.gson.TypeAdapterFactory
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsForecastDTO.html b/samples/java-client/apidocs/org/openapitools/client/model/EmissionsForecastDTO.html deleted file mode 100644 index 96171dd2e..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/EmissionsForecastDTO.html +++ /dev/null @@ -1,758 +0,0 @@ - - - - -EmissionsForecastDTO (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class EmissionsForecastDTO

-
-
java.lang.Object -
org.openapitools.client.model.EmissionsForecastDTO
-
-
-
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", - date="2022-10-16T20:20:49.941+09:00[Asia/Tokyo]") -public class EmissionsForecastDTO -extends Object
-
EmissionsForecastDTO
-
-
- -
-
-
    - -
  • -
    -

    Field Details

    -
      -
    • -
      -

      SERIALIZED_NAME_GENERATED_AT

      -
      public static final String SERIALIZED_NAME_GENERATED_AT
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_REQUESTED_AT

      -
      public static final String SERIALIZED_NAME_REQUESTED_AT
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_LOCATION

      -
      public static final String SERIALIZED_NAME_LOCATION
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_DATA_START_AT

      -
      public static final String SERIALIZED_NAME_DATA_START_AT
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_DATA_END_AT

      -
      public static final String SERIALIZED_NAME_DATA_END_AT
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_WINDOW_SIZE

      -
      public static final String SERIALIZED_NAME_WINDOW_SIZE
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_OPTIMAL_DATA_POINTS

      -
      public static final String SERIALIZED_NAME_OPTIMAL_DATA_POINTS
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_FORECAST_DATA

      -
      public static final String SERIALIZED_NAME_FORECAST_DATA
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      openapiFields

      -
      public static HashSet<String> openapiFields
      -
      -
    • -
    • -
      -

      openapiRequiredFields

      -
      public static HashSet<String> openapiRequiredFields
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      EmissionsForecastDTO

      -
      public EmissionsForecastDTO()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      generatedAt

      -
      public EmissionsForecastDTO generatedAt(OffsetDateTime generatedAt)
      -
      -
    • -
    • -
      -

      getGeneratedAt

      -
      @Nullable -public OffsetDateTime getGeneratedAt()
      -
      Timestamp when the forecast was generated.
      -
      -
      Returns:
      -
      generatedAt
      -
      -
      -
    • -
    • -
      -

      setGeneratedAt

      -
      public void setGeneratedAt(OffsetDateTime generatedAt)
      -
      -
    • -
    • -
      -

      requestedAt

      -
      public EmissionsForecastDTO requestedAt(OffsetDateTime requestedAt)
      -
      -
    • -
    • -
      -

      getRequestedAt

      -
      @Nullable -public OffsetDateTime getRequestedAt()
      -
      For current requests, this value is the timestamp the request for forecast data was made. For historical forecast requests, this value is the timestamp used to access the most recently generated forecast as of that time.
      -
      -
      Returns:
      -
      requestedAt
      -
      -
      -
    • -
    • -
      -

      setRequestedAt

      -
      public void setRequestedAt(OffsetDateTime requestedAt)
      -
      -
    • -
    • -
      -

      location

      -
      public EmissionsForecastDTO location(String location)
      -
      -
    • -
    • -
      -

      getLocation

      -
      @Nullable -public String getLocation()
      -
      The location of the forecast
      -
      -
      Returns:
      -
      location
      -
      -
      -
    • -
    • -
      -

      setLocation

      -
      public void setLocation(String location)
      -
      -
    • -
    • -
      -

      dataStartAt

      -
      public EmissionsForecastDTO dataStartAt(OffsetDateTime dataStartAt)
      -
      -
    • -
    • -
      -

      getDataStartAt

      -
      @Nullable -public OffsetDateTime getDataStartAt()
      -
      Start time boundary of forecasted data points. Ignores forecast data points before this time. Defaults to the earliest time in the forecast data.
      -
      -
      Returns:
      -
      dataStartAt
      -
      -
      -
    • -
    • -
      -

      setDataStartAt

      -
      public void setDataStartAt(OffsetDateTime dataStartAt)
      -
      -
    • -
    • -
      -

      dataEndAt

      -
      public EmissionsForecastDTO dataEndAt(OffsetDateTime dataEndAt)
      -
      -
    • -
    • -
      -

      getDataEndAt

      -
      @Nullable -public OffsetDateTime getDataEndAt()
      -
      End time boundary of forecasted data points. Ignores forecast data points after this time. Defaults to the latest time in the forecast data.
      -
      -
      Returns:
      -
      dataEndAt
      -
      -
      -
    • -
    • -
      -

      setDataEndAt

      -
      public void setDataEndAt(OffsetDateTime dataEndAt)
      -
      -
    • -
    • -
      -

      windowSize

      -
      public EmissionsForecastDTO windowSize(Integer windowSize)
      -
      -
    • -
    • -
      -

      getWindowSize

      -
      @Nullable -public Integer getWindowSize()
      -
      The estimated duration (in minutes) of the workload. Defaults to the duration of a single forecast data point.
      -
      -
      Returns:
      -
      windowSize
      -
      -
      -
    • -
    • -
      -

      setWindowSize

      -
      public void setWindowSize(Integer windowSize)
      -
      -
    • -
    • -
      -

      optimalDataPoints

      -
      public EmissionsForecastDTO optimalDataPoints(List<EmissionsDataDTO> optimalDataPoints)
      -
      -
    • -
    • -
      -

      addOptimalDataPointsItem

      -
      public EmissionsForecastDTO addOptimalDataPointsItem(EmissionsDataDTO optimalDataPointsItem)
      -
      -
    • -
    • -
      -

      getOptimalDataPoints

      -
      @Nullable -public List<EmissionsDataDTO> getOptimalDataPoints()
      -
      The optimal forecasted data point within the 'forecastData' array. Null if 'forecastData' array is empty.
      -
      -
      Returns:
      -
      optimalDataPoints
      -
      -
      -
    • -
    • -
      -

      setOptimalDataPoints

      -
      public void setOptimalDataPoints(List<EmissionsDataDTO> optimalDataPoints)
      -
      -
    • -
    • -
      -

      forecastData

      -
      public EmissionsForecastDTO forecastData(List<EmissionsDataDTO> forecastData)
      -
      -
    • -
    • -
      -

      addForecastDataItem

      -
      public EmissionsForecastDTO addForecastDataItem(EmissionsDataDTO forecastDataItem)
      -
      -
    • -
    • -
      -

      getForecastData

      -
      @Nullable -public List<EmissionsDataDTO> getForecastData()
      -
      The forecasted data points transformed and filtered to reflect the specified time and window parameters. Points are ordered chronologically; Empty array if all data points were filtered out. E.G. dataStartAt and dataEndAt times outside the forecast period; windowSize greater than total duration of forecast data;
      -
      -
      Returns:
      -
      forecastData
      -
      -
      -
    • -
    • -
      -

      setForecastData

      -
      public void setForecastData(List<EmissionsDataDTO> forecastData)
      -
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object o)
      -
      -
      Overrides:
      -
      equals in class Object
      -
      -
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Overrides:
      -
      hashCode in class Object
      -
      -
      -
    • -
    • -
      -

      toString

      -
      public String toString()
      -
      -
      Overrides:
      -
      toString in class Object
      -
      -
      -
    • -
    • -
      -

      validateJsonObject

      -
      public static void validateJsonObject(com.google.gson.JsonObject jsonObj) - throws IOException
      -
      Validates the JSON Object and throws an exception if issues found
      -
      -
      Parameters:
      -
      jsonObj - JSON Object
      -
      Throws:
      -
      IOException - if the JSON Object is invalid with respect to EmissionsForecastDTO
      -
      -
      -
    • -
    • -
      -

      fromJson

      -
      public static EmissionsForecastDTO fromJson(String jsonString) - throws IOException
      -
      Create an instance of EmissionsForecastDTO given an JSON string
      -
      -
      Parameters:
      -
      jsonString - JSON string
      -
      Returns:
      -
      An instance of EmissionsForecastDTO
      -
      Throws:
      -
      IOException - if the JSON string is invalid with respect to EmissionsForecastDTO
      -
      -
      -
    • -
    • -
      -

      toJson

      -
      public String toJson()
      -
      Convert an instance of EmissionsForecastDTO to an JSON string
      -
      -
      Returns:
      -
      JSON string
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/ValidationProblemDetails.CustomTypeAdapterFactory.html b/samples/java-client/apidocs/org/openapitools/client/model/ValidationProblemDetails.CustomTypeAdapterFactory.html deleted file mode 100644 index 614ed9858..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/ValidationProblemDetails.CustomTypeAdapterFactory.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - -ValidationProblemDetails.CustomTypeAdapterFactory (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class ValidationProblemDetails.CustomTypeAdapterFactory

-
-
java.lang.Object -
org.openapitools.client.model.ValidationProblemDetails.CustomTypeAdapterFactory
-
-
-
-
All Implemented Interfaces:
-
com.google.gson.TypeAdapterFactory
-
-
-
Enclosing class:
-
ValidationProblemDetails
-
-
-
public static class ValidationProblemDetails.CustomTypeAdapterFactory -extends Object -implements com.google.gson.TypeAdapterFactory
-
-
- -
-
-
    - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      CustomTypeAdapterFactory

      -
      public CustomTypeAdapterFactory()
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      create

      -
      public <T> com.google.gson.TypeAdapter<T> create(com.google.gson.Gson gson, - com.google.gson.reflect.TypeToken<T> type)
      -
      -
      Specified by:
      -
      create in interface com.google.gson.TypeAdapterFactory
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/ValidationProblemDetails.html b/samples/java-client/apidocs/org/openapitools/client/model/ValidationProblemDetails.html deleted file mode 100644 index b2b9e8494..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/ValidationProblemDetails.html +++ /dev/null @@ -1,626 +0,0 @@ - - - - -ValidationProblemDetails (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
- -

Class ValidationProblemDetails

-
-
java.lang.Object -
org.openapitools.client.model.ValidationProblemDetails
-
-
-
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", - date="2022-10-16T20:20:49.941+09:00[Asia/Tokyo]") -public class ValidationProblemDetails -extends Object
-
ValidationProblemDetails
-
-
- -
-
-
    - -
  • -
    -

    Field Details

    -
      -
    • -
      -

      SERIALIZED_NAME_TYPE

      -
      public static final String SERIALIZED_NAME_TYPE
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_TITLE

      -
      public static final String SERIALIZED_NAME_TITLE
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_STATUS

      -
      public static final String SERIALIZED_NAME_STATUS
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_DETAIL

      -
      public static final String SERIALIZED_NAME_DETAIL
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_INSTANCE

      -
      public static final String SERIALIZED_NAME_INSTANCE
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      SERIALIZED_NAME_ERRORS

      -
      public static final String SERIALIZED_NAME_ERRORS
      -
      -
      See Also:
      -
      - -
      -
      -
      -
    • -
    • -
      -

      openapiFields

      -
      public static HashSet<String> openapiFields
      -
      -
    • -
    • -
      -

      openapiRequiredFields

      -
      public static HashSet<String> openapiRequiredFields
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      ValidationProblemDetails

      -
      public ValidationProblemDetails()
      -
      -
    • -
    • -
      -

      ValidationProblemDetails

      -
      public ValidationProblemDetails(Map<String,List<String>> errors)
      -
      -
    • -
    -
    -
  • - -
  • -
    -

    Method Details

    -
      -
    • -
      -

      type

      -
      public ValidationProblemDetails type(String type)
      -
      -
    • -
    • -
      -

      getType

      -
      @Nullable -public String getType()
      -
      Get type
      -
      -
      Returns:
      -
      type
      -
      -
      -
    • -
    • -
      -

      setType

      -
      public void setType(String type)
      -
      -
    • -
    • -
      -

      title

      -
      public ValidationProblemDetails title(String title)
      -
      -
    • -
    • -
      -

      getTitle

      -
      @Nullable -public String getTitle()
      -
      Get title
      -
      -
      Returns:
      -
      title
      -
      -
      -
    • -
    • -
      -

      setTitle

      -
      public void setTitle(String title)
      -
      -
    • -
    • -
      -

      status

      -
      public ValidationProblemDetails status(Integer status)
      -
      -
    • -
    • -
      -

      getStatus

      -
      @Nullable -public Integer getStatus()
      -
      Get status
      -
      -
      Returns:
      -
      status
      -
      -
      -
    • -
    • -
      -

      setStatus

      -
      public void setStatus(Integer status)
      -
      -
    • -
    • -
      -

      detail

      -
      public ValidationProblemDetails detail(String detail)
      -
      -
    • -
    • -
      -

      getDetail

      -
      @Nullable -public String getDetail()
      -
      Get detail
      -
      -
      Returns:
      -
      detail
      -
      -
      -
    • -
    • -
      -

      setDetail

      -
      public void setDetail(String detail)
      -
      -
    • -
    • -
      -

      instance

      -
      public ValidationProblemDetails instance(String instance)
      -
      -
    • -
    • -
      -

      getInstance

      -
      @Nullable -public String getInstance()
      -
      Get instance
      -
      -
      Returns:
      -
      instance
      -
      -
      -
    • -
    • -
      -

      setInstance

      -
      public void setInstance(String instance)
      -
      -
    • -
    • -
      -

      getErrors

      -
      @Nullable -public Map<String,List<String>> getErrors()
      -
      Get errors
      -
      -
      Returns:
      -
      errors
      -
      -
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object o)
      -
      -
      Overrides:
      -
      equals in class Object
      -
      -
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Overrides:
      -
      hashCode in class Object
      -
      -
      -
    • -
    • -
      -

      toString

      -
      public String toString()
      -
      -
      Overrides:
      -
      toString in class Object
      -
      -
      -
    • -
    • -
      -

      validateJsonObject

      -
      public static void validateJsonObject(com.google.gson.JsonObject jsonObj) - throws IOException
      -
      Validates the JSON Object and throws an exception if issues found
      -
      -
      Parameters:
      -
      jsonObj - JSON Object
      -
      Throws:
      -
      IOException - if the JSON Object is invalid with respect to ValidationProblemDetails
      -
      -
      -
    • -
    • -
      -

      fromJson

      -
      public static ValidationProblemDetails fromJson(String jsonString) - throws IOException
      -
      Create an instance of ValidationProblemDetails given an JSON string
      -
      -
      Parameters:
      -
      jsonString - JSON string
      -
      Returns:
      -
      An instance of ValidationProblemDetails
      -
      Throws:
      -
      IOException - if the JSON string is invalid with respect to ValidationProblemDetails
      -
      -
      -
    • -
    • -
      -

      toJson

      -
      public String toJson()
      -
      Convert an instance of ValidationProblemDetails to an JSON string
      -
      -
      Returns:
      -
      JSON string
      -
      -
      -
    • -
    -
    -
  • -
-
- -
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/class-use/AbstractOpenApiSchema.html b/samples/java-client/apidocs/org/openapitools/client/model/class-use/AbstractOpenApiSchema.html deleted file mode 100644 index 4c32db00f..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/class-use/AbstractOpenApiSchema.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.model.AbstractOpenApiSchema (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.model.AbstractOpenApiSchema

-
-No usage of org.openapitools.client.model.AbstractOpenApiSchema
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/class-use/CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory.html b/samples/java-client/apidocs/org/openapitools/client/model/class-use/CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory.html deleted file mode 100644 index abef70c9d..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/class-use/CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.model.CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.model.CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory

-
-No usage of org.openapitools.client.model.CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/class-use/CarbonIntensityBatchParametersDTO.html b/samples/java-client/apidocs/org/openapitools/client/model/class-use/CarbonIntensityBatchParametersDTO.html deleted file mode 100644 index 6be301f4f..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/class-use/CarbonIntensityBatchParametersDTO.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - -Uses of Class org.openapitools.client.model.CarbonIntensityBatchParametersDTO (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.model.CarbonIntensityBatchParametersDTO

-
- - -
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/class-use/CarbonIntensityDTO.CustomTypeAdapterFactory.html b/samples/java-client/apidocs/org/openapitools/client/model/class-use/CarbonIntensityDTO.CustomTypeAdapterFactory.html deleted file mode 100644 index 1eb52b077..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/class-use/CarbonIntensityDTO.CustomTypeAdapterFactory.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.model.CarbonIntensityDTO.CustomTypeAdapterFactory (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.model.CarbonIntensityDTO.CustomTypeAdapterFactory

-
-No usage of org.openapitools.client.model.CarbonIntensityDTO.CustomTypeAdapterFactory
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/class-use/CarbonIntensityDTO.html b/samples/java-client/apidocs/org/openapitools/client/model/class-use/CarbonIntensityDTO.html deleted file mode 100644 index b3b30ba3f..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/class-use/CarbonIntensityDTO.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - -Uses of Class org.openapitools.client.model.CarbonIntensityDTO (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.model.CarbonIntensityDTO

-
-
Packages that use CarbonIntensityDTO
- -
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsData.CustomTypeAdapterFactory.html b/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsData.CustomTypeAdapterFactory.html deleted file mode 100644 index a53a637cc..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsData.CustomTypeAdapterFactory.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.model.EmissionsData.CustomTypeAdapterFactory (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.model.EmissionsData.CustomTypeAdapterFactory

-
-No usage of org.openapitools.client.model.EmissionsData.CustomTypeAdapterFactory
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsData.html b/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsData.html deleted file mode 100644 index 1892b3830..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsData.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - -Uses of Class org.openapitools.client.model.EmissionsData (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.model.EmissionsData

-
-
Packages that use EmissionsData
- -
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsDataDTO.CustomTypeAdapterFactory.html b/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsDataDTO.CustomTypeAdapterFactory.html deleted file mode 100644 index 52afb0f99..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsDataDTO.CustomTypeAdapterFactory.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.model.EmissionsDataDTO.CustomTypeAdapterFactory (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.model.EmissionsDataDTO.CustomTypeAdapterFactory

-
-No usage of org.openapitools.client.model.EmissionsDataDTO.CustomTypeAdapterFactory
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsDataDTO.html b/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsDataDTO.html deleted file mode 100644 index 5440653e7..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsDataDTO.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - -Uses of Class org.openapitools.client.model.EmissionsDataDTO (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.model.EmissionsDataDTO

-
-
Packages that use EmissionsDataDTO
-
-
Package
-
Description
- -
 
-
-
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory.html b/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory.html deleted file mode 100644 index 664725b91..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.model.EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.model.EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory

-
-No usage of org.openapitools.client.model.EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsForecastBatchParametersDTO.html b/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsForecastBatchParametersDTO.html deleted file mode 100644 index 6fb025ee3..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsForecastBatchParametersDTO.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - -Uses of Class org.openapitools.client.model.EmissionsForecastBatchParametersDTO (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.model.EmissionsForecastBatchParametersDTO

-
- - -
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsForecastDTO.CustomTypeAdapterFactory.html b/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsForecastDTO.CustomTypeAdapterFactory.html deleted file mode 100644 index f5ccd8965..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsForecastDTO.CustomTypeAdapterFactory.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.model.EmissionsForecastDTO.CustomTypeAdapterFactory (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.model.EmissionsForecastDTO.CustomTypeAdapterFactory

-
-No usage of org.openapitools.client.model.EmissionsForecastDTO.CustomTypeAdapterFactory
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsForecastDTO.html b/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsForecastDTO.html deleted file mode 100644 index e0c4b7642..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/class-use/EmissionsForecastDTO.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - -Uses of Class org.openapitools.client.model.EmissionsForecastDTO (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.model.EmissionsForecastDTO

-
-
Packages that use EmissionsForecastDTO
- -
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/class-use/ValidationProblemDetails.CustomTypeAdapterFactory.html b/samples/java-client/apidocs/org/openapitools/client/model/class-use/ValidationProblemDetails.CustomTypeAdapterFactory.html deleted file mode 100644 index b5d4478cc..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/class-use/ValidationProblemDetails.CustomTypeAdapterFactory.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class org.openapitools.client.model.ValidationProblemDetails.CustomTypeAdapterFactory (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.model.ValidationProblemDetails.CustomTypeAdapterFactory

-
-No usage of org.openapitools.client.model.ValidationProblemDetails.CustomTypeAdapterFactory
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/class-use/ValidationProblemDetails.html b/samples/java-client/apidocs/org/openapitools/client/model/class-use/ValidationProblemDetails.html deleted file mode 100644 index 9ec8fe39a..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/class-use/ValidationProblemDetails.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - -Uses of Class org.openapitools.client.model.ValidationProblemDetails (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
org.openapitools.client.model.ValidationProblemDetails

-
-
Packages that use ValidationProblemDetails
-
-
Package
-
Description
- -
 
-
-
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/package-summary.html b/samples/java-client/apidocs/org/openapitools/client/model/package-summary.html deleted file mode 100644 index 60ade13cc..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/package-summary.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - -org.openapitools.client.model (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Package org.openapitools.client.model

-
-
-
package org.openapitools.client.model
-
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/package-tree.html b/samples/java-client/apidocs/org/openapitools/client/model/package-tree.html deleted file mode 100644 index 5228e1bb0..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/package-tree.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - -org.openapitools.client.model Class Hierarchy (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Hierarchy For Package org.openapitools.client.model

-Package Hierarchies: - -
-
-

Class Hierarchy

- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/model/package-use.html b/samples/java-client/apidocs/org/openapitools/client/model/package-use.html deleted file mode 100644 index b39a1073c..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/model/package-use.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - -Uses of Package org.openapitools.client.model (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Package
org.openapitools.client.model

-
- - -
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/package-summary.html b/samples/java-client/apidocs/org/openapitools/client/package-summary.html deleted file mode 100644 index de87d2baa..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/package-summary.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - -org.openapitools.client (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Package org.openapitools.client

-
-
-
package org.openapitools.client
-
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/package-tree.html b/samples/java-client/apidocs/org/openapitools/client/package-tree.html deleted file mode 100644 index 3feb8977a..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/package-tree.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - -org.openapitools.client Class Hierarchy (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Hierarchy For Package org.openapitools.client

-Package Hierarchies: - -
-
-

Class Hierarchy

- -
-
-

Interface Hierarchy

- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/org/openapitools/client/package-use.html b/samples/java-client/apidocs/org/openapitools/client/package-use.html deleted file mode 100644 index 78a626214..000000000 --- a/samples/java-client/apidocs/org/openapitools/client/package-use.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - -Uses of Package org.openapitools.client (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Package
org.openapitools.client

-
-
Packages that use org.openapitools.client
- -
- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/overview-summary.html b/samples/java-client/apidocs/overview-summary.html deleted file mode 100644 index 0be607642..000000000 --- a/samples/java-client/apidocs/overview-summary.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - -openapi-java-client 1.0 API - - - - - - - - - - - -
- -

index.html

-
- - diff --git a/samples/java-client/apidocs/overview-tree.html b/samples/java-client/apidocs/overview-tree.html deleted file mode 100644 index 156e556ae..000000000 --- a/samples/java-client/apidocs/overview-tree.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - -Class Hierarchy (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
- -
-
- -
-

Class Hierarchy

- -
-
-

Interface Hierarchy

- -
-
-
-
- -
-
-
- - diff --git a/samples/java-client/apidocs/package-search-index.js b/samples/java-client/apidocs/package-search-index.js deleted file mode 100644 index 39543d8d2..000000000 --- a/samples/java-client/apidocs/package-search-index.js +++ /dev/null @@ -1 +0,0 @@ -packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"org.openapitools.client"},{"l":"org.openapitools.client.api"},{"l":"org.openapitools.client.auth"},{"l":"org.openapitools.client.model"}];updateSearchResults(); \ No newline at end of file diff --git a/samples/java-client/apidocs/resources/glass.png b/samples/java-client/apidocs/resources/glass.png deleted file mode 100644 index a7f591f46..000000000 Binary files a/samples/java-client/apidocs/resources/glass.png and /dev/null differ diff --git a/samples/java-client/apidocs/resources/x.png b/samples/java-client/apidocs/resources/x.png deleted file mode 100644 index 30548a756..000000000 Binary files a/samples/java-client/apidocs/resources/x.png and /dev/null differ diff --git a/samples/java-client/apidocs/script-dir/images/ui-bg_glass_55_fbf9ee_1x400.png b/samples/java-client/apidocs/script-dir/images/ui-bg_glass_55_fbf9ee_1x400.png deleted file mode 100644 index 34abd18f3..000000000 Binary files a/samples/java-client/apidocs/script-dir/images/ui-bg_glass_55_fbf9ee_1x400.png and /dev/null differ diff --git a/samples/java-client/apidocs/script-dir/images/ui-bg_glass_65_dadada_1x400.png b/samples/java-client/apidocs/script-dir/images/ui-bg_glass_65_dadada_1x400.png deleted file mode 100644 index f058a9385..000000000 Binary files a/samples/java-client/apidocs/script-dir/images/ui-bg_glass_65_dadada_1x400.png and /dev/null differ diff --git a/samples/java-client/apidocs/script-dir/images/ui-bg_glass_75_dadada_1x400.png b/samples/java-client/apidocs/script-dir/images/ui-bg_glass_75_dadada_1x400.png deleted file mode 100644 index 2ce04c165..000000000 Binary files a/samples/java-client/apidocs/script-dir/images/ui-bg_glass_75_dadada_1x400.png and /dev/null differ diff --git a/samples/java-client/apidocs/script-dir/images/ui-bg_glass_75_e6e6e6_1x400.png b/samples/java-client/apidocs/script-dir/images/ui-bg_glass_75_e6e6e6_1x400.png deleted file mode 100644 index a90afb8bf..000000000 Binary files a/samples/java-client/apidocs/script-dir/images/ui-bg_glass_75_e6e6e6_1x400.png and /dev/null differ diff --git a/samples/java-client/apidocs/script-dir/images/ui-bg_glass_95_fef1ec_1x400.png b/samples/java-client/apidocs/script-dir/images/ui-bg_glass_95_fef1ec_1x400.png deleted file mode 100644 index dbe091f6d..000000000 Binary files a/samples/java-client/apidocs/script-dir/images/ui-bg_glass_95_fef1ec_1x400.png and /dev/null differ diff --git a/samples/java-client/apidocs/script-dir/images/ui-bg_highlight-soft_75_cccccc_1x100.png b/samples/java-client/apidocs/script-dir/images/ui-bg_highlight-soft_75_cccccc_1x100.png deleted file mode 100644 index 5dc3593e4..000000000 Binary files a/samples/java-client/apidocs/script-dir/images/ui-bg_highlight-soft_75_cccccc_1x100.png and /dev/null differ diff --git a/samples/java-client/apidocs/script-dir/images/ui-icons_222222_256x240.png b/samples/java-client/apidocs/script-dir/images/ui-icons_222222_256x240.png deleted file mode 100644 index e723e17cb..000000000 Binary files a/samples/java-client/apidocs/script-dir/images/ui-icons_222222_256x240.png and /dev/null differ diff --git a/samples/java-client/apidocs/script-dir/images/ui-icons_2e83ff_256x240.png b/samples/java-client/apidocs/script-dir/images/ui-icons_2e83ff_256x240.png deleted file mode 100644 index 1f5f49756..000000000 Binary files a/samples/java-client/apidocs/script-dir/images/ui-icons_2e83ff_256x240.png and /dev/null differ diff --git a/samples/java-client/apidocs/script-dir/images/ui-icons_454545_256x240.png b/samples/java-client/apidocs/script-dir/images/ui-icons_454545_256x240.png deleted file mode 100644 index 618f5b0ca..000000000 Binary files a/samples/java-client/apidocs/script-dir/images/ui-icons_454545_256x240.png and /dev/null differ diff --git a/samples/java-client/apidocs/script-dir/images/ui-icons_888888_256x240.png b/samples/java-client/apidocs/script-dir/images/ui-icons_888888_256x240.png deleted file mode 100644 index ee5e33f27..000000000 Binary files a/samples/java-client/apidocs/script-dir/images/ui-icons_888888_256x240.png and /dev/null differ diff --git a/samples/java-client/apidocs/script-dir/images/ui-icons_cd0a0a_256x240.png b/samples/java-client/apidocs/script-dir/images/ui-icons_cd0a0a_256x240.png deleted file mode 100644 index 7e8ebc180..000000000 Binary files a/samples/java-client/apidocs/script-dir/images/ui-icons_cd0a0a_256x240.png and /dev/null differ diff --git a/samples/java-client/apidocs/script-dir/jquery-3.5.1.min.js b/samples/java-client/apidocs/script-dir/jquery-3.5.1.min.js deleted file mode 100644 index b0614034a..000000000 --- a/samples/java-client/apidocs/script-dir/jquery-3.5.1.min.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! jQuery v3.5.1 | (c) JS Foundation and other contributors | jquery.org/license */ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0a;a++)for(s in o[a])n=o[a][s],o[a].hasOwnProperty(s)&&void 0!==n&&(e[s]=t.isPlainObject(n)?t.isPlainObject(e[s])?t.widget.extend({},e[s],n):t.widget.extend({},n):n);return e},t.widget.bridge=function(e,s){var n=s.prototype.widgetFullName||e;t.fn[e]=function(o){var a="string"==typeof o,r=i.call(arguments,1),l=this;return a?this.length||"instance"!==o?this.each(function(){var i,s=t.data(this,n);return"instance"===o?(l=s,!1):s?t.isFunction(s[o])&&"_"!==o.charAt(0)?(i=s[o].apply(s,r),i!==s&&void 0!==i?(l=i&&i.jquery?l.pushStack(i.get()):i,!1):void 0):t.error("no such method '"+o+"' for "+e+" widget instance"):t.error("cannot call methods on "+e+" prior to initialization; "+"attempted to call method '"+o+"'")}):l=void 0:(r.length&&(o=t.widget.extend.apply(null,[o].concat(r))),this.each(function(){var e=t.data(this,n);e?(e.option(o||{}),e._init&&e._init()):t.data(this,n,new s(o,this))})),l}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"
",options:{classes:{},disabled:!1,create:null},_createWidget:function(i,s){s=t(s||this.defaultElement||this)[0],this.element=t(s),this.uuid=e++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},s!==this&&(t.data(s,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===s&&this.destroy()}}),this.document=t(s.style?s.ownerDocument:s.document||s),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),i),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,function(t,i){e._removeClass(i,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(a={},s=e.split("."),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;s.length-1>o;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){function i(i,o){var a,r;for(r=0;i.length>r;r++)a=n.classesElementLookup[i[r]]||t(),a=e.add?t(t.unique(a.get().concat(e.element.get()))):t(a.not(e.element).get()),n.classesElementLookup[i[r]]=a,s.push(i[r]),o&&e.classes[i[r]]&&s.push(e.classes[i[r]])}var s=[],n=this;return e=t.extend({element:this.element,classes:this.options.classes||{}},e),this._on(e.element,{remove:"_untrackClassesElement"}),e.keys&&i(e.keys.match(/\S+/g)||[],!0),e.extra&&i(e.extra.match(/\S+/g)||[]),s.join(" ")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s="boolean"==typeof s?s:i;var n="string"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;"boolean"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,function(s,a){function r(){return e||o.options.disabled!==!0&&!t(this).hasClass("ui-state-disabled")?("string"==typeof a?o[a]:a).apply(o,arguments):void 0}"string"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var l=s.match(/^([\w:-]*)\s*(.*)$/),h=l[1]+o.eventNamespace,c=l[2];c?n.on(h,c,r):i.on(h,r)})},_off:function(e,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.off(i).off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,"ui-state-hover")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,"ui-state-focus")},focusout:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){"string"==typeof n&&(n={effect:n});var a,r=n?n===!0||"number"==typeof n?i:n.effect||i:e;n=n||{},"number"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}}),t.widget,function(){function e(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function i(e,i){return parseInt(t.css(e,i),10)||0}function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:t.isWindow(i)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()}}var n,o=Math.max,a=Math.abs,r=/left|center|right/,l=/top|center|bottom/,h=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,d=t.fn.position;t.position={scrollbarWidth:function(){if(void 0!==n)return n;var e,i,s=t("
"),o=s.children()[0];return t("body").append(s),e=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,e===i&&(i=s[0].clientWidth),s.remove(),n=e-i},getScrollInfo:function(e){var i=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),s=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),n="scroll"===i||"auto"===i&&e.widthi?"left":e>0?"right":"center",vertical:0>r?"top":s>0?"bottom":"middle"};h>p&&p>a(e+i)&&(u.horizontal="center"),c>f&&f>a(s+r)&&(u.vertical="middle"),u.important=o(a(e),a(i))>o(a(s),a(r))?"horizontal":"vertical",n.using.call(this,t,u)}),l.offset(t.extend(D,{using:r}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=t.left-e.collisionPosition.marginLeft,l=n-r,h=r+e.collisionWidth-a-n;e.collisionWidth>a?l>0&&0>=h?(i=t.left+l+e.collisionWidth-a-n,t.left+=l-i):t.left=h>0&&0>=l?n:l>h?n+a-e.collisionWidth:n:l>0?t.left+=l:h>0?t.left-=h:t.left=o(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,a=e.within.height,r=t.top-e.collisionPosition.marginTop,l=n-r,h=r+e.collisionHeight-a-n;e.collisionHeight>a?l>0&&0>=h?(i=t.top+l+e.collisionHeight-a-n,t.top+=l-i):t.top=h>0&&0>=l?n:l>h?n+a-e.collisionHeight:n:l>0?t.top+=l:h>0?t.top-=h:t.top=o(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,r=n.width,l=n.isWindow?n.scrollLeft:n.offset.left,h=t.left-e.collisionPosition.marginLeft,c=h-l,u=h+e.collisionWidth-r-l,d="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,p="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-r-o,(0>i||a(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-l,(s>0||u>a(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,r=n.height,l=n.isWindow?n.scrollTop:n.offset.top,h=t.top-e.collisionPosition.marginTop,c=h-l,u=h+e.collisionHeight-r-l,d="top"===e.my[1],p=d?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,f="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,g=-2*e.offset[1];0>c?(s=t.top+p+f+g+e.collisionHeight-r-o,(0>s||a(c)>s)&&(t.top+=p+f+g)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+g-l,(i>0||u>a(i))&&(t.top+=p+f+g))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}}}(),t.ui.position,t.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},t.fn.extend({uniqueId:function(){var t=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&t(this).removeAttr("id")})}}),t.ui.safeActiveElement=function(t){var e;try{e=t.activeElement}catch(i){e=t.body}return e||(e=t.body),e.nodeName||(e=t.body),e},t.widget("ui.menu",{version:"1.12.1",defaultElement:"
    ",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault()},"click .ui-menu-item":function(e){var i=t(e.target),s=t(t.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&i.not(".ui-state-disabled").length&&(this.select(e),e.isPropagationStopped()||(this.mouseHandled=!0),i.has(".ui-menu").length?this.expand(e):!this.element.is(":focus")&&s.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":function(e){if(!this.previousFilter){var i=t(e.target).closest(".ui-menu-item"),s=t(e.currentTarget);i[0]===s[0]&&(this._removeClass(s.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(e,s))}},mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this.element.find(this.options.items).eq(0);e||this.focus(t,i)},blur:function(e){this._delay(function(){var i=!t.contains(this.element[0],t.ui.safeActiveElement(this.document[0]));i&&this.collapseAll(e)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t),this.mouseHandled=!1}})},_destroy:function(){var e=this.element.find(".ui-menu-item").removeAttr("role aria-disabled"),i=e.children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),i.children().each(function(){var e=t(this);e.data("ui-menu-submenu-caret")&&e.remove()})},_keydown:function(e){var i,s,n,o,a=!0;switch(e.keyCode){case t.ui.keyCode.PAGE_UP:this.previousPage(e);break;case t.ui.keyCode.PAGE_DOWN:this.nextPage(e);break;case t.ui.keyCode.HOME:this._move("first","first",e);break;case t.ui.keyCode.END:this._move("last","last",e);break;case t.ui.keyCode.UP:this.previous(e);break;case t.ui.keyCode.DOWN:this.next(e);break;case t.ui.keyCode.LEFT:this.collapse(e);break;case t.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(e);break;case t.ui.keyCode.ENTER:case t.ui.keyCode.SPACE:this._activate(e);break;case t.ui.keyCode.ESCAPE:this.collapse(e);break;default:a=!1,s=this.previousFilter||"",o=!1,n=e.keyCode>=96&&105>=e.keyCode?""+(e.keyCode-96):String.fromCharCode(e.keyCode),clearTimeout(this.filterTimer),n===s?o=!0:n=s+n,i=this._filterMenuItems(n),i=o&&-1!==i.index(this.active.next())?this.active.nextAll(".ui-menu-item"):i,i.length||(n=String.fromCharCode(e.keyCode),i=this._filterMenuItems(n)),i.length?(this.focus(e,i),this.previousFilter=n,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}a&&e.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var e,i,s,n,o,a=this,r=this.options.icons.submenu,l=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),s=l.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var e=t(this),i=e.prev(),s=t("").data("ui-menu-submenu-caret",!0);a._addClass(s,"ui-menu-icon","ui-icon "+r),i.attr("aria-haspopup","true").prepend(s),e.attr("aria-labelledby",i.attr("id"))}),this._addClass(s,"ui-menu","ui-widget ui-widget-content ui-front"),e=l.add(this.element),i=e.find(this.options.items),i.not(".ui-menu-item").each(function(){var e=t(this);a._isDivider(e)&&a._addClass(e,"ui-menu-divider","ui-widget-content")}),n=i.not(".ui-menu-item, .ui-menu-divider"),o=n.children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(n,"ui-menu-item")._addClass(o,"ui-menu-item-wrapper"),i.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!t.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){if("icons"===t){var i=this.element.find(".ui-menu-icon");this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)}this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t+""),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i,s,n;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),s=this.active.children(".ui-menu-item-wrapper"),this._addClass(s,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",s.attr("id")),n=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(n,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),i=e.children(".ui-menu"),i.length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(e){var i,s,n,o,a,r;this._hasScroll()&&(i=parseFloat(t.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(t.css(this.activeMenu[0],"paddingTop"))||0,n=e.offset().top-this.activeMenu.offset().top-i-s,o=this.activeMenu.scrollTop(),a=this.activeMenu.height(),r=e.outerHeight(),0>n?this.activeMenu.scrollTop(o+n):n+r>a&&this.activeMenu.scrollTop(o+n-a+r))},blur:function(t,e){e||clearTimeout(this.timer),this.active&&(this._removeClass(this.active.children(".ui-menu-item-wrapper"),null,"ui-state-active"),this._trigger("blur",t,{item:this.active}),this.active=null)},_startOpening:function(t){clearTimeout(this.timer),"true"===t.attr("aria-hidden")&&(this.timer=this._delay(function(){this._close(),this._open(t)},this.delay))},_open:function(e){var i=t.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(e.parents(".ui-menu")).hide().attr("aria-hidden","true"),e.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(i)},collapseAll:function(e,i){clearTimeout(this.timer),this.timer=this._delay(function(){var s=i?this.element:t(e&&e.target).closest(this.element.find(".ui-menu"));s.length||(s=this.element),this._close(s),this.blur(e),this._removeClass(s.find(".ui-state-active"),null,"ui-state-active"),this.activeMenu=s},this.delay)},_close:function(t){t||(t=this.active?this.active.parent():this.element),t.find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false")},_closeOnDocumentClick:function(e){return!t(e.target).closest(".ui-menu").length},_isDivider:function(t){return!/[^\-\u2014\u2013\s]/.test(t.text())},collapse:function(t){var e=this.active&&this.active.parent().closest(".ui-menu-item",this.element);e&&e.length&&(this._close(),this.focus(t,e))},expand:function(t){var e=this.active&&this.active.children(".ui-menu ").find(this.options.items).first();e&&e.length&&(this._open(e.parent()),this._delay(function(){this.focus(t,e)}))},next:function(t){this._move("next","first",t)},previous:function(t){this._move("prev","last",t)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_move:function(t,e,i){var s;this.active&&(s="first"===t||"last"===t?this.active["first"===t?"prevAll":"nextAll"](".ui-menu-item").eq(-1):this.active[t+"All"](".ui-menu-item").eq(0)),s&&s.length&&this.active||(s=this.activeMenu.find(this.options.items)[e]()),this.focus(i,s)},nextPage:function(e){var i,s,n;return this.active?(this.isLastItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.nextAll(".ui-menu-item").each(function(){return i=t(this),0>i.offset().top-s-n}),this.focus(e,i)):this.focus(e,this.activeMenu.find(this.options.items)[this.active?"last":"first"]())),void 0):(this.next(e),void 0)},previousPage:function(e){var i,s,n;return this.active?(this.isFirstItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.prevAll(".ui-menu-item").each(function(){return i=t(this),i.offset().top-s+n>0}),this.focus(e,i)):this.focus(e,this.activeMenu.find(this.options.items).first())),void 0):(this.next(e),void 0)},_hasScroll:function(){return this.element.outerHeight()",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,_create:function(){var e,i,s,n=this.element[0].nodeName.toLowerCase(),o="textarea"===n,a="input"===n;this.isMultiLine=o||!a&&this._isContentEditable(this.element),this.valueMethod=this.element[o||a?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(n){if(this.element.prop("readOnly"))return e=!0,s=!0,i=!0,void 0;e=!1,s=!1,i=!1;var o=t.ui.keyCode;switch(n.keyCode){case o.PAGE_UP:e=!0,this._move("previousPage",n);break;case o.PAGE_DOWN:e=!0,this._move("nextPage",n);break;case o.UP:e=!0,this._keyEvent("previous",n);break;case o.DOWN:e=!0,this._keyEvent("next",n);break;case o.ENTER:this.menu.active&&(e=!0,n.preventDefault(),this.menu.select(n));break;case o.TAB:this.menu.active&&this.menu.select(n);break;case o.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(n),n.preventDefault());break;default:i=!0,this._searchTimeout(n)}},keypress:function(s){if(e)return e=!1,(!this.isMultiLine||this.menu.element.is(":visible"))&&s.preventDefault(),void 0;if(!i){var n=t.ui.keyCode;switch(s.keyCode){case n.PAGE_UP:this._move("previousPage",s);break;case n.PAGE_DOWN:this._move("nextPage",s);break;case n.UP:this._keyEvent("previous",s);break;case n.DOWN:this._keyEvent("next",s)}}},input:function(t){return s?(s=!1,t.preventDefault(),void 0):(this._searchTimeout(t),void 0)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){return this.cancelBlur?(delete this.cancelBlur,void 0):(clearTimeout(this.searching),this.close(t),this._change(t),void 0)}}),this._initSource(),this.menu=t("
      ").appendTo(this._appendTo()).menu({role:null}).hide().menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(e){e.preventDefault(),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur,this.element[0]!==t.ui.safeActiveElement(this.document[0])&&this.element.trigger("focus")})},menufocus:function(e,i){var s,n;return this.isNewMenu&&(this.isNewMenu=!1,e.originalEvent&&/^mouse/.test(e.originalEvent.type))?(this.menu.blur(),this.document.one("mousemove",function(){t(e.target).trigger(e.originalEvent)}),void 0):(n=i.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",e,{item:n})&&e.originalEvent&&/^key/.test(e.originalEvent.type)&&this._value(n.value),s=i.item.attr("aria-label")||n.value,s&&t.trim(s).length&&(this.liveRegion.children().hide(),t("
      ").text(s).appendTo(this.liveRegion)),void 0)},menuselect:function(e,i){var s=i.item.data("ui-autocomplete-item"),n=this.previous;this.element[0]!==t.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=n,this._delay(function(){this.previous=n,this.selectedItem=s})),!1!==this._trigger("select",e,{item:s})&&this._value(s.value),this.term=this._value(),this.close(e),this.selectedItem=s}}),this.liveRegion=t("
      ",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(e){var i=this.menu.element[0];return e.target===this.element[0]||e.target===i||t.contains(i,e.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var e=this.options.appendTo;return e&&(e=e.jquery||e.nodeType?t(e):this.document.find(e).eq(0)),e&&e[0]||(e=this.element.closest(".ui-front, dialog")),e.length||(e=this.document[0].body),e},_initSource:function(){var e,i,s=this;t.isArray(this.options.source)?(e=this.options.source,this.source=function(i,s){s(t.ui.autocomplete.filter(e,i.term))}):"string"==typeof this.options.source?(i=this.options.source,this.source=function(e,n){s.xhr&&s.xhr.abort(),s.xhr=t.ajax({url:i,data:e,dataType:"json",success:function(t){n(t)},error:function(){n([])}})}):this.source=this.options.source},_searchTimeout:function(t){clearTimeout(this.searching),this.searching=this._delay(function(){var e=this.term===this._value(),i=this.menu.element.is(":visible"),s=t.altKey||t.ctrlKey||t.metaKey||t.shiftKey;(!e||e&&!i&&!s)&&(this.selectedItem=null,this.search(null,t))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length").append(t("
      ").text(i.label)).appendTo(e)},_move:function(t,e){return this.menu.element.is(":visible")?this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),this.menu.blur(),void 0):(this.menu[t](e),void 0):(this.search(null,e),void 0)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){(!this.isMultiLine||this.menu.element.is(":visible"))&&(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),t.extend(t.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(e,i){var s=RegExp(t.ui.autocomplete.escapeRegex(i),"i");return t.grep(e,function(t){return s.test(t.label||t.value||t)})}}),t.widget("ui.autocomplete",t.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(t>1?" results are":" result is")+" available, use up and down arrow keys to navigate."}}},__response:function(e){var i;this._superApply(arguments),this.options.disabled||this.cancelSearch||(i=e&&e.length?this.options.messages.results(e.length):this.options.messages.noResults,this.liveRegion.children().hide(),t("
      ").text(i).appendTo(this.liveRegion))}}),t.ui.autocomplete}); \ No newline at end of file diff --git a/samples/java-client/apidocs/script-dir/jquery-ui.structure.min.css b/samples/java-client/apidocs/script-dir/jquery-ui.structure.min.css deleted file mode 100644 index e8808927f..000000000 --- a/samples/java-client/apidocs/script-dir/jquery-ui.structure.min.css +++ /dev/null @@ -1,5 +0,0 @@ -/*! jQuery UI - v1.12.1 - 2018-12-06 -* http://jqueryui.com -* Copyright jQuery Foundation and other contributors; Licensed MIT */ - -.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0} \ No newline at end of file diff --git a/samples/java-client/apidocs/script.js b/samples/java-client/apidocs/script.js deleted file mode 100644 index b68c774a4..000000000 --- a/samples/java-client/apidocs/script.js +++ /dev/null @@ -1,152 +0,0 @@ -/* - * Copyright (c) 2013, 2021, Oracle and/or its affiliates. All rights reserved. - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * This code is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 only, as - * published by the Free Software Foundation. Oracle designates this - * particular file as subject to the "Classpath" exception as provided - * by Oracle in the LICENSE file that accompanied this code. - * - * This code is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - * version 2 for more details (a copy is included in the LICENSE file that - * accompanied this code). - * - * You should have received a copy of the GNU General Public License version - * 2 along with this work; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. - * - * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA - * or visit www.oracle.com if you need additional information or have any - * questions. - */ - -var moduleSearchIndex; -var packageSearchIndex; -var typeSearchIndex; -var memberSearchIndex; -var tagSearchIndex; -function loadScripts(doc, tag) { - createElem(doc, tag, 'search.js'); - - createElem(doc, tag, 'module-search-index.js'); - createElem(doc, tag, 'package-search-index.js'); - createElem(doc, tag, 'type-search-index.js'); - createElem(doc, tag, 'member-search-index.js'); - createElem(doc, tag, 'tag-search-index.js'); -} - -function createElem(doc, tag, path) { - var script = doc.createElement(tag); - var scriptElement = doc.getElementsByTagName(tag)[0]; - script.src = pathtoroot + path; - scriptElement.parentNode.insertBefore(script, scriptElement); -} - -function show(tableId, selected, columns) { - if (tableId !== selected) { - document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')') - .forEach(function(elem) { - elem.style.display = 'none'; - }); - } - document.querySelectorAll('div.' + selected) - .forEach(function(elem, index) { - elem.style.display = ''; - var isEvenRow = index % (columns * 2) < columns; - elem.classList.remove(isEvenRow ? oddRowColor : evenRowColor); - elem.classList.add(isEvenRow ? evenRowColor : oddRowColor); - }); - updateTabs(tableId, selected); -} - -function updateTabs(tableId, selected) { - document.querySelector('div#' + tableId +' .summary-table') - .setAttribute('aria-labelledby', selected); - document.querySelectorAll('button[id^="' + tableId + '"]') - .forEach(function(tab, index) { - if (selected === tab.id || (tableId === selected && index === 0)) { - tab.className = activeTableTab; - tab.setAttribute('aria-selected', true); - tab.setAttribute('tabindex',0); - } else { - tab.className = tableTab; - tab.setAttribute('aria-selected', false); - tab.setAttribute('tabindex',-1); - } - }); -} - -function switchTab(e) { - var selected = document.querySelector('[aria-selected=true]'); - if (selected) { - if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) { - // left or up arrow key pressed: move focus to previous tab - selected.previousSibling.click(); - selected.previousSibling.focus(); - e.preventDefault(); - } else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) { - // right or down arrow key pressed: move focus to next tab - selected.nextSibling.click(); - selected.nextSibling.focus(); - e.preventDefault(); - } - } -} - -var updateSearchResults = function() {}; - -function indexFilesLoaded() { - return moduleSearchIndex - && packageSearchIndex - && typeSearchIndex - && memberSearchIndex - && tagSearchIndex; -} - -function copySnippet(button) { - var textarea = document.createElement("textarea"); - textarea.style.height = 0; - document.body.appendChild(textarea); - textarea.value = button.nextElementSibling.innerText; - textarea.select(); - document.execCommand("copy"); - document.body.removeChild(textarea); - var span = button.firstElementChild; - var copied = span.getAttribute("data-copied"); - if (span.innerHTML !== copied) { - var initialLabel = span.innerHTML; - span.innerHTML = copied; - var parent = button.parentElement; - parent.onmouseleave = parent.ontouchend = function() { - span.innerHTML = initialLabel; - }; - } -} - -// Workaround for scroll position not being included in browser history (8249133) -document.addEventListener("DOMContentLoaded", function(e) { - var contentDiv = document.querySelector("div.flex-content"); - window.addEventListener("popstate", function(e) { - if (e.state !== null) { - contentDiv.scrollTop = e.state; - } - }); - window.addEventListener("hashchange", function(e) { - history.replaceState(contentDiv.scrollTop, document.title); - }); - contentDiv.addEventListener("scroll", function(e) { - var timeoutID; - if (!timeoutID) { - timeoutID = setTimeout(function() { - history.replaceState(contentDiv.scrollTop, document.title); - timeoutID = null; - }, 100); - } - }); - if (!location.hash) { - history.replaceState(contentDiv.scrollTop, document.title); - } -}); diff --git a/samples/java-client/apidocs/search.js b/samples/java-client/apidocs/search.js deleted file mode 100644 index c191c99f9..000000000 --- a/samples/java-client/apidocs/search.js +++ /dev/null @@ -1,371 +0,0 @@ -/* - * Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved. - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * This code is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 only, as - * published by the Free Software Foundation. Oracle designates this - * particular file as subject to the "Classpath" exception as provided - * by Oracle in the LICENSE file that accompanied this code. - * - * This code is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - * version 2 for more details (a copy is included in the LICENSE file that - * accompanied this code). - * - * You should have received a copy of the GNU General Public License version - * 2 along with this work; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. - * - * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA - * or visit www.oracle.com if you need additional information or have any - * questions. - */ - -var noResult = {l: "No results found"}; -var loading = {l: "Loading search index..."}; -var catModules = "Modules"; -var catPackages = "Packages"; -var catTypes = "Types"; -var catMembers = "Members"; -var catSearchTags = "Search Tags"; -var highlight = "$&"; -var searchPattern = ""; -var fallbackPattern = ""; -var RANKING_THRESHOLD = 2; -var NO_MATCH = 0xffff; -var MIN_RESULTS = 3; -var MAX_RESULTS = 500; -var UNNAMED = ""; -function escapeHtml(str) { - return str.replace(//g, ">"); -} -function getHighlightedText(item, matcher, fallbackMatcher) { - var escapedItem = escapeHtml(item); - var highlighted = escapedItem.replace(matcher, highlight); - if (highlighted === escapedItem) { - highlighted = escapedItem.replace(fallbackMatcher, highlight) - } - return highlighted; -} -function getURLPrefix(ui) { - var urlPrefix=""; - var slash = "/"; - if (ui.item.category === catModules) { - return ui.item.l + slash; - } else if (ui.item.category === catPackages && ui.item.m) { - return ui.item.m + slash; - } else if (ui.item.category === catTypes || ui.item.category === catMembers) { - if (ui.item.m) { - urlPrefix = ui.item.m + slash; - } else { - $.each(packageSearchIndex, function(index, item) { - if (item.m && ui.item.p === item.l) { - urlPrefix = item.m + slash; - } - }); - } - } - return urlPrefix; -} -function createSearchPattern(term) { - var pattern = ""; - var isWordToken = false; - term.replace(/,\s*/g, ", ").trim().split(/\s+/).forEach(function(w, index) { - if (index > 0) { - // whitespace between identifiers is significant - pattern += (isWordToken && /^\w/.test(w)) ? "\\s+" : "\\s*"; - } - var tokens = w.split(/(?=[A-Z,.()<>[\/])/); - for (var i = 0; i < tokens.length; i++) { - var s = tokens[i]; - if (s === "") { - continue; - } - pattern += $.ui.autocomplete.escapeRegex(s); - isWordToken = /\w$/.test(s); - if (isWordToken) { - pattern += "([a-z0-9_$<>\\[\\]]*?)"; - } - } - }); - return pattern; -} -function createMatcher(pattern, flags) { - var isCamelCase = /[A-Z]/.test(pattern); - return new RegExp(pattern, flags + (isCamelCase ? "" : "i")); -} -$(function() { - var search = $("#search-input"); - var reset = $("#reset-button"); - search.val(''); - search.prop("disabled", false); - reset.prop("disabled", false); - reset.click(function() { - search.val('').focus(); - }); - search.focus(); -}); -$.widget("custom.catcomplete", $.ui.autocomplete, { - _create: function() { - this._super(); - this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)"); - }, - _renderMenu: function(ul, items) { - var rMenu = this; - var currentCategory = ""; - rMenu.menu.bindings = $(); - $.each(items, function(index, item) { - var li; - if (item.category && item.category !== currentCategory) { - ul.append("
    • " + item.category + "
    • "); - currentCategory = item.category; - } - li = rMenu._renderItemData(ul, item); - if (item.category) { - li.attr("aria-label", item.category + " : " + item.l); - li.attr("class", "result-item"); - } else { - li.attr("aria-label", item.l); - li.attr("class", "result-item"); - } - }); - }, - _renderItem: function(ul, item) { - var label = ""; - var matcher = createMatcher(escapeHtml(searchPattern), "g"); - var fallbackMatcher = new RegExp(fallbackPattern, "gi") - if (item.category === catModules) { - label = getHighlightedText(item.l, matcher, fallbackMatcher); - } else if (item.category === catPackages) { - label = getHighlightedText(item.l, matcher, fallbackMatcher); - } else if (item.category === catTypes) { - label = (item.p && item.p !== UNNAMED) - ? getHighlightedText(item.p + "." + item.l, matcher, fallbackMatcher) - : getHighlightedText(item.l, matcher, fallbackMatcher); - } else if (item.category === catMembers) { - label = (item.p && item.p !== UNNAMED) - ? getHighlightedText(item.p + "." + item.c + "." + item.l, matcher, fallbackMatcher) - : getHighlightedText(item.c + "." + item.l, matcher, fallbackMatcher); - } else if (item.category === catSearchTags) { - label = getHighlightedText(item.l, matcher, fallbackMatcher); - } else { - label = item.l; - } - var li = $("
    • ").appendTo(ul); - var div = $("
      ").appendTo(li); - if (item.category === catSearchTags && item.h) { - if (item.d) { - div.html(label + " (" + item.h + ")
      " - + item.d + "
      "); - } else { - div.html(label + " (" + item.h + ")"); - } - } else { - if (item.m) { - div.html(item.m + "/" + label); - } else { - div.html(label); - } - } - return li; - } -}); -function rankMatch(match, category) { - if (!match) { - return NO_MATCH; - } - var index = match.index; - var input = match.input; - var leftBoundaryMatch = 2; - var periferalMatch = 0; - // make sure match is anchored on a left word boundary - if (index === 0 || /\W/.test(input[index - 1]) || "_" === input[index]) { - leftBoundaryMatch = 0; - } else if ("_" === input[index - 1] || (input[index] === input[index].toUpperCase() && !/^[A-Z0-9_$]+$/.test(input))) { - leftBoundaryMatch = 1; - } - var matchEnd = index + match[0].length; - var leftParen = input.indexOf("("); - var endOfName = leftParen > -1 ? leftParen : input.length; - // exclude peripheral matches - if (category !== catModules && category !== catSearchTags) { - var delim = category === catPackages ? "/" : "."; - if (leftParen > -1 && leftParen < index) { - periferalMatch += 2; - } else if (input.lastIndexOf(delim, endOfName) >= matchEnd) { - periferalMatch += 2; - } - } - var delta = match[0].length === endOfName ? 0 : 1; // rank full match higher than partial match - for (var i = 1; i < match.length; i++) { - // lower ranking if parts of the name are missing - if (match[i]) - delta += match[i].length; - } - if (category === catTypes) { - // lower ranking if a type name contains unmatched camel-case parts - if (/[A-Z]/.test(input.substring(matchEnd))) - delta += 5; - if (/[A-Z]/.test(input.substring(0, index))) - delta += 5; - } - return leftBoundaryMatch + periferalMatch + (delta / 200); - -} -function doSearch(request, response) { - var result = []; - searchPattern = createSearchPattern(request.term); - fallbackPattern = createSearchPattern(request.term.toLowerCase()); - if (searchPattern === "") { - return this.close(); - } - var camelCaseMatcher = createMatcher(searchPattern, ""); - var fallbackMatcher = new RegExp(fallbackPattern, "i"); - - function searchIndexWithMatcher(indexArray, matcher, category, nameFunc) { - if (indexArray) { - var newResults = []; - $.each(indexArray, function (i, item) { - item.category = category; - var ranking = rankMatch(matcher.exec(nameFunc(item)), category); - if (ranking < RANKING_THRESHOLD) { - newResults.push({ranking: ranking, item: item}); - } - return newResults.length <= MAX_RESULTS; - }); - return newResults.sort(function(e1, e2) { - return e1.ranking - e2.ranking; - }).map(function(e) { - return e.item; - }); - } - return []; - } - function searchIndex(indexArray, category, nameFunc) { - var primaryResults = searchIndexWithMatcher(indexArray, camelCaseMatcher, category, nameFunc); - result = result.concat(primaryResults); - if (primaryResults.length <= MIN_RESULTS && !camelCaseMatcher.ignoreCase) { - var secondaryResults = searchIndexWithMatcher(indexArray, fallbackMatcher, category, nameFunc); - result = result.concat(secondaryResults.filter(function (item) { - return primaryResults.indexOf(item) === -1; - })); - } - } - - searchIndex(moduleSearchIndex, catModules, function(item) { return item.l; }); - searchIndex(packageSearchIndex, catPackages, function(item) { - return (item.m && request.term.indexOf("/") > -1) - ? (item.m + "/" + item.l) : item.l; - }); - searchIndex(typeSearchIndex, catTypes, function(item) { - return request.term.indexOf(".") > -1 ? item.p + "." + item.l : item.l; - }); - searchIndex(memberSearchIndex, catMembers, function(item) { - return request.term.indexOf(".") > -1 - ? item.p + "." + item.c + "." + item.l : item.l; - }); - searchIndex(tagSearchIndex, catSearchTags, function(item) { return item.l; }); - - if (!indexFilesLoaded()) { - updateSearchResults = function() { - doSearch(request, response); - } - result.unshift(loading); - } else { - updateSearchResults = function() {}; - } - response(result); -} -$(function() { - var expanded = false; - var windowWidth; - function collapse() { - if (expanded) { - $("div#navbar-top").removeAttr("style"); - $("button#navbar-toggle-button") - .removeClass("expanded") - .attr("aria-expanded", "false"); - expanded = false; - } - } - $("button#navbar-toggle-button").click(function (e) { - if (expanded) { - collapse(); - } else { - $("div#navbar-top").height($("#navbar-top").prop("scrollHeight")); - $("button#navbar-toggle-button") - .addClass("expanded") - .attr("aria-expanded", "true"); - expanded = true; - windowWidth = window.innerWidth; - } - }); - $("ul.sub-nav-list-small li a").click(collapse); - $("input#search-input").focus(collapse); - $("main").click(collapse); - $(window).on("orientationchange", collapse).on("resize", function(e) { - if (expanded && windowWidth !== window.innerWidth) collapse(); - }); - $("#search-input").catcomplete({ - minLength: 1, - delay: 300, - source: doSearch, - response: function(event, ui) { - if (!ui.content.length) { - ui.content.push(noResult); - } else { - $("#search-input").empty(); - } - }, - autoFocus: true, - focus: function(event, ui) { - return false; - }, - position: { - collision: "flip" - }, - select: function(event, ui) { - if (ui.item.category) { - var url = getURLPrefix(ui); - if (ui.item.category === catModules) { - url += "module-summary.html"; - } else if (ui.item.category === catPackages) { - if (ui.item.u) { - url = ui.item.u; - } else { - url += ui.item.l.replace(/\./g, '/') + "/package-summary.html"; - } - } else if (ui.item.category === catTypes) { - if (ui.item.u) { - url = ui.item.u; - } else if (ui.item.p === UNNAMED) { - url += ui.item.l + ".html"; - } else { - url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html"; - } - } else if (ui.item.category === catMembers) { - if (ui.item.p === UNNAMED) { - url += ui.item.c + ".html" + "#"; - } else { - url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#"; - } - if (ui.item.u) { - url += ui.item.u; - } else { - url += ui.item.l; - } - } else if (ui.item.category === catSearchTags) { - url += ui.item.u; - } - if (top !== window) { - parent.classFrame.location = pathtoroot + url; - } else { - window.location.href = pathtoroot + url; - } - $("#search-input").focus(); - } - } - }); -}); diff --git a/samples/java-client/apidocs/serialized-form.html b/samples/java-client/apidocs/serialized-form.html deleted file mode 100644 index 9e78729bc..000000000 --- a/samples/java-client/apidocs/serialized-form.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - -Serialized Form (openapi-java-client 1.0 API) - - - - - - - - - - - - - - - -
      - -
      -
      -
      -

      Serialized Form

      -
      - -
      -
      -
      - -
      -
      -
      - - diff --git a/samples/java-client/apidocs/stylesheet.css b/samples/java-client/apidocs/stylesheet.css deleted file mode 100644 index 69252eab2..000000000 --- a/samples/java-client/apidocs/stylesheet.css +++ /dev/null @@ -1,1012 +0,0 @@ -/* - * Javadoc style sheet - */ - -@import url('resources/fonts/dejavu.css'); - -/* - * Styles for individual HTML elements. - * - * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular - * HTML element throughout the page. - */ - -body { - background-color:#ffffff; - color:#353833; - font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; - font-size:14px; - margin:0; - padding:0; - height:100%; - width:100%; -} -iframe { - margin:0; - padding:0; - height:100%; - width:100%; - overflow-y:scroll; - border:none; -} -a:link, a:visited { - text-decoration:none; - color:#4A6782; -} -a[href]:hover, a[href]:focus { - text-decoration:none; - color:#bb7a2a; -} -a[name] { - color:#353833; -} -pre { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; -} -h1 { - font-size:20px; -} -h2 { - font-size:18px; -} -h3 { - font-size:16px; -} -h4 { - font-size:15px; -} -h5 { - font-size:14px; -} -h6 { - font-size:13px; -} -ul { - list-style-type:disc; -} -code, tt { - font-family:'DejaVu Sans Mono', monospace; -} -:not(h1, h2, h3, h4, h5, h6) > code, -:not(h1, h2, h3, h4, h5, h6) > tt { - font-size:14px; - padding-top:4px; - margin-top:8px; - line-height:1.4em; -} -dt code { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - padding-top:4px; -} -.summary-table dt code { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - vertical-align:top; - padding-top:4px; -} -sup { - font-size:8px; -} -button { - font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; - font-size: 14px; -} -/* - * Styles for HTML generated by javadoc. - * - * These are style classes that are used by the standard doclet to generate HTML documentation. - */ - -/* - * Styles for document title and copyright. - */ -.about-language { - float:right; - padding:0 21px 8px 8px; - font-size:11px; - margin-top:-9px; - height:2.9em; -} -.legal-copy { - margin-left:.5em; -} -/* - * Styles for navigation bar. - */ -@media screen { - div.flex-box { - position:fixed; - display:flex; - flex-direction:column; - height: 100%; - width: 100%; - } - header.flex-header { - flex: 0 0 auto; - } - div.flex-content { - flex: 1 1 auto; - overflow-y: auto; - } -} -.top-nav { - background-color:#4D7A97; - color:#FFFFFF; - float:left; - padding:0; - width:100%; - clear:right; - min-height:2.8em; - padding-top:10px; - overflow:hidden; - font-size:12px; -} -button#navbar-toggle-button { - display:none; -} -ul.sub-nav-list-small { - display: none; -} -.sub-nav { - background-color:#dee3e9; - float:left; - width:100%; - overflow:hidden; - font-size:12px; -} -.sub-nav div { - clear:left; - float:left; - padding:6px; - text-transform:uppercase; -} -.sub-nav .sub-nav-list { - padding-top:4px; -} -ul.nav-list { - display:block; - margin:0 25px 0 0; - padding:0; -} -ul.sub-nav-list { - float:left; - margin:0 25px 0 0; - padding:0; -} -ul.nav-list li { - list-style:none; - float:left; - padding: 5px 6px; - text-transform:uppercase; -} -.sub-nav .nav-list-search { - float:right; - margin:0; - padding:6px; - clear:none; - text-align:right; - position:relative; -} -ul.sub-nav-list li { - list-style:none; - float:left; -} -.top-nav a:link, .top-nav a:active, .top-nav a:visited { - color:#ffffff; - text-decoration:none; - text-transform:uppercase; -} -.top-nav a:hover { - color:#bb7a2a; -} -.nav-bar-cell1-rev { - background-color:#F8981D; - color:#253441; - margin: auto 5px; -} -.skip-nav { - position:absolute; - top:auto; - left:-9999px; - overflow:hidden; -} -/* - * Hide navigation links and search box in print layout - */ -@media print { - ul.nav-list, div.sub-nav { - display:none; - } -} -/* - * Styles for page header. - */ -.title { - color:#2c4557; - margin:10px 0; -} -.sub-title { - margin:5px 0 0 0; -} -.header ul { - margin:0 0 15px 0; - padding:0; -} -.header ul li { - list-style:none; - font-size:13px; -} -/* - * Styles for headings. - */ -body.class-declaration-page .summary h2, -body.class-declaration-page .details h2, -body.class-use-page h2, -body.module-declaration-page .block-list h2 { - font-style: italic; - padding:0; - margin:15px 0; -} -body.class-declaration-page .summary h3, -body.class-declaration-page .details h3, -body.class-declaration-page .summary .inherited-list h2 { - background-color:#dee3e9; - border:1px solid #d0d9e0; - margin:0 0 6px -8px; - padding:7px 5px; -} -/* - * Styles for page layout containers. - */ -main { - clear:both; - padding:10px 20px; - position:relative; -} -dl.notes > dt { - font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; - font-size:12px; - font-weight:bold; - margin:10px 0 0 0; - color:#4E4E4E; -} -dl.notes > dd { - margin:5px 10px 10px 0; - font-size:14px; - font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; -} -dl.name-value > dt { - margin-left:1px; - font-size:1.1em; - display:inline; - font-weight:bold; -} -dl.name-value > dd { - margin:0 0 0 1px; - font-size:1.1em; - display:inline; -} -/* - * Styles for lists. - */ -li.circle { - list-style:circle; -} -ul.horizontal li { - display:inline; - font-size:0.9em; -} -div.inheritance { - margin:0; - padding:0; -} -div.inheritance div.inheritance { - margin-left:2em; -} -ul.block-list, -ul.details-list, -ul.member-list, -ul.summary-list { - margin:10px 0 10px 0; - padding:0; -} -ul.block-list > li, -ul.details-list > li, -ul.member-list > li, -ul.summary-list > li { - list-style:none; - margin-bottom:15px; - line-height:1.4; -} -.summary-table dl, .summary-table dl dt, .summary-table dl dd { - margin-top:0; - margin-bottom:1px; -} -ul.see-list, ul.see-list-long { - padding-left: 0; - list-style: none; -} -ul.see-list li { - display: inline; -} -ul.see-list li:not(:last-child):after, -ul.see-list-long li:not(:last-child):after { - content: ", "; - white-space: pre-wrap; -} -/* - * Styles for tables. - */ -.summary-table, .details-table { - width:100%; - border-spacing:0; - border-left:1px solid #EEE; - border-right:1px solid #EEE; - border-bottom:1px solid #EEE; - padding:0; -} -.caption { - position:relative; - text-align:left; - background-repeat:no-repeat; - color:#253441; - font-weight:bold; - clear:none; - overflow:hidden; - padding:0; - padding-top:10px; - padding-left:1px; - margin:0; - white-space:pre; -} -.caption a:link, .caption a:visited { - color:#1f389c; -} -.caption a:hover, -.caption a:active { - color:#FFFFFF; -} -.caption span { - white-space:nowrap; - padding-top:5px; - padding-left:12px; - padding-right:12px; - padding-bottom:7px; - display:inline-block; - float:left; - background-color:#F8981D; - border: none; - height:16px; -} -div.table-tabs { - padding:10px 0 0 1px; - margin:0; -} -div.table-tabs > button { - border: none; - cursor: pointer; - padding: 5px 12px 7px 12px; - font-weight: bold; - margin-right: 3px; -} -div.table-tabs > button.active-table-tab { - background: #F8981D; - color: #253441; -} -div.table-tabs > button.table-tab { - background: #4D7A97; - color: #FFFFFF; -} -.two-column-summary { - display: grid; - grid-template-columns: minmax(15%, max-content) minmax(15%, auto); -} -.three-column-summary { - display: grid; - grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, auto); -} -.four-column-summary { - display: grid; - grid-template-columns: minmax(10%, max-content) minmax(10%, max-content) minmax(10%, max-content) minmax(10%, auto); -} -@media screen and (max-width: 600px) { - .two-column-summary { - display: grid; - grid-template-columns: 1fr; - } -} -@media screen and (max-width: 800px) { - .three-column-summary { - display: grid; - grid-template-columns: minmax(10%, max-content) minmax(25%, auto); - } - .three-column-summary .col-last { - grid-column-end: span 2; - } -} -@media screen and (max-width: 1000px) { - .four-column-summary { - display: grid; - grid-template-columns: minmax(15%, max-content) minmax(15%, auto); - } -} -.summary-table > div, .details-table > div { - text-align:left; - padding: 8px 3px 3px 7px; -} -.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name { - vertical-align:top; - padding-right:0; - padding-top:8px; - padding-bottom:3px; -} -.table-header { - background:#dee3e9; - font-weight: bold; -} -.col-first, .col-first { - font-size:13px; -} -.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last { - font-size:13px; -} -.col-first, .col-second, .col-constructor-name { - vertical-align:top; - overflow: auto; -} -.col-last { - white-space:normal; -} -.col-first a:link, .col-first a:visited, -.col-second a:link, .col-second a:visited, -.col-first a:link, .col-first a:visited, -.col-second a:link, .col-second a:visited, -.col-constructor-name a:link, .col-constructor-name a:visited, -.col-summary-item-name a:link, .col-summary-item-name a:visited { - font-weight:bold; -} -.even-row-color, .even-row-color .table-header { - background-color:#FFFFFF; -} -.odd-row-color, .odd-row-color .table-header { - background-color:#EEEEEF; -} -/* - * Styles for contents. - */ -div.block { - font-size:14px; - font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; -} -.col-last div { - padding-top:0; -} -.col-last a { - padding-bottom:3px; -} -.module-signature, -.package-signature, -.type-signature, -.member-signature { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - margin:14px 0; - white-space: pre-wrap; -} -.module-signature, -.package-signature, -.type-signature { - margin-top: 0; -} -.member-signature .type-parameters-long, -.member-signature .parameters, -.member-signature .exceptions { - display: inline-block; - vertical-align: top; - white-space: pre; -} -.member-signature .type-parameters { - white-space: normal; -} -/* - * Styles for formatting effect. - */ -.source-line-no { - color:green; - padding:0 30px 0 0; -} -.block { - display:block; - margin:0 10px 5px 0; - color:#474747; -} -.deprecated-label, .description-from-type-label, .implementation-label, .member-name-link, -.module-label-in-package, .module-label-in-type, .package-label-in-type, -.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label { - font-weight:bold; -} -.deprecation-comment, .help-footnote, .preview-comment { - font-style:italic; -} -.deprecation-block { - font-size:14px; - font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; - border-style:solid; - border-width:thin; - border-radius:10px; - padding:10px; - margin-bottom:10px; - margin-right:10px; - display:inline-block; -} -.preview-block { - font-size:14px; - font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; - border-style:solid; - border-width:thin; - border-radius:10px; - padding:10px; - margin-bottom:10px; - margin-right:10px; - display:inline-block; -} -div.block div.deprecation-comment { - font-style:normal; -} -details.invalid-tag, span.invalid-tag { - font-size:14px; - font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; - background: #ffe6e6; - border: thin solid #000000; - border-radius:2px; - padding: 2px 4px; - display:inline-block; -} -details.invalid-tag summary { - cursor: pointer; -} -/* - * Styles specific to HTML5 elements. - */ -main, nav, header, footer, section { - display:block; -} -/* - * Styles for javadoc search. - */ -.ui-autocomplete-category { - font-weight:bold; - font-size:15px; - padding:7px 0 7px 3px; - background-color:#4D7A97; - color:#FFFFFF; -} -.result-item { - font-size:13px; -} -.ui-autocomplete { - max-height:85%; - max-width:65%; - overflow-y:scroll; - overflow-x:scroll; - white-space:nowrap; - box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); -} -ul.ui-autocomplete { - position:fixed; - z-index:999999; -} -ul.ui-autocomplete li { - float:left; - clear:both; - min-width:100%; -} -.result-highlight { - font-weight:bold; -} -#search-input { - background-image:url('resources/glass.png'); - background-size:13px; - background-repeat:no-repeat; - background-position:2px 3px; - padding-left:20px; - width: 250px; - margin: 0; -} -#reset-button { - background-color: transparent; - background-image:url('resources/x.png'); - background-repeat:no-repeat; - background-size:contain; - border:0; - border-radius:0; - width:12px; - height:12px; - position:absolute; - right:12px; - top:10px; - font-size:0; -} -::placeholder { - color:#909090; - opacity: 1; -} -.search-tag-desc-result { - font-style:italic; - font-size:11px; -} -.search-tag-holder-result { - font-style:italic; - font-size:12px; -} -.search-tag-result:target { - background-color:yellow; -} -.module-graph span { - display:none; - position:absolute; -} -.module-graph:hover span { - display:block; - margin: -100px 0 0 100px; - z-index: 1; -} -.inherited-list { - margin: 10px 0 10px 0; -} -section.class-description { - line-height: 1.4; -} -.summary section[class$="-summary"], .details section[class$="-details"], -.class-uses .detail, .serialized-class-details { - padding: 0px 20px 5px 10px; - border: 1px solid #ededed; - background-color: #f8f8f8; -} -.inherited-list, section[class$="-details"] .detail { - padding:0 0 5px 8px; - background-color:#ffffff; - border:none; -} -.vertical-separator { - padding: 0 5px; -} -ul.help-section-list { - margin: 0; -} -ul.help-subtoc > li { - display: inline-block; - padding-right: 5px; - font-size: smaller; -} -ul.help-subtoc > li::before { - content: "\2022" ; - padding-right:2px; -} -span.help-note { - font-style: italic; -} -/* - * Indicator icon for external links. - */ -main a[href*="://"]::after { - content:""; - display:inline-block; - background-image:url('data:image/svg+xml; utf8, \ - \ - \ - '); - background-size:100% 100%; - width:7px; - height:7px; - margin-left:2px; - margin-bottom:4px; -} -main a[href*="://"]:hover::after, -main a[href*="://"]:focus::after { - background-image:url('data:image/svg+xml; utf8, \ - \ - \ - '); -} - -/* - * Styles for user-provided tables. - * - * borderless: - * No borders, vertical margins, styled caption. - * This style is provided for use with existing doc comments. - * In general, borderless tables should not be used for layout purposes. - * - * plain: - * Plain borders around table and cells, vertical margins, styled caption. - * Best for small tables or for complex tables for tables with cells that span - * rows and columns, when the "striped" style does not work well. - * - * striped: - * Borders around the table and vertical borders between cells, striped rows, - * vertical margins, styled caption. - * Best for tables that have a header row, and a body containing a series of simple rows. - */ - -table.borderless, -table.plain, -table.striped { - margin-top: 10px; - margin-bottom: 10px; -} -table.borderless > caption, -table.plain > caption, -table.striped > caption { - font-weight: bold; - font-size: smaller; -} -table.borderless th, table.borderless td, -table.plain th, table.plain td, -table.striped th, table.striped td { - padding: 2px 5px; -} -table.borderless, -table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, -table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { - border: none; -} -table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { - background-color: transparent; -} -table.plain { - border-collapse: collapse; - border: 1px solid black; -} -table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { - background-color: transparent; -} -table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, -table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { - border: 1px solid black; -} -table.striped { - border-collapse: collapse; - border: 1px solid black; -} -table.striped > thead { - background-color: #E3E3E3; -} -table.striped > thead > tr > th, table.striped > thead > tr > td { - border: 1px solid black; -} -table.striped > tbody > tr:nth-child(even) { - background-color: #EEE -} -table.striped > tbody > tr:nth-child(odd) { - background-color: #FFF -} -table.striped > tbody > tr > th, table.striped > tbody > tr > td { - border-left: 1px solid black; - border-right: 1px solid black; -} -table.striped > tbody > tr > th { - font-weight: normal; -} -/** - * Tweak style for small screens. - */ -@media screen and (max-width: 920px) { - header.flex-header { - max-height: 100vh; - overflow-y: auto; - } - div#navbar-top { - height: 2.8em; - transition: height 0.35s ease; - } - ul.nav-list { - display: block; - width: 40%; - float:left; - clear: left; - margin: 10px 0 0 0; - padding: 0; - } - ul.nav-list li { - float: none; - padding: 6px; - margin-left: 10px; - margin-top: 2px; - } - ul.sub-nav-list-small { - display:block; - height: 100%; - width: 50%; - float: right; - clear: right; - background-color: #dee3e9; - color: #353833; - margin: 6px 0 0 0; - padding: 0; - } - ul.sub-nav-list-small ul { - padding-left: 20px; - } - ul.sub-nav-list-small a:link, ul.sub-nav-list-small a:visited { - color:#4A6782; - } - ul.sub-nav-list-small a:hover { - color:#bb7a2a; - } - ul.sub-nav-list-small li { - list-style:none; - float:none; - padding: 6px; - margin-top: 1px; - text-transform:uppercase; - } - ul.sub-nav-list-small > li { - margin-left: 10px; - } - ul.sub-nav-list-small li p { - margin: 5px 0; - } - div#navbar-sub-list { - display: none; - } - .top-nav a:link, .top-nav a:active, .top-nav a:visited { - display: block; - } - button#navbar-toggle-button { - width: 3.4em; - height: 2.8em; - background-color: transparent; - display: block; - float: left; - border: 0; - margin: 0 10px; - cursor: pointer; - font-size: 10px; - } - button#navbar-toggle-button .nav-bar-toggle-icon { - display: block; - width: 24px; - height: 3px; - margin: 1px 0 4px 0; - border-radius: 2px; - transition: all 0.1s; - background-color: #ffffff; - } - button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(1) { - transform: rotate(45deg); - transform-origin: 10% 10%; - width: 26px; - } - button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(2) { - opacity: 0; - } - button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(3) { - transform: rotate(-45deg); - transform-origin: 10% 90%; - width: 26px; - } -} -@media screen and (max-width: 800px) { - .about-language { - padding-right: 16px; - } - ul.nav-list li { - margin-left: 5px; - } - ul.sub-nav-list-small > li { - margin-left: 5px; - } - main { - padding: 10px; - } - .summary section[class$="-summary"], .details section[class$="-details"], - .class-uses .detail, .serialized-class-details { - padding: 0 8px 5px 8px; - } - body { - -webkit-text-size-adjust: none; - } -} -@media screen and (max-width: 400px) { - .about-language { - font-size: 10px; - padding-right: 12px; - } -} -@media screen and (max-width: 400px) { - .nav-list-search { - width: 94%; - } - #search-input { - width: 70%; - } -} -@media screen and (max-width: 320px) { - .nav-list-search > label { - display: none; - } - .nav-list-search { - width: 90%; - } - #search-input { - width: 80%; - } -} - -pre.snippet { - background-color: #ebecee; - padding: 10px; - margin: 12px 0; - overflow: auto; - white-space: pre; -} -div.snippet-container { - position: relative; -} -button.snippet-copy { - position: absolute; - top: 6px; - right: 6px; - height: 1.7em; - opacity: 50%; - transition: opacity 0.2s; - padding: 2px; - border: none; - cursor: pointer; - background: none; -} -button.snippet-copy img { - width: 18px; - height: 18px; - padding: 0.05em 0; - background: none; -} -div.snippet-container:hover button.snippet-copy { - opacity: 80%; -} -div.snippet-container button.snippet-copy:hover { - opacity: 100%; -} -button.snippet-copy span { - color: #3d3d3d; - content: attr(aria-label); - font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; - font-size: 85%; - line-height: 1.2em; - padding: 0.2em; - position: relative; - white-space: nowrap; - top: -0.5em; - display: none; -} -div.snippet-container:hover button.snippet-copy span { - display: inline; -} -button.snippet-copy:active { - background: #d3d3d3; - opacity: 100%; -} -@media screen and (max-width: 800px) { - pre.snippet { - padding-top: 26px; - } - button.snippet-copy { - top: 4px; - right: 4px; - } -} -pre.snippet .italic { - font-style: italic; -} -pre.snippet .bold { - font-weight: bold; -} -pre.snippet .highlighted { - background-color: #f7c590; - border-radius: 10%; -} diff --git a/samples/java-client/apidocs/tag-search-index.js b/samples/java-client/apidocs/tag-search-index.js deleted file mode 100644 index bf10aaf6d..000000000 --- a/samples/java-client/apidocs/tag-search-index.js +++ /dev/null @@ -1 +0,0 @@ -tagSearchIndex = [{"l":"Constant Field Values","h":"","u":"constant-values.html"},{"l":"Serialized Form","h":"","u":"serialized-form.html"}];updateSearchResults(); \ No newline at end of file diff --git a/samples/java-client/apidocs/type-search-index.js b/samples/java-client/apidocs/type-search-index.js deleted file mode 100644 index 22089a8a9..000000000 --- a/samples/java-client/apidocs/type-search-index.js +++ /dev/null @@ -1 +0,0 @@ -typeSearchIndex = [{"p":"org.openapitools.client.model","l":"AbstractOpenApiSchema"},{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"org.openapitools.client","l":"ApiCallback"},{"p":"org.openapitools.client","l":"ApiClient"},{"p":"org.openapitools.client","l":"ApiException"},{"p":"org.openapitools.client.auth","l":"ApiKeyAuth"},{"p":"org.openapitools.client","l":"ApiResponse"},{"p":"org.openapitools.client.auth","l":"Authentication"},{"p":"org.openapitools.client","l":"JSON.ByteArrayAdapter"},{"p":"org.openapitools.client.api","l":"CarbonAwareApi"},{"p":"org.openapitools.client.model","l":"CarbonIntensityBatchParametersDTO"},{"p":"org.openapitools.client.model","l":"CarbonIntensityDTO"},{"p":"org.openapitools.client","l":"Configuration"},{"p":"org.openapitools.client.model","l":"CarbonIntensityBatchParametersDTO.CustomTypeAdapterFactory"},{"p":"org.openapitools.client.model","l":"CarbonIntensityDTO.CustomTypeAdapterFactory"},{"p":"org.openapitools.client.model","l":"EmissionsData.CustomTypeAdapterFactory"},{"p":"org.openapitools.client.model","l":"EmissionsDataDTO.CustomTypeAdapterFactory"},{"p":"org.openapitools.client.model","l":"EmissionsForecastBatchParametersDTO.CustomTypeAdapterFactory"},{"p":"org.openapitools.client.model","l":"EmissionsForecastDTO.CustomTypeAdapterFactory"},{"p":"org.openapitools.client.model","l":"ValidationProblemDetails.CustomTypeAdapterFactory"},{"p":"org.openapitools.client","l":"JSON.DateTypeAdapter"},{"p":"org.openapitools.client.model","l":"EmissionsData"},{"p":"org.openapitools.client.model","l":"EmissionsDataDTO"},{"p":"org.openapitools.client.model","l":"EmissionsForecastBatchParametersDTO"},{"p":"org.openapitools.client.model","l":"EmissionsForecastDTO"},{"p":"org.openapitools.client.auth","l":"HttpBasicAuth"},{"p":"org.openapitools.client.auth","l":"HttpBearerAuth"},{"p":"org.openapitools.client","l":"JSON"},{"p":"org.openapitools.client","l":"JSON.LocalDateTypeAdapter"},{"p":"org.openapitools.client","l":"JSON.OffsetDateTimeTypeAdapter"},{"p":"org.openapitools.client","l":"Pair"},{"p":"org.openapitools.client","l":"ProgressRequestBody"},{"p":"org.openapitools.client","l":"ProgressResponseBody"},{"p":"org.openapitools.client","l":"ServerConfiguration"},{"p":"org.openapitools.client","l":"ServerVariable"},{"p":"org.openapitools.client","l":"JSON.SqlDateTypeAdapter"},{"p":"org.openapitools.client","l":"StringUtil"},{"p":"org.openapitools.client.model","l":"ValidationProblemDetails"}];updateSearchResults(); \ No newline at end of file diff --git a/samples/java-client/pom.xml b/samples/java-client/pom.xml index 932fedfa9..9498a27da 100644 --- a/samples/java-client/pom.xml +++ b/samples/java-client/pom.xml @@ -8,129 +8,35 @@ 0.1.0 jar + + + github + https://maven.pkg.github.com/Green-Software-Foundation/carbon-aware-sdk + + + UTF-8 8 8 - http://localhost/api/v1/swagger.yaml - http://localhost - foundation.greensoftware.carbonawaresdk.samples.java.WebApiClient - - - 1.8.5 - 1.6.5 - 4.9.3 - 2.9.0 - 3.12.0 - 0.2.3 - 1.3.5 - 2.1.1 - 1.1.1 + http://localhost:8080 + example.foundation.greensoftware.carbonawaresdk.WebApiClient - - - io.swagger - swagger-annotations - ${swagger-core-version} - - - com.google.code.findbugs - jsr305 - 3.0.2 - - - com.squareup.okhttp3 - okhttp - ${okhttp-version} - - - com.squareup.okhttp3 - logging-interceptor - ${okhttp-version} - - - com.google.code.gson - gson - ${gson-version} - - - io.gsonfire - gson-fire - ${gson-fire-version} - - org.apache.commons - commons-lang3 - ${commons-lang3-version} - - - jakarta.annotation - jakarta.annotation-api - ${jakarta-annotation-version} - provided - - - org.openapitools - jackson-databind-nullable - ${jackson-databind-nullable-version} - - - javax.ws.rs - jsr311-api - ${jsr311-api-version} - - - javax.ws.rs - javax.ws.rs-api - ${javax.ws.rs-api-version} + foundation.greensoftware + casdk-client + 1.0.0 - - org.openapitools - openapi-generator-maven-plugin - 6.2.0 - - - - generate - - - ${openapi.spec} - java - - src/gen/java/main - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - generate-sources - - add-source - - - - ${basedir}/target/generated-sources/openapi/src/gen/java/main - - - - - org.apache.maven.plugins maven-compiler-plugin - 3.10.1 + 3.12.1 -Xlint:all @@ -153,7 +59,7 @@ org.codehaus.mojo exec-maven-plugin - 3.1.0 + 3.2.0 ${mainClass} diff --git a/samples/java-client/src/main/java/foundation/greensoftware/carbonawaresdk/samples/java/WebApiClient.java b/samples/java-client/src/main/java/example/foundation/greensoftware/carbonawaresdk/WebApiClient.java similarity index 95% rename from samples/java-client/src/main/java/foundation/greensoftware/carbonawaresdk/samples/java/WebApiClient.java rename to samples/java-client/src/main/java/example/foundation/greensoftware/carbonawaresdk/WebApiClient.java index 13fdd8ba1..d7065f481 100644 --- a/samples/java-client/src/main/java/foundation/greensoftware/carbonawaresdk/samples/java/WebApiClient.java +++ b/samples/java-client/src/main/java/example/foundation/greensoftware/carbonawaresdk/WebApiClient.java @@ -1,4 +1,4 @@ -package foundation.greensoftware.carbonawaresdk.samples.java; +package example.foundation.greensoftware.carbonawaresdk; import java.net.URL; import java.net.MalformedURLException; @@ -6,11 +6,11 @@ import java.util.ArrayList; import java.util.List; -import org.openapitools.client.ApiClient; -import org.openapitools.client.ApiException; -import org.openapitools.client.Configuration; +import foundation.greensoftware.carbonaware.webapi.ApiClient; +import foundation.greensoftware.carbonaware.webapi.ApiException; +import foundation.greensoftware.carbonaware.webapi.Configuration; import org.openapitools.client.model.*; -import org.openapitools.client.api.CarbonAwareApi; +import foundation.greensoftware.carbonaware.webapi.client.CarbonAwareApi; public class WebApiClient{ diff --git a/src/CarbonAware.WebApi/src/Program.cs b/src/CarbonAware.WebApi/src/Program.cs index 3a40c28d5..8f99c8bb5 100644 --- a/src/CarbonAware.WebApi/src/Program.cs +++ b/src/CarbonAware.WebApi/src/Program.cs @@ -28,6 +28,11 @@ c.EnableAnnotations(); c.OperationFilter(); c.SchemaFilter(); + c.SwaggerDoc("v1", new OpenApiInfo + { + Version = "CarbonAware.WebAPI", + Title = "1.0.0", + }); }); builder.Services.Configure(builder.Configuration.GetSection(CarbonAwareVariablesConfiguration.Key));