VersionMatch.java revision 4c0f084e476c05989eb702c500a763ef09ba044e
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661
// 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.01.14 at 08:50:29 AM PST
//
package com.sun.identity.entitlement.xacml3.core;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
/**
* <p>Java class for VersionMatchType simple type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;simpleType name="VersionMatchType">
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;pattern value="((\d+|\*)\.)*(\d+|\*|\+)"/>
* &lt;/restriction>
* &lt;/simpleType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VersionMatchType", propOrder = {
"value"
})
public class VersionMatch {
@XmlValue
protected String value;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
}