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

com.ksc.network.eip.model.AllocateAddressRequest Maven / Gradle / Ivy

There is a newer version: 2.1.8
Show newest version
package com.ksc.network.eip.model;

import com.ksc.KscWebServiceRequest;
import com.ksc.Request;
import com.ksc.model.DryRunSupportedRequest;
import com.ksc.network.eip.model.transform.AllocateAddressRequestMarshaller;

import java.io.Serializable;

/**
 * 

* Contains the parameters for AllocateAddress. *

*/ public class AllocateAddressRequest extends KscWebServiceRequest implements Serializable, Cloneable, DryRunSupportedRequest { /** * 线路类型的ID */ private String LineId; /** * 弹性IP的带宽 */ private Integer BandWidth; /** * 弹性IP的计费类型,包年包月Monthly,有到期时间,只能升带宽。按峰值月结Peak,无到期时间,可升降带宽。按日月结Daily,无到期时间,可升降带宽。 */ private String ChargeType; /** * 购买时长,只有包年包月时不可缺省。 */ private Integer PurchaseTime; public String getLineId() { return LineId; } public void setLineId(String lineId) { LineId = lineId; } public Integer getBandWidth() { return BandWidth; } public void setBandWidth(Integer bandWidth) { BandWidth = bandWidth; } public String getChargeType() { return ChargeType; } public void setChargeType(String chargeType) { ChargeType = chargeType; } public Integer getPurchaseTime() { return PurchaseTime; } public void setPurchaseTime(Integer purchaseTime) { PurchaseTime = purchaseTime; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; AllocateAddressRequest that = (AllocateAddressRequest) o; if (LineId != null ? !LineId.equals(that.LineId) : that.LineId != null) return false; if (BandWidth != null ? !BandWidth.equals(that.BandWidth) : that.BandWidth != null) return false; if (ChargeType != null ? !ChargeType.equals(that.ChargeType) : that.ChargeType != null) return false; return PurchaseTime != null ? PurchaseTime.equals(that.PurchaseTime) : that.PurchaseTime == null; } @Override public int hashCode() { int result = LineId != null ? LineId.hashCode() : 0; result = 31 * result + (BandWidth != null ? BandWidth.hashCode() : 0); result = 31 * result + (ChargeType != null ? ChargeType.hashCode() : 0); result = 31 * result + (PurchaseTime != null ? PurchaseTime.hashCode() : 0); return result; } @Override public AllocateAddressRequest clone() { return (AllocateAddressRequest) super.clone(); } @Override public Request getDryRunRequest() { Request request = new AllocateAddressRequestMarshaller() .marshall(this); request.addParameter("DryRun", Boolean.toString(true)); return request; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy