// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // 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: 2013.03.19 at 10:52:54 AM EDT // package com.tesora.dve.tools.jaxb.policy; /* * #%L * Tesora Inc. * Database Virtualization Engine * %% * Copyright (C) 2011 - 2014 Tesora Inc. * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * #L% */ import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PolicyConfig complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PolicyConfig"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="aggregation" type="{}PolicyItem"/> * <element name="small" type="{}PolicyItem"/> * <element name="medium" type="{}PolicyItem"/> * <element name="large" type="{}PolicyItem"/> * </sequence> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="strict" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PolicyConfig", propOrder = { "aggregation", "small", "medium", "large" }) public class PolicyConfig { @XmlElement(required = true) protected PolicyItem aggregation; @XmlElement(required = true) protected PolicyItem small; @XmlElement(required = true) protected PolicyItem medium; @XmlElement(required = true) protected PolicyItem large; @XmlAttribute(required = true) protected String name; @XmlAttribute protected Boolean strict; /** * Gets the value of the aggregation property. * * @return * possible object is * {@link PolicyItem } * */ public PolicyItem getAggregation() { return aggregation; } /** * Sets the value of the aggregation property. * * @param value * allowed object is * {@link PolicyItem } * */ public void setAggregation(PolicyItem value) { this.aggregation = value; } /** * Gets the value of the small property. * * @return * possible object is * {@link PolicyItem } * */ public PolicyItem getSmall() { return small; } /** * Sets the value of the small property. * * @param value * allowed object is * {@link PolicyItem } * */ public void setSmall(PolicyItem value) { this.small = value; } /** * Gets the value of the medium property. * * @return * possible object is * {@link PolicyItem } * */ public PolicyItem getMedium() { return medium; } /** * Sets the value of the medium property. * * @param value * allowed object is * {@link PolicyItem } * */ public void setMedium(PolicyItem value) { this.medium = value; } /** * Gets the value of the large property. * * @return * possible object is * {@link PolicyItem } * */ public PolicyItem getLarge() { return large; } /** * Sets the value of the large property. * * @param value * allowed object is * {@link PolicyItem } * */ public void setLarge(PolicyItem value) { this.large = 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 strict property. * * @return * possible object is * {@link Boolean } * */ public Boolean isStrict() { return strict; } /** * Sets the value of the strict property. * * @param value * allowed object is * {@link Boolean } * */ public void setStrict(Boolean value) { this.strict = value; } }