com.okta.sdk.resource.model.InlineHookOAuthClientSecretConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of okta-sdk-api Show documentation
Show all versions of okta-sdk-api Show documentation
The Okta Java SDK API .jar provides a Java API that your code can use to make calls to the Okta
API. This .jar is the only compile-time dependency within the Okta SDK project that your code should
depend on. Implementations of this API (implementation .jars) should be runtime dependencies only.
The newest version!
package com.okta.sdk.resource.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import com.okta.sdk.resource.model.InlineHookChannelConfigAuthScheme;
import com.okta.sdk.resource.model.InlineHookChannelConfigHeaders;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiModel;
/**
* InlineHookOAuthClientSecretConfig
*/
@JsonPropertyOrder({ InlineHookOAuthClientSecretConfig.JSON_PROPERTY_CLIENT_SECRET,
InlineHookOAuthClientSecretConfig.JSON_PROPERTY_AUTH_TYPE,
InlineHookOAuthClientSecretConfig.JSON_PROPERTY_CLIENT_ID,
InlineHookOAuthClientSecretConfig.JSON_PROPERTY_SCOPE,
InlineHookOAuthClientSecretConfig.JSON_PROPERTY_TOKEN_URL,
InlineHookOAuthClientSecretConfig.JSON_PROPERTY_AUTH_SCHEME,
InlineHookOAuthClientSecretConfig.JSON_PROPERTY_HEADERS, InlineHookOAuthClientSecretConfig.JSON_PROPERTY_METHOD,
InlineHookOAuthClientSecretConfig.JSON_PROPERTY_URI })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-11-15T08:48:47.130589-06:00[America/Chicago]", comments = "Generator version: 7.8.0")
public class InlineHookOAuthClientSecretConfig implements Serializable {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_CLIENT_SECRET = "clientSecret";
private String clientSecret;
public static final String JSON_PROPERTY_AUTH_TYPE = "authType";
private String authType;
public static final String JSON_PROPERTY_CLIENT_ID = "clientId";
private String clientId;
public static final String JSON_PROPERTY_SCOPE = "scope";
private String scope;
public static final String JSON_PROPERTY_TOKEN_URL = "tokenUrl";
private String tokenUrl;
public static final String JSON_PROPERTY_AUTH_SCHEME = "authScheme";
private InlineHookChannelConfigAuthScheme authScheme;
public static final String JSON_PROPERTY_HEADERS = "headers";
private List headers = null;
public static final String JSON_PROPERTY_METHOD = "method";
private String method;
public static final String JSON_PROPERTY_URI = "uri";
private String uri;
public InlineHookOAuthClientSecretConfig() {
}
public InlineHookOAuthClientSecretConfig clientSecret(String clientSecret) {
this.clientSecret = clientSecret;
return this;
}
/**
* Get clientSecret
*
* @return clientSecret
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_CLIENT_SECRET)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getClientSecret() {
return clientSecret;
}
@JsonProperty(JSON_PROPERTY_CLIENT_SECRET)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setClientSecret(String clientSecret) {
this.clientSecret = clientSecret;
}
public InlineHookOAuthClientSecretConfig authType(String authType) {
this.authType = authType;
return this;
}
/**
* Get authType
*
* @return authType
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_AUTH_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getAuthType() {
return authType;
}
@JsonProperty(JSON_PROPERTY_AUTH_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAuthType(String authType) {
this.authType = authType;
}
public InlineHookOAuthClientSecretConfig clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* Get clientId
*
* @return clientId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_CLIENT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getClientId() {
return clientId;
}
@JsonProperty(JSON_PROPERTY_CLIENT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setClientId(String clientId) {
this.clientId = clientId;
}
public InlineHookOAuthClientSecretConfig scope(String scope) {
this.scope = scope;
return this;
}
/**
* Get scope
*
* @return scope
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_SCOPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getScope() {
return scope;
}
@JsonProperty(JSON_PROPERTY_SCOPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setScope(String scope) {
this.scope = scope;
}
public InlineHookOAuthClientSecretConfig tokenUrl(String tokenUrl) {
this.tokenUrl = tokenUrl;
return this;
}
/**
* Get tokenUrl
*
* @return tokenUrl
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_TOKEN_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getTokenUrl() {
return tokenUrl;
}
@JsonProperty(JSON_PROPERTY_TOKEN_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTokenUrl(String tokenUrl) {
this.tokenUrl = tokenUrl;
}
public InlineHookOAuthClientSecretConfig authScheme(InlineHookChannelConfigAuthScheme authScheme) {
this.authScheme = authScheme;
return this;
}
/**
* Get authScheme
*
* @return authScheme
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_AUTH_SCHEME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public InlineHookChannelConfigAuthScheme getAuthScheme() {
return authScheme;
}
@JsonProperty(JSON_PROPERTY_AUTH_SCHEME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAuthScheme(InlineHookChannelConfigAuthScheme authScheme) {
this.authScheme = authScheme;
}
public InlineHookOAuthClientSecretConfig headers(List headers) {
this.headers = headers;
return this;
}
public InlineHookOAuthClientSecretConfig addheadersItem(InlineHookChannelConfigHeaders headersItem) {
if (this.headers == null) {
this.headers = new ArrayList<>();
}
this.headers.add(headersItem);
return this;
}
/**
* Get headers
*
* @return headers
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_HEADERS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getHeaders() {
return headers;
}
@JsonProperty(JSON_PROPERTY_HEADERS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setHeaders(List headers) {
this.headers = headers;
}
public InlineHookOAuthClientSecretConfig method(String method) {
this.method = method;
return this;
}
/**
* Get method
*
* @return method
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_METHOD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getMethod() {
return method;
}
@JsonProperty(JSON_PROPERTY_METHOD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setMethod(String method) {
this.method = method;
}
public InlineHookOAuthClientSecretConfig uri(String uri) {
this.uri = uri;
return this;
}
/**
* Get uri
*
* @return uri
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_URI)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getUri() {
return uri;
}
@JsonProperty(JSON_PROPERTY_URI)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setUri(String uri) {
this.uri = uri;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
InlineHookOAuthClientSecretConfig inlineHookOAuthClientSecretConfig = (InlineHookOAuthClientSecretConfig) o;
return Objects.equals(this.clientSecret, inlineHookOAuthClientSecretConfig.clientSecret)
&& Objects.equals(this.authType, inlineHookOAuthClientSecretConfig.authType)
&& Objects.equals(this.clientId, inlineHookOAuthClientSecretConfig.clientId)
&& Objects.equals(this.scope, inlineHookOAuthClientSecretConfig.scope)
&& Objects.equals(this.tokenUrl, inlineHookOAuthClientSecretConfig.tokenUrl)
&& Objects.equals(this.authScheme, inlineHookOAuthClientSecretConfig.authScheme)
&& Objects.equals(this.headers, inlineHookOAuthClientSecretConfig.headers)
&& Objects.equals(this.method, inlineHookOAuthClientSecretConfig.method)
&& Objects.equals(this.uri, inlineHookOAuthClientSecretConfig.uri);
// ;
}
@Override
public int hashCode() {
return Objects.hash(clientSecret, authType, clientId, scope, tokenUrl, authScheme, headers, method, uri);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class InlineHookOAuthClientSecretConfig {\n");
sb.append(" clientSecret: ").append(toIndentedString(clientSecret)).append("\n");
sb.append(" authType: ").append(toIndentedString(authType)).append("\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" scope: ").append(toIndentedString(scope)).append("\n");
sb.append(" tokenUrl: ").append(toIndentedString(tokenUrl)).append("\n");
sb.append(" authScheme: ").append(toIndentedString(authScheme)).append("\n");
sb.append(" headers: ").append(toIndentedString(headers)).append("\n");
sb.append(" method: ").append(toIndentedString(method)).append("\n");
sb.append(" uri: ").append(toIndentedString(uri)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy