com.amazonaws.services.appflow.model.CustomAuthCredentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-appflow Show documentation
Show all versions of aws-java-sdk-appflow Show documentation
The AWS Java SDK for Amazon Appflow module holds the client classes that are used for communicating with Amazon Appflow Service
/*
* 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.appflow.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* The custom credentials required for custom authentication.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CustomAuthCredentials implements Serializable, Cloneable, StructuredPojo {
/**
*
* The custom authentication type that the connector uses.
*
*/
private String customAuthenticationType;
/**
*
* A map that holds custom authentication credentials.
*
*/
private java.util.Map credentialsMap;
/**
*
* The custom authentication type that the connector uses.
*
*
* @param customAuthenticationType
* The custom authentication type that the connector uses.
*/
public void setCustomAuthenticationType(String customAuthenticationType) {
this.customAuthenticationType = customAuthenticationType;
}
/**
*
* The custom authentication type that the connector uses.
*
*
* @return The custom authentication type that the connector uses.
*/
public String getCustomAuthenticationType() {
return this.customAuthenticationType;
}
/**
*
* The custom authentication type that the connector uses.
*
*
* @param customAuthenticationType
* The custom authentication type that the connector uses.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomAuthCredentials withCustomAuthenticationType(String customAuthenticationType) {
setCustomAuthenticationType(customAuthenticationType);
return this;
}
/**
*
* A map that holds custom authentication credentials.
*
*
* @return A map that holds custom authentication credentials.
*/
public java.util.Map getCredentialsMap() {
return credentialsMap;
}
/**
*
* A map that holds custom authentication credentials.
*
*
* @param credentialsMap
* A map that holds custom authentication credentials.
*/
public void setCredentialsMap(java.util.Map credentialsMap) {
this.credentialsMap = credentialsMap;
}
/**
*
* A map that holds custom authentication credentials.
*
*
* @param credentialsMap
* A map that holds custom authentication credentials.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomAuthCredentials withCredentialsMap(java.util.Map credentialsMap) {
setCredentialsMap(credentialsMap);
return this;
}
/**
* Add a single CredentialsMap entry
*
* @see CustomAuthCredentials#withCredentialsMap
* @returns a reference to this object so that method calls can be chained together.
*/
public CustomAuthCredentials addCredentialsMapEntry(String key, String value) {
if (null == this.credentialsMap) {
this.credentialsMap = new java.util.HashMap();
}
if (this.credentialsMap.containsKey(key))
throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided.");
this.credentialsMap.put(key, value);
return this;
}
/**
* Removes all the entries added into CredentialsMap.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomAuthCredentials clearCredentialsMapEntries() {
this.credentialsMap = null;
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 (getCustomAuthenticationType() != null)
sb.append("CustomAuthenticationType: ").append(getCustomAuthenticationType()).append(",");
if (getCredentialsMap() != null)
sb.append("CredentialsMap: ").append("***Sensitive Data Redacted***");
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CustomAuthCredentials == false)
return false;
CustomAuthCredentials other = (CustomAuthCredentials) obj;
if (other.getCustomAuthenticationType() == null ^ this.getCustomAuthenticationType() == null)
return false;
if (other.getCustomAuthenticationType() != null && other.getCustomAuthenticationType().equals(this.getCustomAuthenticationType()) == false)
return false;
if (other.getCredentialsMap() == null ^ this.getCredentialsMap() == null)
return false;
if (other.getCredentialsMap() != null && other.getCredentialsMap().equals(this.getCredentialsMap()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getCustomAuthenticationType() == null) ? 0 : getCustomAuthenticationType().hashCode());
hashCode = prime * hashCode + ((getCredentialsMap() == null) ? 0 : getCredentialsMap().hashCode());
return hashCode;
}
@Override
public CustomAuthCredentials clone() {
try {
return (CustomAuthCredentials) 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.appflow.model.transform.CustomAuthCredentialsMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}