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