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

com.amazonaws.services.devicefarm.model.AccountSettings Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
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.devicefarm.model;

import java.io.Serializable;

/**
 * 

* A container for account-level settings within AWS Device Farm. *

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

* The AWS account number specified in the AccountSettings * container. *

*/ private String awsAccountNumber; /** *

* Returns the unmetered devices you have purchased or want to purchase. *

*/ private java.util.Map unmeteredDevices; /** *

* Returns the unmetered remote access devices you have purchased or want to * purchase. *

*/ private java.util.Map unmeteredRemoteAccessDevices; /** *

* The AWS account number specified in the AccountSettings * container. *

* * @param awsAccountNumber * The AWS account number specified in the * AccountSettings container. */ public void setAwsAccountNumber(String awsAccountNumber) { this.awsAccountNumber = awsAccountNumber; } /** *

* The AWS account number specified in the AccountSettings * container. *

* * @return The AWS account number specified in the * AccountSettings container. */ public String getAwsAccountNumber() { return this.awsAccountNumber; } /** *

* The AWS account number specified in the AccountSettings * container. *

* * @param awsAccountNumber * The AWS account number specified in the * AccountSettings container. * @return Returns a reference to this object so that method calls can be * chained together. */ public AccountSettings withAwsAccountNumber(String awsAccountNumber) { setAwsAccountNumber(awsAccountNumber); return this; } /** *

* Returns the unmetered devices you have purchased or want to purchase. *

* * @return Returns the unmetered devices you have purchased or want to * purchase. */ public java.util.Map getUnmeteredDevices() { return unmeteredDevices; } /** *

* Returns the unmetered devices you have purchased or want to purchase. *

* * @param unmeteredDevices * Returns the unmetered devices you have purchased or want to * purchase. */ public void setUnmeteredDevices( java.util.Map unmeteredDevices) { this.unmeteredDevices = unmeteredDevices; } /** *

* Returns the unmetered devices you have purchased or want to purchase. *

* * @param unmeteredDevices * Returns the unmetered devices you have purchased or want to * purchase. * @return Returns a reference to this object so that method calls can be * chained together. */ public AccountSettings withUnmeteredDevices( java.util.Map unmeteredDevices) { setUnmeteredDevices(unmeteredDevices); return this; } public AccountSettings addUnmeteredDevicesEntry(String key, Integer value) { if (null == this.unmeteredDevices) { this.unmeteredDevices = new java.util.HashMap(); } if (this.unmeteredDevices.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.unmeteredDevices.put(key, value); return this; } /** * Removes all the entries added into UnmeteredDevices. <p> Returns a * reference to this object so that method calls can be chained together. */ public AccountSettings clearUnmeteredDevicesEntries() { this.unmeteredDevices = null; return this; } /** *

* Returns the unmetered remote access devices you have purchased or want to * purchase. *

* * @return Returns the unmetered remote access devices you have purchased or * want to purchase. */ public java.util.Map getUnmeteredRemoteAccessDevices() { return unmeteredRemoteAccessDevices; } /** *

* Returns the unmetered remote access devices you have purchased or want to * purchase. *

* * @param unmeteredRemoteAccessDevices * Returns the unmetered remote access devices you have purchased or * want to purchase. */ public void setUnmeteredRemoteAccessDevices( java.util.Map unmeteredRemoteAccessDevices) { this.unmeteredRemoteAccessDevices = unmeteredRemoteAccessDevices; } /** *

* Returns the unmetered remote access devices you have purchased or want to * purchase. *

* * @param unmeteredRemoteAccessDevices * Returns the unmetered remote access devices you have purchased or * want to purchase. * @return Returns a reference to this object so that method calls can be * chained together. */ public AccountSettings withUnmeteredRemoteAccessDevices( java.util.Map unmeteredRemoteAccessDevices) { setUnmeteredRemoteAccessDevices(unmeteredRemoteAccessDevices); return this; } public AccountSettings addUnmeteredRemoteAccessDevicesEntry(String key, Integer value) { if (null == this.unmeteredRemoteAccessDevices) { this.unmeteredRemoteAccessDevices = new java.util.HashMap(); } if (this.unmeteredRemoteAccessDevices.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.unmeteredRemoteAccessDevices.put(key, value); return this; } /** * Removes all the entries added into UnmeteredRemoteAccessDevices. <p> * Returns a reference to this object so that method calls can be chained * together. */ public AccountSettings clearUnmeteredRemoteAccessDevicesEntries() { this.unmeteredRemoteAccessDevices = null; 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 (getAwsAccountNumber() != null) sb.append("AwsAccountNumber: " + getAwsAccountNumber() + ","); if (getUnmeteredDevices() != null) sb.append("UnmeteredDevices: " + getUnmeteredDevices() + ","); if (getUnmeteredRemoteAccessDevices() != null) sb.append("UnmeteredRemoteAccessDevices: " + getUnmeteredRemoteAccessDevices()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AccountSettings == false) return false; AccountSettings other = (AccountSettings) obj; if (other.getAwsAccountNumber() == null ^ this.getAwsAccountNumber() == null) return false; if (other.getAwsAccountNumber() != null && other.getAwsAccountNumber().equals( this.getAwsAccountNumber()) == false) return false; if (other.getUnmeteredDevices() == null ^ this.getUnmeteredDevices() == null) return false; if (other.getUnmeteredDevices() != null && other.getUnmeteredDevices().equals( this.getUnmeteredDevices()) == false) return false; if (other.getUnmeteredRemoteAccessDevices() == null ^ this.getUnmeteredRemoteAccessDevices() == null) return false; if (other.getUnmeteredRemoteAccessDevices() != null && other.getUnmeteredRemoteAccessDevices().equals( this.getUnmeteredRemoteAccessDevices()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAwsAccountNumber() == null) ? 0 : getAwsAccountNumber() .hashCode()); hashCode = prime * hashCode + ((getUnmeteredDevices() == null) ? 0 : getUnmeteredDevices() .hashCode()); hashCode = prime * hashCode + ((getUnmeteredRemoteAccessDevices() == null) ? 0 : getUnmeteredRemoteAccessDevices().hashCode()); return hashCode; } @Override public AccountSettings clone() { try { return (AccountSettings) 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