// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.05.02 at 02:03:35 PM UTC // package org.voltdb.compiler.projectfile; import java.math.BigInteger; 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 snapshotType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="snapshotType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="frequency" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="retain" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" /> * <attribute name="path" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="prefix" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "snapshotType") public class SnapshotType { @XmlAttribute(name = "frequency", required = true) protected String frequency; @XmlAttribute(name = "retain", required = true) protected BigInteger retain; @XmlAttribute(name = "path", required = true) protected String path; @XmlAttribute(name = "prefix", required = true) protected String prefix; /** * Gets the value of the frequency property. * * @return * possible object is * {@link String } * */ public String getFrequency() { return frequency; } /** * Sets the value of the frequency property. * * @param value * allowed object is * {@link String } * */ public void setFrequency(String value) { this.frequency = value; } /** * Gets the value of the retain property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getRetain() { return retain; } /** * Sets the value of the retain property. * * @param value * allowed object is * {@link BigInteger } * */ public void setRetain(BigInteger value) { this.retain = value; } /** * Gets the value of the path property. * * @return * possible object is * {@link String } * */ public String getPath() { return path; } /** * Sets the value of the path property. * * @param value * allowed object is * {@link String } * */ public void setPath(String value) { this.path = value; } /** * Gets the value of the prefix property. * * @return * possible object is * {@link String } * */ public String getPrefix() { return prefix; } /** * Sets the value of the prefix property. * * @param value * allowed object is * {@link String } * */ public void setPrefix(String value) { this.prefix = value; } }