package org.zstack.test.deployer.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ConvergedOfferingConfig complex type. * <p> * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <complexType name="ConvergedOfferingConfig"> * <complexContent> * <extension base="{http://zstack.org/schema/zstack}InstanceOfferingConfig"> * <sequence> * <element name="networkOutboundBandwidth" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/> * <element name="networkInboundBandwidth" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/> * <element name="volumeTotalBandwidth" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/> * <element name="volumeTotalIops" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ConvergedOfferingConfig", propOrder = { "networkOutboundBandwidth", "networkInboundBandwidth", "volumeTotalBandwidth", "volumeTotalIops" }) public class ConvergedOfferingConfig extends InstanceOfferingConfig { @XmlSchemaType(name = "unsignedInt") protected Long networkOutboundBandwidth; @XmlSchemaType(name = "unsignedInt") protected Long networkInboundBandwidth; @XmlSchemaType(name = "unsignedInt") protected Long volumeTotalBandwidth; @XmlSchemaType(name = "unsignedInt") protected Long volumeTotalIops; /** * Gets the value of the networkOutboundBandwidth property. * * @return possible object is * {@link Long } */ public Long getNetworkOutboundBandwidth() { return networkOutboundBandwidth; } /** * Sets the value of the networkOutboundBandwidth property. * * @param value allowed object is * {@link Long } */ public void setNetworkOutboundBandwidth(Long value) { this.networkOutboundBandwidth = value; } /** * Gets the value of the networkInboundBandwidth property. * * @return possible object is * {@link Long } */ public Long getNetworkInboundBandwidth() { return networkInboundBandwidth; } /** * Sets the value of the networkInboundBandwidth property. * * @param value allowed object is * {@link Long } */ public void setNetworkInboundBandwidth(Long value) { this.networkInboundBandwidth = value; } /** * Gets the value of the volumeTotalBandwidth property. * * @return possible object is * {@link Long } */ public Long getVolumeTotalBandwidth() { return volumeTotalBandwidth; } /** * Sets the value of the volumeTotalBandwidth property. * * @param value allowed object is * {@link Long } */ public void setVolumeTotalBandwidth(Long value) { this.volumeTotalBandwidth = value; } /** * Gets the value of the volumeTotalIops property. * * @return possible object is * {@link Long } */ public Long getVolumeTotalIops() { return volumeTotalIops; } /** * Sets the value of the volumeTotalIops property. * * @param value allowed object is * {@link Long } */ public void setVolumeTotalIops(Long value) { this.volumeTotalIops = value; } }