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

com.amazonaws.services.ssooidc.model.InvalidClientMetadataException Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS SSO OIDC module holds the client classes that are used for communicating with AWS SSO OIDC Service

There is a newer version: 1.12.762
Show newest version
/*
 * Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.ssooidc.model;

import javax.annotation.Generated;

/**
 * 

* Indicates that the client information sent in the request during registration is invalid. *

*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class InvalidClientMetadataException extends com.amazonaws.services.ssooidc.model.AWSSSOOIDCException { private static final long serialVersionUID = 1L; /** *

* Single error code. For this exception the value will be invalid_client_metadata. *

*/ private String error; /** *

* Human-readable text providing additional information, used to assist the client developer in understanding the * error that occurred. *

*/ private String error_description; /** * Constructs a new InvalidClientMetadataException with the specified error message. * * @param message * Describes the error encountered. */ public InvalidClientMetadataException(String message) { super(message); } /** *

* Single error code. For this exception the value will be invalid_client_metadata. *

* * @param error * Single error code. For this exception the value will be invalid_client_metadata. */ @com.fasterxml.jackson.annotation.JsonProperty("error") public void setError(String error) { this.error = error; } /** *

* Single error code. For this exception the value will be invalid_client_metadata. *

* * @return Single error code. For this exception the value will be invalid_client_metadata. */ @com.fasterxml.jackson.annotation.JsonProperty("error") public String getError() { return this.error; } /** *

* Single error code. For this exception the value will be invalid_client_metadata. *

* * @param error * Single error code. For this exception the value will be invalid_client_metadata. * @return Returns a reference to this object so that method calls can be chained together. */ public InvalidClientMetadataException withError(String error) { setError(error); return this; } /** *

* Human-readable text providing additional information, used to assist the client developer in understanding the * error that occurred. *

* * @param error_description * Human-readable text providing additional information, used to assist the client developer in understanding * the error that occurred. */ @com.fasterxml.jackson.annotation.JsonProperty("error_description") public void setError_description(String error_description) { this.error_description = error_description; } /** *

* Human-readable text providing additional information, used to assist the client developer in understanding the * error that occurred. *

* * @return Human-readable text providing additional information, used to assist the client developer in * understanding the error that occurred. */ @com.fasterxml.jackson.annotation.JsonProperty("error_description") public String getError_description() { return this.error_description; } /** *

* Human-readable text providing additional information, used to assist the client developer in understanding the * error that occurred. *

* * @param error_description * Human-readable text providing additional information, used to assist the client developer in understanding * the error that occurred. * @return Returns a reference to this object so that method calls can be chained together. */ public InvalidClientMetadataException withError_description(String error_description) { setError_description(error_description); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy