/** * 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.oejb2; import org.apache.openejb.jee.oejb3.PropertiesAdapter; import java.util.ArrayList; import java.util.List; import java.util.Collections; import java.util.Properties; import javax.xml.bind.JAXBElement; 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.XmlElementRef; import javax.xml.bind.annotation.XmlID; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlTransient; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for message-driven-beanType complex type. * <p/> * <p>The following schema fragment specifies the expected content contained within this class. * <p/> * <pre> * <complexType name="message-driven-beanType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ejb-name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element ref="{http://geronimo.apache.org/xml/ns/naming-1.2}resource-adapter"/> * <element name="activation-config" type="{http://tomee.apache.org/xml/ns/openejb-jar-2.2}activation-configType" minOccurs="0"/> * <group ref="{http://geronimo.apache.org/xml/ns/naming-1.2}jndiEnvironmentRefsGroup"/> * </sequence> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> * </restriction> * </complexContent> * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "message-driven-beanType", propOrder = { "ejbName", "properties", "resourceAdapter", "activationConfig", "abstractNamingEntry", "persistenceContextRef", "persistenceUnitRef", "ejbRef", "ejbLocalRef", "serviceRef", "resourceRef", "resourceEnvRef" }) public class MessageDrivenBeanType implements EnterpriseBean { @XmlElement(name = "ejb-name", required = true) protected String ejbName; @XmlElement(name = "properties") @XmlJavaTypeAdapter(PropertiesAdapter.class) protected Properties properties; @XmlElement(name = "resource-adapter", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2", required = true) protected ResourceLocatorType resourceAdapter; @XmlElement(name = "activation-config") protected ActivationConfigType activationConfig; @XmlElementRef(name = "abstract-naming-entry", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2", type = JAXBElement.class) protected List<JAXBElement<? extends AbstractNamingEntryType>> abstractNamingEntry; @XmlElement(name = "persistence-context-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2") protected List<PersistenceContextRefType> persistenceContextRef; @XmlElement(name = "persistence-unit-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2") protected List<PersistenceUnitRefType> persistenceUnitRef; @XmlElement(name = "ejb-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2") protected List<EjbRefType> ejbRef; @XmlElement(name = "ejb-local-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2") protected List<EjbLocalRefType> ejbLocalRef; @XmlElement(name = "service-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2") protected List<ServiceRefType> serviceRef; @XmlElement(name = "resource-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2") protected List<ResourceRefType> resourceRef; @XmlElement(name = "resource-env-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2") protected List<ResourceEnvRefType> resourceEnvRef; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID protected String id; @XmlTransient public List<String> getJndiName() { return Collections.emptyList(); } @XmlTransient public List<String> getLocalJndiName() { return Collections.emptyList(); } public List<Jndi> getJndi() { return Collections.emptyList(); } /** * Gets the value of the ejbName property. * * @return possible object is * {@link String } */ public String getEjbName() { return ejbName; } /** * Sets the value of the ejbName property. * * @param value allowed object is * {@link String } */ public void setEjbName(final String value) { this.ejbName = value; } /** * Gets the value of the resourceAdapter property. * * @return possible object is * {@link ResourceLocatorType } */ public ResourceLocatorType getResourceAdapter() { return resourceAdapter; } /** * Sets the value of the resourceAdapter property. * * @param value allowed object is * {@link ResourceLocatorType } */ public void setResourceAdapter(final ResourceLocatorType value) { this.resourceAdapter = value; } /** * Gets the value of the activationConfig property. * * @return possible object is * {@link ActivationConfigType } */ public ActivationConfigType getActivationConfig() { return activationConfig; } /** * Sets the value of the activationConfig property. * * @param value allowed object is * {@link ActivationConfigType } */ public void setActivationConfig(final ActivationConfigType value) { this.activationConfig = value; } /** * Gets the value of the abstractNamingEntry property. * <p/> * <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 abstractNamingEntry property. * <p/> * <p/> * For example, to add a new item, do as follows: * <pre> * getAbstractNamingEntry().add(newItem); * </pre> * <p/> * <p/> * <p/> * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link AbstractNamingEntryType }{@code >} * {@link JAXBElement }{@code <}{@link PersistenceContextRefType }{@code >} * {@link JAXBElement }{@code <}{@link PersistenceUnitRefType }{@code >} * {@link JAXBElement }{@code <}{@link GbeanRefType }{@code >} */ public List<JAXBElement<? extends AbstractNamingEntryType>> getAbstractNamingEntry() { if (abstractNamingEntry == null) { abstractNamingEntry = new ArrayList<JAXBElement<? extends AbstractNamingEntryType>>(); } return this.abstractNamingEntry; } public List<PersistenceContextRefType> getPersistenceContextRef() { if (persistenceContextRef == null) { persistenceContextRef = new ArrayList<PersistenceContextRefType>(); } return persistenceContextRef; } public List<PersistenceUnitRefType> getPersistenceUnitRef() { if (persistenceUnitRef == null) { persistenceUnitRef = new ArrayList<PersistenceUnitRefType>(); } return persistenceUnitRef; } /** * Gets the value of the ejbRef property. * <p/> * <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 ejbRef property. * <p/> * <p/> * For example, to add a new item, do as follows: * <pre> * getEjbRef().add(newItem); * </pre> * <p/> * <p/> * <p/> * Objects of the following type(s) are allowed in the list * {@link EjbRefType } */ public List<EjbRefType> getEjbRef() { if (ejbRef == null) { ejbRef = new ArrayList<EjbRefType>(); } return this.ejbRef; } /** * Gets the value of the ejbLocalRef property. * <p/> * <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 ejbLocalRef property. * <p/> * <p/> * For example, to add a new item, do as follows: * <pre> * getEjbLocalRef().add(newItem); * </pre> * <p/> * <p/> * <p/> * Objects of the following type(s) are allowed in the list * {@link EjbLocalRefType } */ public List<EjbLocalRefType> getEjbLocalRef() { if (ejbLocalRef == null) { ejbLocalRef = new ArrayList<EjbLocalRefType>(); } return this.ejbLocalRef; } /** * Gets the value of the serviceRef property. * <p/> * <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 serviceRef property. * <p/> * <p/> * For example, to add a new item, do as follows: * <pre> * getServiceRef().add(newItem); * </pre> * <p/> * <p/> * <p/> * Objects of the following type(s) are allowed in the list * {@link ServiceRefType } */ public List<ServiceRefType> getServiceRef() { if (serviceRef == null) { serviceRef = new ArrayList<ServiceRefType>(); } return this.serviceRef; } /** * Gets the value of the resourceRef property. * <p/> * <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 resourceRef property. * <p/> * <p/> * For example, to add a new item, do as follows: * <pre> * getResourceRef().add(newItem); * </pre> * <p/> * <p/> * <p/> * Objects of the following type(s) are allowed in the list * {@link ResourceRefType } */ public List<ResourceRefType> getResourceRef() { if (resourceRef == null) { resourceRef = new ArrayList<ResourceRefType>(); } return this.resourceRef; } /** * Gets the value of the resourceEnvRef property. * <p/> * <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 resourceEnvRef property. * <p/> * <p/> * For example, to add a new item, do as follows: * <pre> * getResourceEnvRef().add(newItem); * </pre> * <p/> * <p/> * <p/> * Objects of the following type(s) are allowed in the list * {@link ResourceEnvRefType } */ public List<ResourceEnvRefType> getResourceEnvRef() { if (resourceEnvRef == null) { resourceEnvRef = new ArrayList<ResourceEnvRefType>(); } return this.resourceEnvRef; } /** * Gets the value of the id property. * * @return possible object is * {@link String } */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value allowed object is * {@link String } */ public void setId(final String value) { this.id = value; } public Properties getProperties() { if (properties == null) { properties = new Properties(); } return properties; } }