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

com.amazonaws.services.snowball.model.JobResource Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.788
Show newest version
/*
 * 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.snowball.model;

import java.io.Serializable;

/**
 * 

* Contains an array of S3Resource objects. Each * S3Resource object represents an Amazon S3 bucket that your * transferred data will be exported from or imported into. *

*/ public class JobResource implements Serializable, Cloneable { /** *

* An array of S3Resource objects. *

*/ private java.util.List s3Resources; /** *

* An array of S3Resource objects. *

* * @return An array of S3Resource objects. */ public java.util.List getS3Resources() { return s3Resources; } /** *

* An array of S3Resource objects. *

* * @param s3Resources * An array of S3Resource objects. */ public void setS3Resources(java.util.Collection s3Resources) { if (s3Resources == null) { this.s3Resources = null; return; } this.s3Resources = new java.util.ArrayList(s3Resources); } /** *

* An array of S3Resource objects. *

*

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setS3Resources(java.util.Collection)} or * {@link #withS3Resources(java.util.Collection)} if you want to override * the existing values. *

* * @param s3Resources * An array of S3Resource objects. * @return Returns a reference to this object so that method calls can be * chained together. */ public JobResource withS3Resources(S3Resource... s3Resources) { if (this.s3Resources == null) { setS3Resources(new java.util.ArrayList( s3Resources.length)); } for (S3Resource ele : s3Resources) { this.s3Resources.add(ele); } return this; } /** *

* An array of S3Resource objects. *

* * @param s3Resources * An array of S3Resource objects. * @return Returns a reference to this object so that method calls can be * chained together. */ public JobResource withS3Resources( java.util.Collection s3Resources) { setS3Resources(s3Resources); 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 (getS3Resources() != null) sb.append("S3Resources: " + getS3Resources()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof JobResource == false) return false; JobResource other = (JobResource) obj; if (other.getS3Resources() == null ^ this.getS3Resources() == null) return false; if (other.getS3Resources() != null && other.getS3Resources().equals(this.getS3Resources()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getS3Resources() == null) ? 0 : getS3Resources().hashCode()); return hashCode; } @Override public JobResource clone() { try { return (JobResource) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy