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; /** * <p>Java class for NfsPrimaryStorageConfig complex type. * <p> * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <complexType name="NfsPrimaryStorageConfig"> * <complexContent> * <extension base="{http://zstack.org/schema/zstack}PrimaryStorageConfigBase"> * <attribute name="placeHolder" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="options" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </complexContent> * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NfsPrimaryStorageConfig") public class NfsPrimaryStorageConfig extends PrimaryStorageConfigBase { @XmlAttribute(name = "placeHolder") protected String placeHolder; @XmlAttribute(name = "options") protected String options; /** * Gets the value of the placeHolder property. * * @return possible object is * {@link String } */ public String getPlaceHolder() { return placeHolder; } /** * Sets the value of the placeHolder property. * * @param value allowed object is * {@link String } */ public void setPlaceHolder(String value) { this.placeHolder = value; } /** * Gets the value of the options property. * * @return possible object is * {@link String } */ public String getOptions() { return options; } /** * Sets the value of the options property. * * @param value allowed object is * {@link String } */ public void setOptions(String value) { this.options = value; } }