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

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

Go to download

The AWS Java SDK for AWS Device Farm module holds the client classes that are used for communicating with AWS Device Farm

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

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* The status of the offering. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class OfferingStatus implements Serializable, Cloneable, StructuredPojo { /** *

* The type specified for the offering status. *

*/ private String type; /** *

* Represents the metadata of an offering status. *

*/ private Offering offering; /** *

* The number of available devices in the offering. *

*/ private Integer quantity; /** *

* The date on which the offering is effective. *

*/ private java.util.Date effectiveOn; /** *

* The type specified for the offering status. *

* * @param type * The type specified for the offering status. * @see OfferingTransactionType */ public void setType(String type) { this.type = type; } /** *

* The type specified for the offering status. *

* * @return The type specified for the offering status. * @see OfferingTransactionType */ public String getType() { return this.type; } /** *

* The type specified for the offering status. *

* * @param type * The type specified for the offering status. * @return Returns a reference to this object so that method calls can be chained together. * @see OfferingTransactionType */ public OfferingStatus withType(String type) { setType(type); return this; } /** *

* The type specified for the offering status. *

* * @param type * The type specified for the offering status. * @see OfferingTransactionType */ public void setType(OfferingTransactionType type) { withType(type); } /** *

* The type specified for the offering status. *

* * @param type * The type specified for the offering status. * @return Returns a reference to this object so that method calls can be chained together. * @see OfferingTransactionType */ public OfferingStatus withType(OfferingTransactionType type) { this.type = type.toString(); return this; } /** *

* Represents the metadata of an offering status. *

* * @param offering * Represents the metadata of an offering status. */ public void setOffering(Offering offering) { this.offering = offering; } /** *

* Represents the metadata of an offering status. *

* * @return Represents the metadata of an offering status. */ public Offering getOffering() { return this.offering; } /** *

* Represents the metadata of an offering status. *

* * @param offering * Represents the metadata of an offering status. * @return Returns a reference to this object so that method calls can be chained together. */ public OfferingStatus withOffering(Offering offering) { setOffering(offering); return this; } /** *

* The number of available devices in the offering. *

* * @param quantity * The number of available devices in the offering. */ public void setQuantity(Integer quantity) { this.quantity = quantity; } /** *

* The number of available devices in the offering. *

* * @return The number of available devices in the offering. */ public Integer getQuantity() { return this.quantity; } /** *

* The number of available devices in the offering. *

* * @param quantity * The number of available devices in the offering. * @return Returns a reference to this object so that method calls can be chained together. */ public OfferingStatus withQuantity(Integer quantity) { setQuantity(quantity); return this; } /** *

* The date on which the offering is effective. *

* * @param effectiveOn * The date on which the offering is effective. */ public void setEffectiveOn(java.util.Date effectiveOn) { this.effectiveOn = effectiveOn; } /** *

* The date on which the offering is effective. *

* * @return The date on which the offering is effective. */ public java.util.Date getEffectiveOn() { return this.effectiveOn; } /** *

* The date on which the offering is effective. *

* * @param effectiveOn * The date on which the offering is effective. * @return Returns a reference to this object so that method calls can be chained together. */ public OfferingStatus withEffectiveOn(java.util.Date effectiveOn) { setEffectiveOn(effectiveOn); 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 (getType() != null) sb.append("Type: ").append(getType()).append(","); if (getOffering() != null) sb.append("Offering: ").append(getOffering()).append(","); if (getQuantity() != null) sb.append("Quantity: ").append(getQuantity()).append(","); if (getEffectiveOn() != null) sb.append("EffectiveOn: ").append(getEffectiveOn()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof OfferingStatus == false) return false; OfferingStatus other = (OfferingStatus) obj; if (other.getType() == null ^ this.getType() == null) return false; if (other.getType() != null && other.getType().equals(this.getType()) == false) return false; if (other.getOffering() == null ^ this.getOffering() == null) return false; if (other.getOffering() != null && other.getOffering().equals(this.getOffering()) == false) return false; if (other.getQuantity() == null ^ this.getQuantity() == null) return false; if (other.getQuantity() != null && other.getQuantity().equals(this.getQuantity()) == false) return false; if (other.getEffectiveOn() == null ^ this.getEffectiveOn() == null) return false; if (other.getEffectiveOn() != null && other.getEffectiveOn().equals(this.getEffectiveOn()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode()); hashCode = prime * hashCode + ((getOffering() == null) ? 0 : getOffering().hashCode()); hashCode = prime * hashCode + ((getQuantity() == null) ? 0 : getQuantity().hashCode()); hashCode = prime * hashCode + ((getEffectiveOn() == null) ? 0 : getEffectiveOn().hashCode()); return hashCode; } @Override public OfferingStatus clone() { try { return (OfferingStatus) 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.devicefarm.model.transform.OfferingStatusMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy