2713N/A/**
2713N/A *
2713N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2713N/A *
2713N/A * Copyright (c) 2011-2013 ForgeRock AS. All Rights Reserved
2713N/A *
2713N/A * The contents of this file are subject to the terms
2713N/A * of the Common Development and Distribution License
6982N/A * (the License). You may not use this file except in
6982N/A * compliance with the License.
2713N/A *
2713N/A * You can obtain a copy of the License at
2713N/A * http://forgerock.org/license/CDDLv1.0.html
2713N/A * See the License for the specific language governing
6982N/A * permission and limitations under the License.
6982N/A *
6982N/A * When distributing Covered Code, include this CDDL
6982N/A * Header Notice in each file and include the License file
2713N/A * at http://forgerock.org/license/CDDLv1.0.html
2713N/A * If applicable, add the following below the CDDL Header,
2713N/A * with the fields enclosed by brackets [] replaced by
2713N/A * your own identifying information:
2713N/A * "Portions Copyrighted [year] [name of copyright owner]"
3232N/A *
2713N/A */
2713N/A
2713N/A//
2713N/A// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661
2713N/A// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
2713N/A// Any modifications to this file will be lost upon recompilation of the source schema.
2713N/A// Generated on: 2013.01.21 at 10:40:04 AM PST
2713N/A//
2713N/A
2713N/A
2713N/Apackage com.sun.identity.entitlement.xacml3.core;
2713N/A
2713N/Aimport javax.xml.bind.annotation.XmlAccessType;
2713N/Aimport javax.xml.bind.annotation.XmlAccessorType;
2713N/Aimport javax.xml.bind.annotation.XmlType;
2713N/Aimport javax.xml.bind.annotation.XmlValue;
2713N/A
2713N/A
2713N/A/**
2713N/A * <p>Java class for VersionType simple type.
2713N/A *
2713N/A * <p>The following schema fragment specifies the expected content contained within this class.
2713N/A *
2713N/A * <pre>
2713N/A * &lt;simpleType name="VersionType">
2713N/A * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
2713N/A * &lt;pattern value="(\d+\.)*\d+"/>
2713N/A * &lt;/restriction>
2713N/A * &lt;/simpleType>
2713N/A * </pre>
2713N/A *
2713N/A *
2713N/A */
2713N/A@XmlAccessorType(XmlAccessType.FIELD)
2713N/A@XmlType(name = "VersionType", propOrder = {
2713N/A "value"
2713N/A})
2713N/Apublic class Version implements XACMLRootElement {
2713N/A
2713N/A @XmlValue
2713N/A protected String value;
2713N/A
2713N/A /**
2713N/A * Gets the value of the value property.
2713N/A *
2713N/A * @return
2713N/A * possible object is
2713N/A * {@link String }
2729N/A *
2729N/A */
2729N/A public String getValue() {
2729N/A return value;
2729N/A }
2729N/A
2729N/A /**
2729N/A * Sets the value of the value property.
2729N/A *
2729N/A * @param value
2729N/A * allowed object is
2729N/A * {@link String }
2729N/A *
2729N/A */
2729N/A public void setValue(String value) {
2729N/A this.value = value;
2729N/A }
2729N/A
2729N/A /**
2729N/A * Default toXML Method to Marshal Object into XML.
2729N/A * @return String - Marshaled Results into XML String.
2729N/A */
2729N/A public String toXML() {
2729N/A StringBuilder stringBuilder = new StringBuilder();
2729N/A
2729N/A
2729N/A
2729N/A // Return Marshaled Data.
2729N/A return stringBuilder.toString();
2729N/A }
2729N/A
2729N/A}
2729N/A