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; import java.util.ArrayList; import java.util.List; /** * <p>Java class for LbListenerConfig complex type. * <p> * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <complexType name="LbListenerConfig"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="protocol" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="instancePort" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/> * <element name="loadBalancerPort" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/> * <element name="vmNicRef" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LbListenerConfig", propOrder = { "name", "description", "protocol", "instancePort", "loadBalancerPort", "vmNicRef" }) public class LbListenerConfig { protected String name; protected String description; protected String protocol; @XmlSchemaType(name = "unsignedInt") protected Long instancePort; @XmlSchemaType(name = "unsignedInt") protected Long loadBalancerPort; protected List<String> vmNicRef; /** * Gets the value of the name property. * * @return possible object is * {@link String } */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value allowed object is * {@link String } */ public void setName(String value) { this.name = value; } /** * Gets the value of the description property. * * @return possible object is * {@link String } */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value allowed object is * {@link String } */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the protocol property. * * @return possible object is * {@link String } */ public String getProtocol() { return protocol; } /** * Sets the value of the protocol property. * * @param value allowed object is * {@link String } */ public void setProtocol(String value) { this.protocol = value; } /** * Gets the value of the instancePort property. * * @return possible object is * {@link Long } */ public Long getInstancePort() { return instancePort; } /** * Sets the value of the instancePort property. * * @param value allowed object is * {@link Long } */ public void setInstancePort(Long value) { this.instancePort = value; } /** * Gets the value of the loadBalancerPort property. * * @return possible object is * {@link Long } */ public Long getLoadBalancerPort() { return loadBalancerPort; } /** * Sets the value of the loadBalancerPort property. * * @param value allowed object is * {@link Long } */ public void setLoadBalancerPort(Long value) { this.loadBalancerPort = value; } /** * Gets the value of the vmNicRef property. * <p> * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the vmNicRef property. * <p> * <p> * For example, to add a new item, do as follows: * <pre> * getVmNicRef().add(newItem); * </pre> * <p> * <p> * <p> * Objects of the following type(s) are allowed in the list * {@link String } */ public List<String> getVmNicRef() { if (vmNicRef == null) { vmNicRef = new ArrayList<String>(); } return this.vmNicRef; } }