
com.amazonaws.services.servicecatalog.model.ProvisioningArtifactParameter Maven / Gradle / Ivy
Show all versions of aws-java-sdk-servicecatalog Show documentation
/*
* Copyright 2011-2016 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.servicecatalog.model;
import java.io.Serializable;
/**
*
* A parameter used to successfully provision the product. This value includes a list of allowable values and additional
* metadata.
*
*/
public class ProvisioningArtifactParameter implements Serializable, Cloneable {
/**
*
* The parameter key.
*
*/
private String parameterKey;
/**
*
* The default value for this parameter.
*
*/
private String defaultValue;
/**
*
* The parameter type.
*
*/
private String parameterType;
/**
*
* If this value is true, the value for this parameter is obfuscated from view when the parameter is retrieved. This
* parameter is used to hide sensitive information.
*
*/
private Boolean isNoEcho;
/**
*
* The text description of the parameter.
*
*/
private String description;
/**
*
* The list of constraints that the administrator has put on the parameter.
*
*/
private ParameterConstraints parameterConstraints;
/**
*
* The parameter key.
*
*
* @param parameterKey
* The parameter key.
*/
public void setParameterKey(String parameterKey) {
this.parameterKey = parameterKey;
}
/**
*
* The parameter key.
*
*
* @return The parameter key.
*/
public String getParameterKey() {
return this.parameterKey;
}
/**
*
* The parameter key.
*
*
* @param parameterKey
* The parameter key.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ProvisioningArtifactParameter withParameterKey(String parameterKey) {
setParameterKey(parameterKey);
return this;
}
/**
*
* The default value for this parameter.
*
*
* @param defaultValue
* The default value for this parameter.
*/
public void setDefaultValue(String defaultValue) {
this.defaultValue = defaultValue;
}
/**
*
* The default value for this parameter.
*
*
* @return The default value for this parameter.
*/
public String getDefaultValue() {
return this.defaultValue;
}
/**
*
* The default value for this parameter.
*
*
* @param defaultValue
* The default value for this parameter.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ProvisioningArtifactParameter withDefaultValue(String defaultValue) {
setDefaultValue(defaultValue);
return this;
}
/**
*
* The parameter type.
*
*
* @param parameterType
* The parameter type.
*/
public void setParameterType(String parameterType) {
this.parameterType = parameterType;
}
/**
*
* The parameter type.
*
*
* @return The parameter type.
*/
public String getParameterType() {
return this.parameterType;
}
/**
*
* The parameter type.
*
*
* @param parameterType
* The parameter type.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ProvisioningArtifactParameter withParameterType(String parameterType) {
setParameterType(parameterType);
return this;
}
/**
*
* If this value is true, the value for this parameter is obfuscated from view when the parameter is retrieved. This
* parameter is used to hide sensitive information.
*
*
* @param isNoEcho
* If this value is true, the value for this parameter is obfuscated from view when the parameter is
* retrieved. This parameter is used to hide sensitive information.
*/
public void setIsNoEcho(Boolean isNoEcho) {
this.isNoEcho = isNoEcho;
}
/**
*
* If this value is true, the value for this parameter is obfuscated from view when the parameter is retrieved. This
* parameter is used to hide sensitive information.
*
*
* @return If this value is true, the value for this parameter is obfuscated from view when the parameter is
* retrieved. This parameter is used to hide sensitive information.
*/
public Boolean getIsNoEcho() {
return this.isNoEcho;
}
/**
*
* If this value is true, the value for this parameter is obfuscated from view when the parameter is retrieved. This
* parameter is used to hide sensitive information.
*
*
* @param isNoEcho
* If this value is true, the value for this parameter is obfuscated from view when the parameter is
* retrieved. This parameter is used to hide sensitive information.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ProvisioningArtifactParameter withIsNoEcho(Boolean isNoEcho) {
setIsNoEcho(isNoEcho);
return this;
}
/**
*
* If this value is true, the value for this parameter is obfuscated from view when the parameter is retrieved. This
* parameter is used to hide sensitive information.
*
*
* @return If this value is true, the value for this parameter is obfuscated from view when the parameter is
* retrieved. This parameter is used to hide sensitive information.
*/
public Boolean isNoEcho() {
return this.isNoEcho;
}
/**
*
* The text description of the parameter.
*
*
* @param description
* The text description of the parameter.
*/
public void setDescription(String description) {
this.description = description;
}
/**
*
* The text description of the parameter.
*
*
* @return The text description of the parameter.
*/
public String getDescription() {
return this.description;
}
/**
*
* The text description of the parameter.
*
*
* @param description
* The text description of the parameter.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ProvisioningArtifactParameter withDescription(String description) {
setDescription(description);
return this;
}
/**
*
* The list of constraints that the administrator has put on the parameter.
*
*
* @param parameterConstraints
* The list of constraints that the administrator has put on the parameter.
*/
public void setParameterConstraints(ParameterConstraints parameterConstraints) {
this.parameterConstraints = parameterConstraints;
}
/**
*
* The list of constraints that the administrator has put on the parameter.
*
*
* @return The list of constraints that the administrator has put on the parameter.
*/
public ParameterConstraints getParameterConstraints() {
return this.parameterConstraints;
}
/**
*
* The list of constraints that the administrator has put on the parameter.
*
*
* @param parameterConstraints
* The list of constraints that the administrator has put on the parameter.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ProvisioningArtifactParameter withParameterConstraints(ParameterConstraints parameterConstraints) {
setParameterConstraints(parameterConstraints);
return this;
}
/**
* Returns a string representation of this object; useful for testing and debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getParameterKey() != null)
sb.append("ParameterKey: " + getParameterKey() + ",");
if (getDefaultValue() != null)
sb.append("DefaultValue: " + getDefaultValue() + ",");
if (getParameterType() != null)
sb.append("ParameterType: " + getParameterType() + ",");
if (getIsNoEcho() != null)
sb.append("IsNoEcho: " + getIsNoEcho() + ",");
if (getDescription() != null)
sb.append("Description: " + getDescription() + ",");
if (getParameterConstraints() != null)
sb.append("ParameterConstraints: " + getParameterConstraints());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ProvisioningArtifactParameter == false)
return false;
ProvisioningArtifactParameter other = (ProvisioningArtifactParameter) obj;
if (other.getParameterKey() == null ^ this.getParameterKey() == null)
return false;
if (other.getParameterKey() != null && other.getParameterKey().equals(this.getParameterKey()) == false)
return false;
if (other.getDefaultValue() == null ^ this.getDefaultValue() == null)
return false;
if (other.getDefaultValue() != null && other.getDefaultValue().equals(this.getDefaultValue()) == false)
return false;
if (other.getParameterType() == null ^ this.getParameterType() == null)
return false;
if (other.getParameterType() != null && other.getParameterType().equals(this.getParameterType()) == false)
return false;
if (other.getIsNoEcho() == null ^ this.getIsNoEcho() == null)
return false;
if (other.getIsNoEcho() != null && other.getIsNoEcho().equals(this.getIsNoEcho()) == false)
return false;
if (other.getDescription() == null ^ this.getDescription() == null)
return false;
if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false)
return false;
if (other.getParameterConstraints() == null ^ this.getParameterConstraints() == null)
return false;
if (other.getParameterConstraints() != null && other.getParameterConstraints().equals(this.getParameterConstraints()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getParameterKey() == null) ? 0 : getParameterKey().hashCode());
hashCode = prime * hashCode + ((getDefaultValue() == null) ? 0 : getDefaultValue().hashCode());
hashCode = prime * hashCode + ((getParameterType() == null) ? 0 : getParameterType().hashCode());
hashCode = prime * hashCode + ((getIsNoEcho() == null) ? 0 : getIsNoEcho().hashCode());
hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode());
hashCode = prime * hashCode + ((getParameterConstraints() == null) ? 0 : getParameterConstraints().hashCode());
return hashCode;
}
@Override
public ProvisioningArtifactParameter clone() {
try {
return (ProvisioningArtifactParameter) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}