dev.openfga.sdk.api.configuration.ApiToken Maven / Gradle / Ivy
/*
* OpenFGA
* A high performance and flexible authorization/permission engine built for developers and inspired by Google Zanzibar.
*
* The version of the OpenAPI document: 1.x
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package dev.openfga.sdk.api.configuration;
/**
* A static API token. In OAuth2 terms, this indicates an "access token"
* that will be used to authenticate a request.
*/
public class ApiToken {
private String token;
public ApiToken(String token) {
this.token = token;
}
public void setToken(String token) {
this.token = token;
}
public String getToken() {
return this.token;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy