/** * 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; 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.XmlID; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlTransient; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import java.util.ArrayList; import java.util.Collection; import java.util.List; import java.util.Map; /** * application-client_6.xsd * <p/> * <p>Java class for application-clientType complex type. * <p/> * <p>The following schema fragment specifies the expected content contained within this class. * <p/> * <pre> * <complexType name="application-clientType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="module-name" type="{http://java.sun.com/xml/ns/javaee}string" minOccurs="0"/> * <group ref="{http://java.sun.com/xml/ns/javaee}descriptionGroup"/> * <element name="env-entry" type="{http://java.sun.com/xml/ns/javaee}env-entryType" maxOccurs="unbounded" minOccurs="0"/> * <element name="ejb-ref" type="{http://java.sun.com/xml/ns/javaee}ejb-refType" maxOccurs="unbounded" minOccurs="0"/> * <group ref="{http://java.sun.com/xml/ns/javaee}service-refGroup"/> * <element name="resource-ref" type="{http://java.sun.com/xml/ns/javaee}resource-refType" maxOccurs="unbounded" minOccurs="0"/> * <element name="resource-env-ref" type="{http://java.sun.com/xml/ns/javaee}resource-env-refType" maxOccurs="unbounded" minOccurs="0"/> * <element name="message-destination-ref" type="{http://java.sun.com/xml/ns/javaee}message-destination-refType" maxOccurs="unbounded" minOccurs="0"/> * <element name="persistence-unit-ref" type="{http://java.sun.com/xml/ns/javaee}persistence-unit-refType" maxOccurs="unbounded" minOccurs="0"/> * <element name="post-construct" type="{http://java.sun.com/xml/ns/javaee}lifecycle-callbackType" maxOccurs="unbounded" minOccurs="0"/> * <element name="pre-destroy" type="{http://java.sun.com/xml/ns/javaee}lifecycle-callbackType" maxOccurs="unbounded" minOccurs="0"/> * <element name="callback-handler" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType" minOccurs="0"/> * <element name="message-destination" type="{http://java.sun.com/xml/ns/javaee}message-destinationType" maxOccurs="unbounded" minOccurs="0"/> * <element name="data-source" type="{http://java.sun.com/xml/ns/javaee}data-sourceType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="version" use="required" type="{http://java.sun.com/xml/ns/javaee}dewey-versionType" fixed="6" /> * <attribute name="metadata-complete" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> * </restriction> * </complexContent> * </complexType> * </pre> */ @XmlRootElement(name = "application-client") @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "application-clientType", propOrder = { "moduleName", "descriptions", "displayNames", "icon", "envEntry", "ejbRef", "ejbLocalRef", "serviceRef", "resourceRef", "resourceEnvRef", "messageDestinationRef", "persistenceContextRef", "persistenceUnitRef", "postConstruct", "preDestroy", "callbackHandler", "messageDestination", "dataSource", "jmsConnectionFactories", "jmsDestinations" }) public class ApplicationClient implements JndiConsumer, Lifecycle, NamedModule { @XmlElement(name = "module-name", required = true) protected String moduleName; @XmlTransient protected TextMap description = new TextMap(); @XmlTransient protected TextMap displayName = new TextMap(); @XmlElement(name = "icon", required = true) protected LocalCollection<Icon> icon = new LocalCollection<Icon>(); @XmlElement(name = "env-entry", required = true) protected KeyedCollection<String, EnvEntry> envEntry; @XmlElement(name = "ejb-ref", required = true) protected KeyedCollection<String, EjbRef> ejbRef; @XmlElement(name = "ejb-local-ref", required = true) protected KeyedCollection<String, EjbLocalRef> ejbLocalRef; @XmlElement(name = "service-ref", required = true) protected KeyedCollection<String, ServiceRef> serviceRef; @XmlElement(name = "resource-ref", required = true) protected KeyedCollection<String, ResourceRef> resourceRef; @XmlElement(name = "resource-env-ref", required = true) protected KeyedCollection<String, ResourceEnvRef> resourceEnvRef; @XmlElement(name = "message-destination-ref", required = true) protected KeyedCollection<String, MessageDestinationRef> messageDestinationRef; @XmlElement(name = "persistence-context-ref", required = true) protected KeyedCollection<String, PersistenceContextRef> persistenceContextRef; @XmlElement(name = "persistence-unit-ref", required = true) protected KeyedCollection<String, PersistenceUnitRef> persistenceUnitRef; @XmlElement(name = "post-construct", required = true) protected List<LifecycleCallback> postConstruct; @XmlElement(name = "pre-destroy", required = true) protected List<LifecycleCallback> preDestroy; @XmlElement(name = "callback-handler") protected String callbackHandler; @XmlElement(name = "message-destination", required = true) protected KeyedCollection<String, MessageDestination> messageDestination; @XmlElement(name = "data-source") protected KeyedCollection<String, DataSource> dataSource; @XmlElement(name = "jms-connection-factory", required = true) protected KeyedCollection<String, JMSConnectionFactory> jmsConnectionFactories; @XmlElement(name = "jms-destination") protected KeyedCollection<String, JMSDestination> jmsDestinations; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID protected String id; @XmlAttribute(name = "metadata-complete") protected Boolean metadataComplete; @XmlAttribute(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String version; @XmlTransient protected String mainClass; public ApplicationClient() { } public String getJndiConsumerName() { if (mainClass == null) { return null; } return mainClass.replaceAll(".*\\.", ""); } public String getModuleName() { return moduleName; } public void setModuleName(final String moduleName) { this.moduleName = moduleName; } @XmlElement(name = "description", required = true) public Text[] getDescriptions() { return description.toArray(); } public void setDescriptions(final Text[] text) { description.set(text); } public String getDescription() { return description.get(); } @XmlElement(name = "display-name", required = true) public Text[] getDisplayNames() { return displayName.toArray(); } public void setDisplayNames(final Text[] text) { displayName.set(text); } public String getDisplayName() { return displayName.get(); } public Collection<Icon> getIcons() { if (icon == null) { icon = new LocalCollection<Icon>(); } return icon; } public Map<String, Icon> getIconMap() { if (icon == null) { icon = new LocalCollection<Icon>(); } return icon.toMap(); } public Icon getIcon() { return icon.getLocal(); } public Collection<EnvEntry> getEnvEntry() { if (envEntry == null) { envEntry = new KeyedCollection<String, EnvEntry>(); } return this.envEntry; } public Map<String, EnvEntry> getEnvEntryMap() { if (envEntry == null) { envEntry = new KeyedCollection<String, EnvEntry>(); } return this.envEntry.toMap(); } public Collection<EjbRef> getEjbRef() { if (ejbRef == null) { ejbRef = new KeyedCollection<String, EjbRef>(); } return this.ejbRef; } public Map<String, EjbRef> getEjbRefMap() { if (ejbRef == null) { ejbRef = new KeyedCollection<String, EjbRef>(); } return this.ejbRef.toMap(); } public Collection<EjbLocalRef> getEjbLocalRef() { if (ejbLocalRef == null) { ejbLocalRef = new KeyedCollection<String, EjbLocalRef>(); } return this.ejbLocalRef; } public Map<String, EjbLocalRef> getEjbLocalRefMap() { if (ejbLocalRef == null) { ejbLocalRef = new KeyedCollection<String, EjbLocalRef>(); } return this.ejbLocalRef.toMap(); } public Collection<ServiceRef> getServiceRef() { if (serviceRef == null) { serviceRef = new KeyedCollection<String, ServiceRef>(); } return this.serviceRef; } public Map<String, ServiceRef> getServiceRefMap() { if (serviceRef == null) { serviceRef = new KeyedCollection<String, ServiceRef>(); } return this.serviceRef.toMap(); } public Collection<ResourceRef> getResourceRef() { if (resourceRef == null) { resourceRef = new KeyedCollection<String, ResourceRef>(); } return this.resourceRef; } public Map<String, ResourceRef> getResourceRefMap() { if (resourceRef == null) { resourceRef = new KeyedCollection<String, ResourceRef>(); } return this.resourceRef.toMap(); } public Collection<ResourceEnvRef> getResourceEnvRef() { if (resourceEnvRef == null) { resourceEnvRef = new KeyedCollection<String, ResourceEnvRef>(); } return this.resourceEnvRef; } public Map<String, ResourceEnvRef> getResourceEnvRefMap() { if (resourceEnvRef == null) { resourceEnvRef = new KeyedCollection<String, ResourceEnvRef>(); } return this.resourceEnvRef.toMap(); } public Collection<MessageDestinationRef> getMessageDestinationRef() { if (messageDestinationRef == null) { messageDestinationRef = new KeyedCollection<String, MessageDestinationRef>(); } return this.messageDestinationRef; } public Map<String, MessageDestinationRef> getMessageDestinationRefMap() { if (messageDestinationRef == null) { messageDestinationRef = new KeyedCollection<String, MessageDestinationRef>(); } return this.messageDestinationRef.toMap(); } public Collection<PersistenceContextRef> getPersistenceContextRef() { if (persistenceContextRef == null) { persistenceContextRef = new KeyedCollection<String, PersistenceContextRef>(); } return this.persistenceContextRef; } public Map<String, PersistenceContextRef> getPersistenceContextRefMap() { if (persistenceContextRef == null) { persistenceContextRef = new KeyedCollection<String, PersistenceContextRef>(); } return this.persistenceContextRef.toMap(); } public Collection<PersistenceUnitRef> getPersistenceUnitRef() { if (persistenceUnitRef == null) { persistenceUnitRef = new KeyedCollection<String, PersistenceUnitRef>(); } return this.persistenceUnitRef; } public Map<String, PersistenceUnitRef> getPersistenceUnitRefMap() { if (persistenceUnitRef == null) { persistenceUnitRef = new KeyedCollection<String, PersistenceUnitRef>(); } return this.persistenceUnitRef.toMap(); } public Collection<DataSource> getDataSource() { if (dataSource == null) { dataSource = new KeyedCollection<String, DataSource>(); } return this.dataSource; } public Map<String, DataSource> getDataSourceMap() { if (dataSource == null) { dataSource = new KeyedCollection<String, DataSource>(); } return this.dataSource.toMap(); } public List<LifecycleCallback> getPostConstruct() { if (postConstruct == null) { postConstruct = new ArrayList<LifecycleCallback>(); } return this.postConstruct; } public List<LifecycleCallback> getPreDestroy() { if (preDestroy == null) { preDestroy = new ArrayList<LifecycleCallback>(); } return this.preDestroy; } public void addPostConstruct(final String method) { assert mainClass != null : "Set the mainClass before calling this method"; getPostConstruct().add(new LifecycleCallback(mainClass, method)); } public void addPreDestroy(final String method) { assert mainClass != null : "Set the mainClass before calling this method"; getPreDestroy().add(new LifecycleCallback(mainClass, method)); } public String getCallbackHandler() { return callbackHandler; } public void setCallbackHandler(final String callbackHandler) { this.callbackHandler = callbackHandler; } public Collection<MessageDestination> getMessageDestination() { if (messageDestination == null) { messageDestination = new KeyedCollection<String, MessageDestination>(); } return this.messageDestination; } public String getId() { return id; } public void setId(final String value) { this.id = value; } public Boolean isMetadataComplete() { return metadataComplete != null && metadataComplete; } public void setMetadataComplete(final Boolean value) { this.metadataComplete = value; } public String getVersion() { if (version == null) { return "5"; } else { return version; } } public void setVersion(final String value) { this.version = value; } public String getMainClass() { return mainClass; } public void setMainClass(final String mainClass) { this.mainClass = mainClass; } @Override public Collection<JMSConnectionFactory> getJMSConnectionFactories() { return jmsConnectionFactories == null ? (jmsConnectionFactories = new KeyedCollection<>()) : jmsConnectionFactories; } @Override public Map<String, JMSConnectionFactory> getJMSConnectionFactoriesMap() { return KeyedCollection.class.cast(getJMSConnectionFactories()).toMap(); } @Override public Collection<JMSDestination> getJMSDestination() { return jmsDestinations == null ? (jmsDestinations = new KeyedCollection<>()) : jmsDestinations; } @Override public Map<String, JMSDestination> getJMSDestinationMap() { return KeyedCollection.class.cast(getJMSDestination()).toMap(); } }