package org.zstack.test.deployer.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import java.util.ArrayList; import java.util.List; /** * <p>Java class for LbConfig complex type. * <p> * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <complexType name="LbConfig"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="accountRef" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <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="publicL3NetworkRef" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="listener" type="{http://zstack.org/schema/zstack}LbListenerConfig" maxOccurs="unbounded" minOccurs="0"/> * <element name="tag" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LbConfig", propOrder = { "accountRef", "name", "description", "publicL3NetworkRef", "listener", "tag" }) public class LbConfig { protected String accountRef; protected String name; protected String description; protected String publicL3NetworkRef; protected List<LbListenerConfig> listener; protected List<String> tag; /** * Gets the value of the accountRef property. * * @return possible object is * {@link String } */ public String getAccountRef() { return accountRef; } /** * Sets the value of the accountRef property. * * @param value allowed object is * {@link String } */ public void setAccountRef(String value) { this.accountRef = value; } /** * 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 publicL3NetworkRef property. * * @return possible object is * {@link String } */ public String getPublicL3NetworkRef() { return publicL3NetworkRef; } /** * Sets the value of the publicL3NetworkRef property. * * @param value allowed object is * {@link String } */ public void setPublicL3NetworkRef(String value) { this.publicL3NetworkRef = value; } /** * Gets the value of the listener 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 listener property. * <p> * <p> * For example, to add a new item, do as follows: * <pre> * getListener().add(newItem); * </pre> * <p> * <p> * <p> * Objects of the following type(s) are allowed in the list * {@link LbListenerConfig } */ public List<LbListenerConfig> getListener() { if (listener == null) { listener = new ArrayList<LbListenerConfig>(); } return this.listener; } /** * Gets the value of the tag 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 tag property. * <p> * <p> * For example, to add a new item, do as follows: * <pre> * getTag().add(newItem); * </pre> * <p> * <p> * <p> * Objects of the following type(s) are allowed in the list * {@link String } */ public List<String> getTag() { if (tag == null) { tag = new ArrayList<String>(); } return this.tag; } }