blob: 0e3f36a17fc4cd4e5292401206a90837394680ff [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.openejb.jee.bval;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* <p>Java class for parameterType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="parameterType"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="valid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="convert-group" type="{http://jboss.org/xml/ns/javax/validation/mapping}groupConversionType" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="constraint" type="{http://jboss.org/xml/ns/javax/validation/mapping}constraintType" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
* &lt;attribute name="ignore-annotations" type="{http://www.w3.org/2001/XMLSchema}boolean" /&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "parameterType", propOrder = {
"valid",
"convertGroup",
"constraint"
})
public class ParameterType {
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String valid;
@XmlElement(name = "convert-group")
protected List<GroupConversionType> convertGroup;
protected List<ConstraintType> constraint;
@XmlAttribute(name = "type", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String type;
@XmlAttribute(name = "ignore-annotations")
protected Boolean ignoreAnnotations;
/**
* Gets the value of the valid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValid() {
return valid;
}
/**
* Sets the value of the valid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValid(String value) {
this.valid = value;
}
/**
* Gets the value of the convertGroup property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the convertGroup property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getConvertGroup().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link GroupConversionType }
*
*
*/
public List<GroupConversionType> getConvertGroup() {
if (convertGroup == null) {
convertGroup = new ArrayList<GroupConversionType>();
}
return this.convertGroup;
}
/**
* Gets the value of the constraint property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the constraint property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getConstraint().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ConstraintType }
*
*
*/
public List<ConstraintType> getConstraint() {
if (constraint == null) {
constraint = new ArrayList<ConstraintType>();
}
return this.constraint;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the ignoreAnnotations property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean getIgnoreAnnotations() {
return ignoreAnnotations;
}
/**
* Sets the value of the ignoreAnnotations property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIgnoreAnnotations(Boolean value) {
this.ignoreAnnotations = value;
}
}