com.amazonaws.services.signer.model.S3SignedObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-signer Show documentation
Show all versions of aws-java-sdk-signer Show documentation
The AWS Java SDK for AWS Signer module holds the client classes that are used for communicating with AWS Signer 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.signer.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* The Amazon S3 bucket name and key where Signer saved your signed code image.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class S3SignedObject implements Serializable, Cloneable, StructuredPojo {
/**
*
* Name of the S3 bucket.
*
*/
private String bucketName;
/**
*
* Key name that uniquely identifies a signed code image in your bucket.
*
*/
private String key;
/**
*
* Name of the S3 bucket.
*
*
* @param bucketName
* Name of the S3 bucket.
*/
public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}
/**
*
* Name of the S3 bucket.
*
*
* @return Name of the S3 bucket.
*/
public String getBucketName() {
return this.bucketName;
}
/**
*
* Name of the S3 bucket.
*
*
* @param bucketName
* Name of the S3 bucket.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public S3SignedObject withBucketName(String bucketName) {
setBucketName(bucketName);
return this;
}
/**
*
* Key name that uniquely identifies a signed code image in your bucket.
*
*
* @param key
* Key name that uniquely identifies a signed code image in your bucket.
*/
public void setKey(String key) {
this.key = key;
}
/**
*
* Key name that uniquely identifies a signed code image in your bucket.
*
*
* @return Key name that uniquely identifies a signed code image in your bucket.
*/
public String getKey() {
return this.key;
}
/**
*
* Key name that uniquely identifies a signed code image in your bucket.
*
*
* @param key
* Key name that uniquely identifies a signed code image in your bucket.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public S3SignedObject withKey(String key) {
setKey(key);
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 (getBucketName() != null)
sb.append("BucketName: ").append(getBucketName()).append(",");
if (getKey() != null)
sb.append("Key: ").append(getKey());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof S3SignedObject == false)
return false;
S3SignedObject other = (S3SignedObject) obj;
if (other.getBucketName() == null ^ this.getBucketName() == null)
return false;
if (other.getBucketName() != null && other.getBucketName().equals(this.getBucketName()) == false)
return false;
if (other.getKey() == null ^ this.getKey() == null)
return false;
if (other.getKey() != null && other.getKey().equals(this.getKey()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getBucketName() == null) ? 0 : getBucketName().hashCode());
hashCode = prime * hashCode + ((getKey() == null) ? 0 : getKey().hashCode());
return hashCode;
}
@Override
public S3SignedObject clone() {
try {
return (S3SignedObject) 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.signer.model.transform.S3SignedObjectMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}