All Downloads are FREE. Search and download functionalities are using the official Maven repository.

oasis.names.tc.xacml._2_0.policy.schema.os.IdReferenceType Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.02.11 at 11:39:13 AM EST 
//


package oasis.names.tc.xacml._2_0.policy.schema.os;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;


/**
 * 

Java class for IdReferenceType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="IdReferenceType">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>anyURI">
 *       <attribute name="Version" type="{urn:oasis:names:tc:xacml:2.0:policy:schema:os}VersionMatchType" />
 *       <attribute name="EarliestVersion" type="{urn:oasis:names:tc:xacml:2.0:policy:schema:os}VersionMatchType" />
 *       <attribute name="LatestVersion" type="{urn:oasis:names:tc:xacml:2.0:policy:schema:os}VersionMatchType" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IdReferenceType", propOrder = { "value" }) public class IdReferenceType { @XmlValue @XmlSchemaType(name = "anyURI") protected String value; @XmlAttribute(name = "Version") protected String version; @XmlAttribute(name = "EarliestVersion") protected String earliestVersion; @XmlAttribute(name = "LatestVersion") protected String latestVersion; /** * 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; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the earliestVersion property. * * @return * possible object is * {@link String } * */ public String getEarliestVersion() { return earliestVersion; } /** * Sets the value of the earliestVersion property. * * @param value * allowed object is * {@link String } * */ public void setEarliestVersion(String value) { this.earliestVersion = value; } /** * Gets the value of the latestVersion property. * * @return * possible object is * {@link String } * */ public String getLatestVersion() { return latestVersion; } /** * Sets the value of the latestVersion property. * * @param value * allowed object is * {@link String } * */ public void setLatestVersion(String value) { this.latestVersion = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy