/** * The contents of this file are subject to the Mozilla Public License * Version 1.1 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the * License for the specific language governing rights and limitations * under the License. * * The Original Code is available at https://svn.forge.morfeo-project.org/claudia * * The Initial Developer of the Original Code is Telefonica Investigacion y Desarrollo S.A.U., * (http://www.tid.es), Emilio Vargas 6, 28043 Madrid, Spain. .* * No portions of the Code have been created by third parties. * All Rights Reserved. * * Contributor(s): ______________________________________. * */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147 // 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: 2010.01.26 at 07:51:55 PM CET // package com.telefonica.claudia.ovf; import java.math.BigDecimal; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Constraint_Type complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Constraint_Type"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="KPIName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="Window" type="{http://schemas.telefonica.com/claudia/ovf}Window_Type"/> * <element name="Range" type="{http://schemas.telefonica.com/claudia/ovf}Range_Type"/> * <element name="Percentage" type="{http://schemas.telefonica.com/claudia/ovf}Percentage_Type"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Constraint_Type", propOrder = { "name", "kpiName", "window", "range", "percentage" }) public class ConstraintType { @XmlElement(name = "Name", required = true) protected String name; @XmlElement(name = "KPIName", required = true) protected String kpiName; @XmlElement(name = "Window", required = true) protected WindowType window; @XmlElement(name = "Range", required = true) protected RangeType range; @XmlElement(name = "Percentage", required = true) protected BigDecimal percentage; /** * 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 kpiName property. * * @return * possible object is * {@link String } * */ public String getKPIName() { return kpiName; } /** * Sets the value of the kpiName property. * * @param value * allowed object is * {@link String } * */ public void setKPIName(String value) { this.kpiName = value; } /** * Gets the value of the window property. * * @return * possible object is * {@link WindowType } * */ public WindowType getWindow() { return window; } /** * Sets the value of the window property. * * @param value * allowed object is * {@link WindowType } * */ public void setWindow(WindowType value) { this.window = value; } /** * Gets the value of the range property. * * @return * possible object is * {@link RangeType } * */ public RangeType getRange() { return range; } /** * Sets the value of the range property. * * @param value * allowed object is * {@link RangeType } * */ public void setRange(RangeType value) { this.range = value; } /** * Gets the value of the percentage property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getPercentage() { return percentage; } /** * Sets the value of the percentage property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setPercentage(BigDecimal value) { this.percentage = value; } }