com.amazonaws.services.ec2.model.DescribeLicensesRequest Maven / Gradle / Ivy
/*
* Copyright 2010-2013 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.ec2.model;
import com.amazonaws.AmazonWebServiceRequest;
import java.io.Serializable;
/**
* Container for the parameters to the {@link com.amazonaws.services.ec2.AmazonEC2#describeLicenses(DescribeLicensesRequest) DescribeLicenses operation}.
*
* Provides details of a user's registered licenses. Zero or more IDs may be specified on the call. When one or more license IDs are specified, only
* data for the specified IDs are returned.
*
*
* @see com.amazonaws.services.ec2.AmazonEC2#describeLicenses(DescribeLicensesRequest)
*/
public class DescribeLicensesRequest extends AmazonWebServiceRequest implements Serializable {
/**
* Specifies the license registration for which details are to be
* returned.
*/
private java.util.List licenseIds;
/**
* A list of filters used to match properties for Licenses. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*/
private java.util.List filters;
/**
* Specifies the license registration for which details are to be
* returned.
*
* @return Specifies the license registration for which details are to be
* returned.
*/
public java.util.List getLicenseIds() {
if (licenseIds == null) {
licenseIds = new java.util.ArrayList();
}
return licenseIds;
}
/**
* Specifies the license registration for which details are to be
* returned.
*
* @param licenseIds Specifies the license registration for which details are to be
* returned.
*/
public void setLicenseIds(java.util.Collection licenseIds) {
if (licenseIds == null) {
this.licenseIds = null;
return;
}
java.util.List licenseIdsCopy = new java.util.ArrayList(licenseIds.size());
licenseIdsCopy.addAll(licenseIds);
this.licenseIds = licenseIdsCopy;
}
/**
* Specifies the license registration for which details are to be
* returned.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param licenseIds Specifies the license registration for which details are to be
* returned.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeLicensesRequest withLicenseIds(String... licenseIds) {
if (getLicenseIds() == null) setLicenseIds(new java.util.ArrayList(licenseIds.length));
for (String value : licenseIds) {
getLicenseIds().add(value);
}
return this;
}
/**
* Specifies the license registration for which details are to be
* returned.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param licenseIds Specifies the license registration for which details are to be
* returned.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeLicensesRequest withLicenseIds(java.util.Collection licenseIds) {
if (licenseIds == null) {
this.licenseIds = null;
} else {
java.util.List licenseIdsCopy = new java.util.ArrayList(licenseIds.size());
licenseIdsCopy.addAll(licenseIds);
this.licenseIds = licenseIdsCopy;
}
return this;
}
/**
* A list of filters used to match properties for Licenses. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*
* @return A list of filters used to match properties for Licenses. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*/
public java.util.List getFilters() {
if (filters == null) {
filters = new java.util.ArrayList();
}
return filters;
}
/**
* A list of filters used to match properties for Licenses. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*
* @param filters A list of filters used to match properties for Licenses. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*/
public void setFilters(java.util.Collection filters) {
if (filters == null) {
this.filters = null;
return;
}
java.util.List filtersCopy = new java.util.ArrayList(filters.size());
filtersCopy.addAll(filters);
this.filters = filtersCopy;
}
/**
* A list of filters used to match properties for Licenses. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param filters A list of filters used to match properties for Licenses. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeLicensesRequest withFilters(Filter... filters) {
if (getFilters() == null) setFilters(new java.util.ArrayList(filters.length));
for (Filter value : filters) {
getFilters().add(value);
}
return this;
}
/**
* A list of filters used to match properties for Licenses. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param filters A list of filters used to match properties for Licenses. For a
* complete reference to the available filter keys for this operation,
* see the Amazon
* EC2 API reference.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeLicensesRequest withFilters(java.util.Collection filters) {
if (filters == null) {
this.filters = null;
} else {
java.util.List filtersCopy = new java.util.ArrayList(filters.size());
filtersCopy.addAll(filters);
this.filters = filtersCopy;
}
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 (getLicenseIds() != null) sb.append("LicenseIds: " + getLicenseIds() + ",");
if (getFilters() != null) sb.append("Filters: " + getFilters() );
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getLicenseIds() == null) ? 0 : getLicenseIds().hashCode());
hashCode = prime * hashCode + ((getFilters() == null) ? 0 : getFilters().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof DescribeLicensesRequest == false) return false;
DescribeLicensesRequest other = (DescribeLicensesRequest)obj;
if (other.getLicenseIds() == null ^ this.getLicenseIds() == null) return false;
if (other.getLicenseIds() != null && other.getLicenseIds().equals(this.getLicenseIds()) == false) return false;
if (other.getFilters() == null ^ this.getFilters() == null) return false;
if (other.getFilters() != null && other.getFilters().equals(this.getFilters()) == false) return false;
return true;
}
}