AttributeDesignator.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.*;
/**
* <p>Java class for AttributeDesignatorType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="AttributeDesignatorType">
* &lt;complexContent>
* &lt;extension base="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}ExpressionType">
* &lt;attribute name="Category" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* &lt;attribute name="AttributeId" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* &lt;attribute name="DataType" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* &lt;attribute name="Issuer" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="MustBePresent" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* &lt;/extension>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributeDesignatorType")
public class AttributeDesignator
extends Expression
{
@XmlAttribute(name = "Category", required = true)
@XmlSchemaType(name = "anyURI")
protected String category;
@XmlAttribute(name = "AttributeId", required = true)
@XmlSchemaType(name = "anyURI")
protected String attributeId;
@XmlAttribute(name = "DataType", required = true)
@XmlSchemaType(name = "anyURI")
protected String dataType;
@XmlAttribute(name = "Issuer")
protected String issuer;
@XmlAttribute(name = "MustBePresent", required = true)
protected boolean mustBePresent;
/**
* Gets the value of the category property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCategory() {
return category;
}
/**
* Sets the value of the category property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCategory(String value) {
this.category = value;
}
/**
* Gets the value of the attributeId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAttributeId() {
return attributeId;
}
/**
* Sets the value of the attributeId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAttributeId(String value) {
this.attributeId = value;
}
/**
* Gets the value of the dataType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDataType() {
return dataType;
}
/**
* Sets the value of the dataType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDataType(String value) {
this.dataType = value;
}
/**
* Gets the value of the issuer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIssuer() {
return issuer;
}
/**
* Sets the value of the issuer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIssuer(String value) {
this.issuer = value;
}
/**
* Gets the value of the mustBePresent property.
*
*/
public boolean isMustBePresent() {
return mustBePresent;
}
/**
* Sets the value of the mustBePresent property.
*
*/
public void setMustBePresent(boolean value) {
this.mustBePresent = value;
}
}