package org.zstack.test.deployer.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import java.util.ArrayList; import java.util.List; /** * <p>Java class for AccountConfig complex type. * <p> * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <complexType name="AccountConfig"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="user" type="{http://zstack.org/schema/zstack}UserConfig" maxOccurs="unbounded" minOccurs="0"/> * <element name="policy" type="{http://zstack.org/schema/zstack}PolicyConfig" maxOccurs="unbounded" minOccurs="0"/> * <element name="group" type="{http://zstack.org/schema/zstack}GroupConfig" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="password" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AccountConfig", propOrder = { "user", "policy", "group" }) public class AccountConfig { protected List<UserConfig> user; protected List<PolicyConfig> policy; protected List<GroupConfig> group; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "password", required = true) protected String password; /** * Gets the value of the user 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 user property. * <p> * <p> * For example, to add a new item, do as follows: * <pre> * getUser().add(newItem); * </pre> * <p> * <p> * <p> * Objects of the following type(s) are allowed in the list * {@link UserConfig } */ public List<UserConfig> getUser() { if (user == null) { user = new ArrayList<UserConfig>(); } return this.user; } /** * Gets the value of the policy 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 policy property. * <p> * <p> * For example, to add a new item, do as follows: * <pre> * getPolicy().add(newItem); * </pre> * <p> * <p> * <p> * Objects of the following type(s) are allowed in the list * {@link PolicyConfig } */ public List<PolicyConfig> getPolicy() { if (policy == null) { policy = new ArrayList<PolicyConfig>(); } return this.policy; } /** * Gets the value of the group 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 group property. * <p> * <p> * For example, to add a new item, do as follows: * <pre> * getGroup().add(newItem); * </pre> * <p> * <p> * <p> * Objects of the following type(s) are allowed in the list * {@link GroupConfig } */ public List<GroupConfig> getGroup() { if (group == null) { group = new ArrayList<GroupConfig>(); } return this.group; } /** * 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 password property. * * @return possible object is * {@link String } */ public String getPassword() { return password; } /** * Sets the value of the password property. * * @param value allowed object is * {@link String } */ public void setPassword(String value) { this.password = value; } }