/** * 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 beanType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="beanType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="class" type="{http://jboss.org/xml/ns/javax/validation/mapping}classType" minOccurs="0"/> * <element name="field" type="{http://jboss.org/xml/ns/javax/validation/mapping}fieldType" maxOccurs="unbounded" minOccurs="0"/> * <element name="getter" type="{http://jboss.org/xml/ns/javax/validation/mapping}getterType" maxOccurs="unbounded" minOccurs="0"/> * <element name="constructor" type="{http://jboss.org/xml/ns/javax/validation/mapping}constructorType" maxOccurs="unbounded" minOccurs="0"/> * <element name="method" type="{http://jboss.org/xml/ns/javax/validation/mapping}methodType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="ignore-annotations" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "beanType", propOrder = { "classType", "field", "getter", "constructor", "method" }) public class BeanType { @XmlElement(name = "class") protected ClassType classType; protected List<FieldType> field; protected List<GetterType> getter; protected List<ConstructorType> constructor; protected List<MethodType> method; @XmlAttribute(name = "class", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String clazz; @XmlAttribute(name = "ignore-annotations") protected Boolean ignoreAnnotations; /** * Gets the value of the classType property. * * @return * possible object is * {@link ClassType } * */ public ClassType getClassType() { return classType; } /** * Sets the value of the classType property. * * @param value * allowed object is * {@link ClassType } * */ public void setClassType(ClassType value) { this.classType = value; } /** * Gets the value of the field 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 field property. * * <p> * For example, to add a new item, do as follows: * <pre> * getField().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link FieldType } * * */ public List<FieldType> getField() { if (field == null) { field = new ArrayList<FieldType>(); } return this.field; } /** * Gets the value of the getter 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 getter property. * * <p> * For example, to add a new item, do as follows: * <pre> * getGetter().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link GetterType } * * */ public List<GetterType> getGetter() { if (getter == null) { getter = new ArrayList<GetterType>(); } return this.getter; } /** * Gets the value of the constructor 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 constructor property. * * <p> * For example, to add a new item, do as follows: * <pre> * getConstructor().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ConstructorType } * * */ public List<ConstructorType> getConstructor() { if (constructor == null) { constructor = new ArrayList<ConstructorType>(); } return this.constructor; } /** * Gets the value of the method 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 method property. * * <p> * For example, to add a new item, do as follows: * <pre> * getMethod().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link MethodType } * * */ public List<MethodType> getMethod() { if (method == null) { method = new ArrayList<MethodType>(); } return this.method; } /** * Gets the value of the clazz property. * * @return * possible object is * {@link String } * */ public String getClazz() { return clazz; } /** * Sets the value of the clazz property. * * @param value * allowed object is * {@link String } * */ public void setClazz(String value) { this.clazz = 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; } }