blob: 026f4abcd08be85e8fd8413720e853103d4e2baf [file] [log] [blame]
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-b02-fcs
// 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: 2011.02.27 at 02:35:53 PM CST
//
package org.eclipse.ptp.rm.jaxb.core.data;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>
* Java class for anonymous complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;choice>
* &lt;element name="regex" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="acl" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/choice>
* &lt;element name="error-message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = { "regex", "acl", "errorMessage" })
@XmlRootElement(name = "validator")
public class Validator {
protected String regex;
protected String acl;
@XmlElement(name = "error-message")
protected String errorMessage;
/**
* Gets the value of the acl property.
*
* @return possible object is {@link String }
*
*/
public String getAcl() {
return acl;
}
/**
* Gets the value of the errorMessage property.
*
* @return possible object is {@link String }
*
*/
public String getErrorMessage() {
return errorMessage;
}
/**
* Gets the value of the regex property.
*
* @return possible object is {@link String }
*
*/
public String getRegex() {
return regex;
}
/**
* Sets the value of the acl property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setAcl(String value) {
this.acl = value;
}
/**
* Sets the value of the errorMessage property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setErrorMessage(String value) {
this.errorMessage = value;
}
/**
* Sets the value of the regex property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setRegex(String value) {
this.regex = value;
}
}