
com.amazonaws.services.devicefarm.model.OfferingTransaction Maven / Gradle / Ivy
Show all versions of aws-java-sdk-devicefarm 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.devicefarm.model;
import java.io.Serializable;
/**
*
* Represents the metadata of an offering transaction.
*
*/
public class OfferingTransaction implements Serializable, Cloneable {
/**
*
* The status of an offering transaction.
*
*/
private OfferingStatus offeringStatus;
/**
*
* The transaction ID of the offering transaction.
*
*/
private String transactionId;
/**
*
* The date on which an offering transaction was created.
*
*/
private java.util.Date createdOn;
/**
*
* The cost of an offering transaction.
*
*/
private MonetaryAmount cost;
/**
*
* The status of an offering transaction.
*
*
* @param offeringStatus
* The status of an offering transaction.
*/
public void setOfferingStatus(OfferingStatus offeringStatus) {
this.offeringStatus = offeringStatus;
}
/**
*
* The status of an offering transaction.
*
*
* @return The status of an offering transaction.
*/
public OfferingStatus getOfferingStatus() {
return this.offeringStatus;
}
/**
*
* The status of an offering transaction.
*
*
* @param offeringStatus
* The status of an offering transaction.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public OfferingTransaction withOfferingStatus(OfferingStatus offeringStatus) {
setOfferingStatus(offeringStatus);
return this;
}
/**
*
* The transaction ID of the offering transaction.
*
*
* @param transactionId
* The transaction ID of the offering transaction.
*/
public void setTransactionId(String transactionId) {
this.transactionId = transactionId;
}
/**
*
* The transaction ID of the offering transaction.
*
*
* @return The transaction ID of the offering transaction.
*/
public String getTransactionId() {
return this.transactionId;
}
/**
*
* The transaction ID of the offering transaction.
*
*
* @param transactionId
* The transaction ID of the offering transaction.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public OfferingTransaction withTransactionId(String transactionId) {
setTransactionId(transactionId);
return this;
}
/**
*
* The date on which an offering transaction was created.
*
*
* @param createdOn
* The date on which an offering transaction was created.
*/
public void setCreatedOn(java.util.Date createdOn) {
this.createdOn = createdOn;
}
/**
*
* The date on which an offering transaction was created.
*
*
* @return The date on which an offering transaction was created.
*/
public java.util.Date getCreatedOn() {
return this.createdOn;
}
/**
*
* The date on which an offering transaction was created.
*
*
* @param createdOn
* The date on which an offering transaction was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public OfferingTransaction withCreatedOn(java.util.Date createdOn) {
setCreatedOn(createdOn);
return this;
}
/**
*
* The cost of an offering transaction.
*
*
* @param cost
* The cost of an offering transaction.
*/
public void setCost(MonetaryAmount cost) {
this.cost = cost;
}
/**
*
* The cost of an offering transaction.
*
*
* @return The cost of an offering transaction.
*/
public MonetaryAmount getCost() {
return this.cost;
}
/**
*
* The cost of an offering transaction.
*
*
* @param cost
* The cost of an offering transaction.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public OfferingTransaction withCost(MonetaryAmount cost) {
setCost(cost);
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 (getOfferingStatus() != null)
sb.append("OfferingStatus: " + getOfferingStatus() + ",");
if (getTransactionId() != null)
sb.append("TransactionId: " + getTransactionId() + ",");
if (getCreatedOn() != null)
sb.append("CreatedOn: " + getCreatedOn() + ",");
if (getCost() != null)
sb.append("Cost: " + getCost());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof OfferingTransaction == false)
return false;
OfferingTransaction other = (OfferingTransaction) obj;
if (other.getOfferingStatus() == null ^ this.getOfferingStatus() == null)
return false;
if (other.getOfferingStatus() != null && other.getOfferingStatus().equals(this.getOfferingStatus()) == false)
return false;
if (other.getTransactionId() == null ^ this.getTransactionId() == null)
return false;
if (other.getTransactionId() != null && other.getTransactionId().equals(this.getTransactionId()) == false)
return false;
if (other.getCreatedOn() == null ^ this.getCreatedOn() == null)
return false;
if (other.getCreatedOn() != null && other.getCreatedOn().equals(this.getCreatedOn()) == false)
return false;
if (other.getCost() == null ^ this.getCost() == null)
return false;
if (other.getCost() != null && other.getCost().equals(this.getCost()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getOfferingStatus() == null) ? 0 : getOfferingStatus().hashCode());
hashCode = prime * hashCode + ((getTransactionId() == null) ? 0 : getTransactionId().hashCode());
hashCode = prime * hashCode + ((getCreatedOn() == null) ? 0 : getCreatedOn().hashCode());
hashCode = prime * hashCode + ((getCost() == null) ? 0 : getCost().hashCode());
return hashCode;
}
@Override
public OfferingTransaction clone() {
try {
return (OfferingTransaction) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}