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

com.amazonaws.services.eventbridge.model.ConnectionOAuthResponseParameters Maven / Gradle / Ivy

Go to download

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

The 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.eventbridge.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Contains the response parameters when OAuth is specified as the authorization type. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ConnectionOAuthResponseParameters implements Serializable, Cloneable, StructuredPojo { /** *

* A ConnectionOAuthClientResponseParameters object that contains details about the client parameters * returned when OAuth is specified as the authorization type. *

*/ private ConnectionOAuthClientResponseParameters clientParameters; /** *

* The URL to the HTTP endpoint that authorized the request. *

*/ private String authorizationEndpoint; /** *

* The method used to connect to the HTTP endpoint. *

*/ private String httpMethod; /** *

* The additional HTTP parameters used for the OAuth authorization request. *

*/ private ConnectionHttpParameters oAuthHttpParameters; /** *

* A ConnectionOAuthClientResponseParameters object that contains details about the client parameters * returned when OAuth is specified as the authorization type. *

* * @param clientParameters * A ConnectionOAuthClientResponseParameters object that contains details about the client * parameters returned when OAuth is specified as the authorization type. */ public void setClientParameters(ConnectionOAuthClientResponseParameters clientParameters) { this.clientParameters = clientParameters; } /** *

* A ConnectionOAuthClientResponseParameters object that contains details about the client parameters * returned when OAuth is specified as the authorization type. *

* * @return A ConnectionOAuthClientResponseParameters object that contains details about the client * parameters returned when OAuth is specified as the authorization type. */ public ConnectionOAuthClientResponseParameters getClientParameters() { return this.clientParameters; } /** *

* A ConnectionOAuthClientResponseParameters object that contains details about the client parameters * returned when OAuth is specified as the authorization type. *

* * @param clientParameters * A ConnectionOAuthClientResponseParameters object that contains details about the client * parameters returned when OAuth is specified as the authorization type. * @return Returns a reference to this object so that method calls can be chained together. */ public ConnectionOAuthResponseParameters withClientParameters(ConnectionOAuthClientResponseParameters clientParameters) { setClientParameters(clientParameters); return this; } /** *

* The URL to the HTTP endpoint that authorized the request. *

* * @param authorizationEndpoint * The URL to the HTTP endpoint that authorized the request. */ public void setAuthorizationEndpoint(String authorizationEndpoint) { this.authorizationEndpoint = authorizationEndpoint; } /** *

* The URL to the HTTP endpoint that authorized the request. *

* * @return The URL to the HTTP endpoint that authorized the request. */ public String getAuthorizationEndpoint() { return this.authorizationEndpoint; } /** *

* The URL to the HTTP endpoint that authorized the request. *

* * @param authorizationEndpoint * The URL to the HTTP endpoint that authorized the request. * @return Returns a reference to this object so that method calls can be chained together. */ public ConnectionOAuthResponseParameters withAuthorizationEndpoint(String authorizationEndpoint) { setAuthorizationEndpoint(authorizationEndpoint); return this; } /** *

* The method used to connect to the HTTP endpoint. *

* * @param httpMethod * The method used to connect to the HTTP endpoint. * @see ConnectionOAuthHttpMethod */ public void setHttpMethod(String httpMethod) { this.httpMethod = httpMethod; } /** *

* The method used to connect to the HTTP endpoint. *

* * @return The method used to connect to the HTTP endpoint. * @see ConnectionOAuthHttpMethod */ public String getHttpMethod() { return this.httpMethod; } /** *

* The method used to connect to the HTTP endpoint. *

* * @param httpMethod * The method used to connect to the HTTP endpoint. * @return Returns a reference to this object so that method calls can be chained together. * @see ConnectionOAuthHttpMethod */ public ConnectionOAuthResponseParameters withHttpMethod(String httpMethod) { setHttpMethod(httpMethod); return this; } /** *

* The method used to connect to the HTTP endpoint. *

* * @param httpMethod * The method used to connect to the HTTP endpoint. * @return Returns a reference to this object so that method calls can be chained together. * @see ConnectionOAuthHttpMethod */ public ConnectionOAuthResponseParameters withHttpMethod(ConnectionOAuthHttpMethod httpMethod) { this.httpMethod = httpMethod.toString(); return this; } /** *

* The additional HTTP parameters used for the OAuth authorization request. *

* * @param oAuthHttpParameters * The additional HTTP parameters used for the OAuth authorization request. */ public void setOAuthHttpParameters(ConnectionHttpParameters oAuthHttpParameters) { this.oAuthHttpParameters = oAuthHttpParameters; } /** *

* The additional HTTP parameters used for the OAuth authorization request. *

* * @return The additional HTTP parameters used for the OAuth authorization request. */ public ConnectionHttpParameters getOAuthHttpParameters() { return this.oAuthHttpParameters; } /** *

* The additional HTTP parameters used for the OAuth authorization request. *

* * @param oAuthHttpParameters * The additional HTTP parameters used for the OAuth authorization request. * @return Returns a reference to this object so that method calls can be chained together. */ public ConnectionOAuthResponseParameters withOAuthHttpParameters(ConnectionHttpParameters oAuthHttpParameters) { setOAuthHttpParameters(oAuthHttpParameters); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getClientParameters() != null) sb.append("ClientParameters: ").append(getClientParameters()).append(","); if (getAuthorizationEndpoint() != null) sb.append("AuthorizationEndpoint: ").append(getAuthorizationEndpoint()).append(","); if (getHttpMethod() != null) sb.append("HttpMethod: ").append(getHttpMethod()).append(","); if (getOAuthHttpParameters() != null) sb.append("OAuthHttpParameters: ").append(getOAuthHttpParameters()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ConnectionOAuthResponseParameters == false) return false; ConnectionOAuthResponseParameters other = (ConnectionOAuthResponseParameters) obj; if (other.getClientParameters() == null ^ this.getClientParameters() == null) return false; if (other.getClientParameters() != null && other.getClientParameters().equals(this.getClientParameters()) == false) return false; if (other.getAuthorizationEndpoint() == null ^ this.getAuthorizationEndpoint() == null) return false; if (other.getAuthorizationEndpoint() != null && other.getAuthorizationEndpoint().equals(this.getAuthorizationEndpoint()) == false) return false; if (other.getHttpMethod() == null ^ this.getHttpMethod() == null) return false; if (other.getHttpMethod() != null && other.getHttpMethod().equals(this.getHttpMethod()) == false) return false; if (other.getOAuthHttpParameters() == null ^ this.getOAuthHttpParameters() == null) return false; if (other.getOAuthHttpParameters() != null && other.getOAuthHttpParameters().equals(this.getOAuthHttpParameters()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getClientParameters() == null) ? 0 : getClientParameters().hashCode()); hashCode = prime * hashCode + ((getAuthorizationEndpoint() == null) ? 0 : getAuthorizationEndpoint().hashCode()); hashCode = prime * hashCode + ((getHttpMethod() == null) ? 0 : getHttpMethod().hashCode()); hashCode = prime * hashCode + ((getOAuthHttpParameters() == null) ? 0 : getOAuthHttpParameters().hashCode()); return hashCode; } @Override public ConnectionOAuthResponseParameters clone() { try { return (ConnectionOAuthResponseParameters) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.eventbridge.model.transform.ConnectionOAuthResponseParametersMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy