Search in sources :

Example 31 with Icon$JAXB.readIcon

use of org.apache.openejb.jee.Icon$JAXB.readIcon in project tomee by apache.

the class SessionBean$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final SessionBean sessionBean, RuntimeContext context) throws Exception {
    if (sessionBean == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (!sessionBeanClasses.contains(sessionBean.getClass().getName())) {
        context.unexpectedSubclass(writer, sessionBean, SessionBean.class);
        return;
    }
    context.beforeMarshal(sessionBean, org.metatype.sxc.jaxb.LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = sessionBean.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(sessionBean, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ELEMENT: descriptions
    Text[] descriptions = null;
    try {
        descriptions = sessionBean.getDescriptions();
    } catch (final Exception e) {
        context.getterError(sessionBean, "descriptions", SessionBean.class, "getDescriptions", e);
    }
    if (descriptions != null) {
        for (final Text descriptionsItem : descriptions) {
            if (descriptionsItem != null) {
                writer.writeStartElement(prefix, "description", "http://java.sun.com/xml/ns/javaee");
                writeText(writer, descriptionsItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "descriptions");
            }
        }
    }
    // ELEMENT: displayNames
    Text[] displayNames = null;
    try {
        displayNames = sessionBean.getDisplayNames();
    } catch (final Exception e) {
        context.getterError(sessionBean, "displayNames", SessionBean.class, "getDisplayNames", e);
    }
    if (displayNames != null) {
        for (final Text displayNamesItem : displayNames) {
            if (displayNamesItem != null) {
                writer.writeStartElement(prefix, "display-name", "http://java.sun.com/xml/ns/javaee");
                writeText(writer, displayNamesItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "displayNames");
            }
        }
    }
    // ELEMENT: icon
    final LocalCollection<Icon> icon = sessionBean.icon;
    if (icon != null) {
        for (final Icon iconItem : icon) {
            if (iconItem != null) {
                writer.writeStartElement(prefix, "icon", "http://java.sun.com/xml/ns/javaee");
                writeIcon(writer, iconItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "icon");
            }
        }
    }
    // ELEMENT: ejbName
    final String ejbNameRaw = sessionBean.ejbName;
    String ejbName = null;
    try {
        ejbName = Adapters.collapsedStringAdapterAdapter.marshal(ejbNameRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(sessionBean, "ejbName", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (ejbName != null) {
        writer.writeStartElement(prefix, "ejb-name", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(ejbName);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(sessionBean, "ejbName");
    }
    // ELEMENT: mappedName
    final String mappedNameRaw = sessionBean.mappedName;
    String mappedName = null;
    try {
        mappedName = Adapters.collapsedStringAdapterAdapter.marshal(mappedNameRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(sessionBean, "mappedName", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (mappedName != null) {
        writer.writeStartElement(prefix, "mapped-name", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(mappedName);
        writer.writeEndElement();
    }
    // ELEMENT: home
    final String homeRaw = sessionBean.home;
    String home = null;
    try {
        home = Adapters.collapsedStringAdapterAdapter.marshal(homeRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(sessionBean, "home", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (home != null) {
        writer.writeStartElement(prefix, "home", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(home);
        writer.writeEndElement();
    }
    // ELEMENT: remote
    final String remoteRaw = sessionBean.remote;
    String remote = null;
    try {
        remote = Adapters.collapsedStringAdapterAdapter.marshal(remoteRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(sessionBean, "remote", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (remote != null) {
        writer.writeStartElement(prefix, "remote", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(remote);
        writer.writeEndElement();
    }
    // ELEMENT: localHome
    final String localHomeRaw = sessionBean.localHome;
    String localHome = null;
    try {
        localHome = Adapters.collapsedStringAdapterAdapter.marshal(localHomeRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(sessionBean, "localHome", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (localHome != null) {
        writer.writeStartElement(prefix, "local-home", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(localHome);
        writer.writeEndElement();
    }
    // ELEMENT: local
    final String localRaw = sessionBean.local;
    String local = null;
    try {
        local = Adapters.collapsedStringAdapterAdapter.marshal(localRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(sessionBean, "local", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (local != null) {
        writer.writeStartElement(prefix, "local", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(local);
        writer.writeEndElement();
    }
    // ELEMENT: businessLocal
    final LinkedHashSet<String> businessLocalRaw = sessionBean.businessLocal;
    if (businessLocalRaw != null) {
        for (final String businessLocalItem : businessLocalRaw) {
            String businessLocal = null;
            try {
                businessLocal = Adapters.collapsedStringAdapterAdapter.marshal(businessLocalItem);
            } catch (final Exception e) {
                context.xmlAdapterError(sessionBean, "businessLocal", CollapsedStringAdapter.class, LinkedHashSet.class, LinkedHashSet.class, e);
            }
            if (businessLocal != null) {
                writer.writeStartElement(prefix, "business-local", "http://java.sun.com/xml/ns/javaee");
                writer.writeCharacters(businessLocal);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: businessRemote
    final LinkedHashSet<String> businessRemoteRaw = sessionBean.businessRemote;
    if (businessRemoteRaw != null) {
        for (final String businessRemoteItem : businessRemoteRaw) {
            String businessRemote = null;
            try {
                businessRemote = Adapters.collapsedStringAdapterAdapter.marshal(businessRemoteItem);
            } catch (final Exception e) {
                context.xmlAdapterError(sessionBean, "businessRemote", CollapsedStringAdapter.class, LinkedHashSet.class, LinkedHashSet.class, e);
            }
            if (businessRemote != null) {
                writer.writeStartElement(prefix, "business-remote", "http://java.sun.com/xml/ns/javaee");
                writer.writeCharacters(businessRemote);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: localBean
    final Empty localBean = sessionBean.localBean;
    if (localBean != null) {
        writer.writeStartElement(prefix, "local-bean", "http://java.sun.com/xml/ns/javaee");
        writeEmpty(writer, localBean, context);
        writer.writeEndElement();
    }
    // ELEMENT: serviceEndpoint
    final String serviceEndpointRaw = sessionBean.serviceEndpoint;
    String serviceEndpoint = null;
    try {
        serviceEndpoint = Adapters.collapsedStringAdapterAdapter.marshal(serviceEndpointRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(sessionBean, "serviceEndpoint", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (serviceEndpoint != null) {
        writer.writeStartElement(prefix, "service-endpoint", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(serviceEndpoint);
        writer.writeEndElement();
    }
    // ELEMENT: ejbClass
    final String ejbClassRaw = sessionBean.ejbClass;
    String ejbClass = null;
    try {
        ejbClass = Adapters.collapsedStringAdapterAdapter.marshal(ejbClassRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(sessionBean, "ejbClass", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (ejbClass != null) {
        writer.writeStartElement(prefix, "ejb-class", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(ejbClass);
        writer.writeEndElement();
    }
    // ELEMENT: sessionType
    final SessionType sessionType = sessionBean.sessionType;
    if (sessionType != null) {
        writer.writeStartElement(prefix, "session-type", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(toStringSessionType(sessionBean, null, context, sessionType));
        writer.writeEndElement();
    }
    // ELEMENT: statefulTimeout
    final Timeout statefulTimeout = sessionBean.statefulTimeout;
    if (statefulTimeout != null) {
        writer.writeStartElement(prefix, "stateful-timeout", "http://java.sun.com/xml/ns/javaee");
        writeTimeout(writer, statefulTimeout, context);
        writer.writeEndElement();
    }
    // ELEMENT: timeoutMethod
    final NamedMethod timeoutMethod = sessionBean.timeoutMethod;
    if (timeoutMethod != null) {
        writer.writeStartElement(prefix, "timeout-method", "http://java.sun.com/xml/ns/javaee");
        writeNamedMethod(writer, timeoutMethod, context);
        writer.writeEndElement();
    }
    // ELEMENT: timer
    final List<Timer> timer = sessionBean.timer;
    if (timer != null) {
        for (final Timer timerItem : timer) {
            if (timerItem != null) {
                writer.writeStartElement(prefix, "timer", "http://java.sun.com/xml/ns/javaee");
                writeTimer(writer, timerItem, context);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: initOnStartup
    final Boolean initOnStartup = sessionBean.initOnStartup;
    if (initOnStartup != null) {
        writer.writeStartElement(prefix, "init-on-startup", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(Boolean.toString(initOnStartup));
        writer.writeEndElement();
    }
    // ELEMENT: concurrencyManagementType
    final ConcurrencyManagementType concurrencyManagementType = sessionBean.concurrencyManagementType;
    if (concurrencyManagementType != null) {
        writer.writeStartElement(prefix, "concurrency-management-type", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(toStringConcurrencyManagementType(sessionBean, null, context, concurrencyManagementType));
        writer.writeEndElement();
    }
    // ELEMENT: concurrentMethod
    final List<ConcurrentMethod> concurrentMethod = sessionBean.concurrentMethod;
    if (concurrentMethod != null) {
        for (final ConcurrentMethod concurrentMethodItem : concurrentMethod) {
            if (concurrentMethodItem != null) {
                writer.writeStartElement(prefix, "concurrent-method", "http://java.sun.com/xml/ns/javaee");
                writeConcurrentMethod(writer, concurrentMethodItem, context);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: dependsOn
    final List<String> dependsOnRaw = sessionBean.dependsOn;
    if (dependsOnRaw != null) {
        writer.writeStartElement(prefix, "depends-on", "http://java.sun.com/xml/ns/javaee");
        for (final String dependsOnItem : dependsOnRaw) {
            String dependsOn = null;
            try {
                dependsOn = Adapters.collapsedStringAdapterAdapter.marshal(dependsOnItem);
            } catch (final Exception e) {
                context.xmlAdapterError(sessionBean, "dependsOn", CollapsedStringAdapter.class, List.class, List.class, e);
            }
            if (dependsOn != null) {
                writer.writeStartElement(prefix, "ejb-name", "http://java.sun.com/xml/ns/javaee");
                writer.writeCharacters(dependsOn);
                writer.writeEndElement();
            }
        }
        writer.writeEndElement();
    }
    // ELEMENT: initMethod
    final List<InitMethod> initMethod = sessionBean.initMethod;
    if (initMethod != null) {
        for (final InitMethod initMethodItem : initMethod) {
            if (initMethodItem != null) {
                writer.writeStartElement(prefix, "init-method", "http://java.sun.com/xml/ns/javaee");
                writeInitMethod(writer, initMethodItem, context);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: removeMethod
    final List<RemoveMethod> removeMethod = sessionBean.removeMethod;
    if (removeMethod != null) {
        for (final RemoveMethod removeMethodItem : removeMethod) {
            if (removeMethodItem != null) {
                writer.writeStartElement(prefix, "remove-method", "http://java.sun.com/xml/ns/javaee");
                writeRemoveMethod(writer, removeMethodItem, context);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: asyncMethod
    final List<AsyncMethod> asyncMethod = sessionBean.asyncMethod;
    if (asyncMethod != null) {
        for (final AsyncMethod asyncMethodItem : asyncMethod) {
            if (asyncMethodItem != null) {
                writer.writeStartElement(prefix, "async-method", "http://java.sun.com/xml/ns/javaee");
                writeAsyncMethod(writer, asyncMethodItem, context);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: transactionType
    final TransactionType transactionType = sessionBean.transactionType;
    if (transactionType != null) {
        writer.writeStartElement(prefix, "transaction-type", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(toStringTransactionType(sessionBean, null, context, transactionType));
        writer.writeEndElement();
    }
    // ELEMENT: afterBeginMethod
    NamedMethod afterBeginMethod = null;
    try {
        afterBeginMethod = sessionBean.getAfterBeginMethod();
    } catch (final Exception e) {
        context.getterError(sessionBean, "afterBeginMethod", SessionBean.class, "getAfterBeginMethod", e);
    }
    if (afterBeginMethod != null) {
        writer.writeStartElement(prefix, "after-begin-method", "http://java.sun.com/xml/ns/javaee");
        writeNamedMethod(writer, afterBeginMethod, context);
        writer.writeEndElement();
    }
    // ELEMENT: beforeCompletionMethod
    NamedMethod beforeCompletionMethod = null;
    try {
        beforeCompletionMethod = sessionBean.getBeforeCompletionMethod();
    } catch (final Exception e) {
        context.getterError(sessionBean, "beforeCompletionMethod", SessionBean.class, "getBeforeCompletionMethod", e);
    }
    if (beforeCompletionMethod != null) {
        writer.writeStartElement(prefix, "before-completion-method", "http://java.sun.com/xml/ns/javaee");
        writeNamedMethod(writer, beforeCompletionMethod, context);
        writer.writeEndElement();
    }
    // ELEMENT: afterCompletionMethod
    NamedMethod afterCompletionMethod = null;
    try {
        afterCompletionMethod = sessionBean.getAfterCompletionMethod();
    } catch (final Exception e) {
        context.getterError(sessionBean, "afterCompletionMethod", SessionBean.class, "getAfterCompletionMethod", e);
    }
    if (afterCompletionMethod != null) {
        writer.writeStartElement(prefix, "after-completion-method", "http://java.sun.com/xml/ns/javaee");
        writeNamedMethod(writer, afterCompletionMethod, context);
        writer.writeEndElement();
    }
    // ELEMENT: aroundInvoke
    final List<AroundInvoke> aroundInvoke = sessionBean.aroundInvoke;
    if (aroundInvoke != null) {
        for (final AroundInvoke aroundInvokeItem : aroundInvoke) {
            if (aroundInvokeItem != null) {
                writer.writeStartElement(prefix, "around-invoke", "http://java.sun.com/xml/ns/javaee");
                writeAroundInvoke(writer, aroundInvokeItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "aroundInvoke");
            }
        }
    }
    // ELEMENT: aroundTimeout
    final List<AroundTimeout> aroundTimeout = sessionBean.aroundTimeout;
    if (aroundTimeout != null) {
        for (final AroundTimeout aroundTimeoutItem : aroundTimeout) {
            if (aroundTimeoutItem != null) {
                writer.writeStartElement(prefix, "around-timeout", "http://java.sun.com/xml/ns/javaee");
                writeAroundTimeout(writer, aroundTimeoutItem, context);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: envEntry
    final KeyedCollection<String, EnvEntry> envEntry = sessionBean.envEntry;
    if (envEntry != null) {
        for (final EnvEntry envEntryItem : envEntry) {
            if (envEntryItem != null) {
                writer.writeStartElement(prefix, "env-entry", "http://java.sun.com/xml/ns/javaee");
                writeEnvEntry(writer, envEntryItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "envEntry");
            }
        }
    }
    // ELEMENT: ejbRef
    final KeyedCollection<String, EjbRef> ejbRef = sessionBean.ejbRef;
    if (ejbRef != null) {
        for (final EjbRef ejbRefItem : ejbRef) {
            if (ejbRefItem != null) {
                writer.writeStartElement(prefix, "ejb-ref", "http://java.sun.com/xml/ns/javaee");
                writeEjbRef(writer, ejbRefItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "ejbRef");
            }
        }
    }
    // ELEMENT: ejbLocalRef
    final KeyedCollection<String, EjbLocalRef> ejbLocalRef = sessionBean.ejbLocalRef;
    if (ejbLocalRef != null) {
        for (final EjbLocalRef ejbLocalRefItem : ejbLocalRef) {
            if (ejbLocalRefItem != null) {
                writer.writeStartElement(prefix, "ejb-local-ref", "http://java.sun.com/xml/ns/javaee");
                writeEjbLocalRef(writer, ejbLocalRefItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "ejbLocalRef");
            }
        }
    }
    // ELEMENT: serviceRef
    final KeyedCollection<String, ServiceRef> serviceRef = sessionBean.serviceRef;
    if (serviceRef != null) {
        for (final ServiceRef serviceRefItem : serviceRef) {
            if (serviceRefItem != null) {
                writer.writeStartElement(prefix, "service-ref", "http://java.sun.com/xml/ns/javaee");
                writeServiceRef(writer, serviceRefItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "serviceRef");
            }
        }
    }
    // ELEMENT: resourceRef
    final KeyedCollection<String, ResourceRef> resourceRef = sessionBean.resourceRef;
    if (resourceRef != null) {
        for (final ResourceRef resourceRefItem : resourceRef) {
            if (resourceRefItem != null) {
                writer.writeStartElement(prefix, "resource-ref", "http://java.sun.com/xml/ns/javaee");
                writeResourceRef(writer, resourceRefItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "resourceRef");
            }
        }
    }
    // ELEMENT: resourceEnvRef
    final KeyedCollection<String, ResourceEnvRef> resourceEnvRef = sessionBean.resourceEnvRef;
    if (resourceEnvRef != null) {
        for (final ResourceEnvRef resourceEnvRefItem : resourceEnvRef) {
            if (resourceEnvRefItem != null) {
                writer.writeStartElement(prefix, "resource-env-ref", "http://java.sun.com/xml/ns/javaee");
                writeResourceEnvRef(writer, resourceEnvRefItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "resourceEnvRef");
            }
        }
    }
    // ELEMENT: messageDestinationRef
    final KeyedCollection<String, MessageDestinationRef> messageDestinationRef = sessionBean.messageDestinationRef;
    if (messageDestinationRef != null) {
        for (final MessageDestinationRef messageDestinationRefItem : messageDestinationRef) {
            if (messageDestinationRefItem != null) {
                writer.writeStartElement(prefix, "message-destination-ref", "http://java.sun.com/xml/ns/javaee");
                writeMessageDestinationRef(writer, messageDestinationRefItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "messageDestinationRef");
            }
        }
    }
    // ELEMENT: persistenceContextRef
    final KeyedCollection<String, PersistenceContextRef> persistenceContextRef = sessionBean.persistenceContextRef;
    if (persistenceContextRef != null) {
        for (final PersistenceContextRef persistenceContextRefItem : persistenceContextRef) {
            if (persistenceContextRefItem != null) {
                writer.writeStartElement(prefix, "persistence-context-ref", "http://java.sun.com/xml/ns/javaee");
                writePersistenceContextRef(writer, persistenceContextRefItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "persistenceContextRef");
            }
        }
    }
    // ELEMENT: persistenceUnitRef
    final KeyedCollection<String, PersistenceUnitRef> persistenceUnitRef = sessionBean.persistenceUnitRef;
    if (persistenceUnitRef != null) {
        for (final PersistenceUnitRef persistenceUnitRefItem : persistenceUnitRef) {
            if (persistenceUnitRefItem != null) {
                writer.writeStartElement(prefix, "persistence-unit-ref", "http://java.sun.com/xml/ns/javaee");
                writePersistenceUnitRef(writer, persistenceUnitRefItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "persistenceUnitRef");
            }
        }
    }
    // ELEMENT: postConstruct
    final List<org.apache.openejb.jee.LifecycleCallback> postConstruct = sessionBean.postConstruct;
    if (postConstruct != null) {
        for (final org.apache.openejb.jee.LifecycleCallback postConstructItem : postConstruct) {
            if (postConstructItem != null) {
                writer.writeStartElement(prefix, "post-construct", "http://java.sun.com/xml/ns/javaee");
                writeLifecycleCallback(writer, postConstructItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "postConstruct");
            }
        }
    }
    // ELEMENT: preDestroy
    final List<org.apache.openejb.jee.LifecycleCallback> preDestroy = sessionBean.preDestroy;
    if (preDestroy != null) {
        for (final org.apache.openejb.jee.LifecycleCallback preDestroyItem : preDestroy) {
            if (preDestroyItem != null) {
                writer.writeStartElement(prefix, "pre-destroy", "http://java.sun.com/xml/ns/javaee");
                writeLifecycleCallback(writer, preDestroyItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "preDestroy");
            }
        }
    }
    // ELEMENT: dataSource
    final KeyedCollection<String, DataSource> dataSource = sessionBean.dataSource;
    if (dataSource != null) {
        for (final DataSource dataSourceItem : dataSource) {
            if (dataSourceItem != null) {
                writer.writeStartElement(prefix, "data-source", "http://java.sun.com/xml/ns/javaee");
                writeDataSource(writer, dataSourceItem, context);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: postActivate
    final List<org.apache.openejb.jee.LifecycleCallback> postActivate = sessionBean.postActivate;
    if (postActivate != null) {
        for (final org.apache.openejb.jee.LifecycleCallback postActivateItem : postActivate) {
            if (postActivateItem != null) {
                writer.writeStartElement(prefix, "post-activate", "http://java.sun.com/xml/ns/javaee");
                writeLifecycleCallback(writer, postActivateItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "postActivate");
            }
        }
    }
    // ELEMENT: prePassivate
    final List<org.apache.openejb.jee.LifecycleCallback> prePassivate = sessionBean.prePassivate;
    if (prePassivate != null) {
        for (final org.apache.openejb.jee.LifecycleCallback prePassivateItem : prePassivate) {
            if (prePassivateItem != null) {
                writer.writeStartElement(prefix, "pre-passivate", "http://java.sun.com/xml/ns/javaee");
                writeLifecycleCallback(writer, prePassivateItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "prePassivate");
            }
        }
    }
    // ELEMENT: securityRoleRef
    final List<SecurityRoleRef> securityRoleRef = sessionBean.securityRoleRef;
    if (securityRoleRef != null) {
        for (final SecurityRoleRef securityRoleRefItem : securityRoleRef) {
            if (securityRoleRefItem != null) {
                writer.writeStartElement(prefix, "security-role-ref", "http://java.sun.com/xml/ns/javaee");
                writeSecurityRoleRef(writer, securityRoleRefItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(sessionBean, "securityRoleRef");
            }
        }
    }
    // ELEMENT: securityIdentity
    final SecurityIdentity securityIdentity = sessionBean.securityIdentity;
    if (securityIdentity != null) {
        writer.writeStartElement(prefix, "security-identity", "http://java.sun.com/xml/ns/javaee");
        writeSecurityIdentity(writer, securityIdentity, context);
        writer.writeEndElement();
    }
    context.afterMarshal(sessionBean, org.metatype.sxc.jaxb.LifecycleCallback.NONE);
}
Also used : LinkedHashSet(java.util.LinkedHashSet) InitMethod$JAXB.readInitMethod(org.apache.openejb.jee.InitMethod$JAXB.readInitMethod) InitMethod$JAXB.writeInitMethod(org.apache.openejb.jee.InitMethod$JAXB.writeInitMethod) AsyncMethod$JAXB.readAsyncMethod(org.apache.openejb.jee.AsyncMethod$JAXB.readAsyncMethod) AsyncMethod$JAXB.writeAsyncMethod(org.apache.openejb.jee.AsyncMethod$JAXB.writeAsyncMethod) SecurityRoleRef$JAXB.readSecurityRoleRef(org.apache.openejb.jee.SecurityRoleRef$JAXB.readSecurityRoleRef) SecurityRoleRef$JAXB.writeSecurityRoleRef(org.apache.openejb.jee.SecurityRoleRef$JAXB.writeSecurityRoleRef) List(java.util.List) ArrayList(java.util.ArrayList) ResourceEnvRef$JAXB.readResourceEnvRef(org.apache.openejb.jee.ResourceEnvRef$JAXB.readResourceEnvRef) ResourceEnvRef$JAXB.writeResourceEnvRef(org.apache.openejb.jee.ResourceEnvRef$JAXB.writeResourceEnvRef) Timeout$JAXB.readTimeout(org.apache.openejb.jee.Timeout$JAXB.readTimeout) AroundTimeout$JAXB.readAroundTimeout(org.apache.openejb.jee.AroundTimeout$JAXB.readAroundTimeout) Timeout$JAXB.writeTimeout(org.apache.openejb.jee.Timeout$JAXB.writeTimeout) AroundTimeout$JAXB.writeAroundTimeout(org.apache.openejb.jee.AroundTimeout$JAXB.writeAroundTimeout) DataSource$JAXB.writeDataSource(org.apache.openejb.jee.DataSource$JAXB.writeDataSource) DataSource$JAXB.readDataSource(org.apache.openejb.jee.DataSource$JAXB.readDataSource) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) ServiceRef$JAXB.readServiceRef(org.apache.openejb.jee.ServiceRef$JAXB.readServiceRef) ServiceRef$JAXB.writeServiceRef(org.apache.openejb.jee.ServiceRef$JAXB.writeServiceRef) SessionType$JAXB.parseSessionType(org.apache.openejb.jee.SessionType$JAXB.parseSessionType) SessionType$JAXB.toStringSessionType(org.apache.openejb.jee.SessionType$JAXB.toStringSessionType) TransactionType$JAXB.toStringTransactionType(org.apache.openejb.jee.TransactionType$JAXB.toStringTransactionType) TransactionType$JAXB.parseTransactionType(org.apache.openejb.jee.TransactionType$JAXB.parseTransactionType) ConcurrencyManagementType$JAXB.toStringConcurrencyManagementType(org.apache.openejb.jee.ConcurrencyManagementType$JAXB.toStringConcurrencyManagementType) ConcurrencyManagementType$JAXB.parseConcurrencyManagementType(org.apache.openejb.jee.ConcurrencyManagementType$JAXB.parseConcurrencyManagementType) PersistenceContextRef$JAXB.readPersistenceContextRef(org.apache.openejb.jee.PersistenceContextRef$JAXB.readPersistenceContextRef) PersistenceContextRef$JAXB.writePersistenceContextRef(org.apache.openejb.jee.PersistenceContextRef$JAXB.writePersistenceContextRef) NamedMethod$JAXB.readNamedMethod(org.apache.openejb.jee.NamedMethod$JAXB.readNamedMethod) NamedMethod$JAXB.writeNamedMethod(org.apache.openejb.jee.NamedMethod$JAXB.writeNamedMethod) MessageDestinationRef$JAXB.writeMessageDestinationRef(org.apache.openejb.jee.MessageDestinationRef$JAXB.writeMessageDestinationRef) MessageDestinationRef$JAXB.readMessageDestinationRef(org.apache.openejb.jee.MessageDestinationRef$JAXB.readMessageDestinationRef) Empty$JAXB.writeEmpty(org.apache.openejb.jee.Empty$JAXB.writeEmpty) Empty$JAXB.readEmpty(org.apache.openejb.jee.Empty$JAXB.readEmpty) EjbRef$JAXB.readEjbRef(org.apache.openejb.jee.EjbRef$JAXB.readEjbRef) EjbRef$JAXB.writeEjbRef(org.apache.openejb.jee.EjbRef$JAXB.writeEjbRef) ConcurrentMethod$JAXB.readConcurrentMethod(org.apache.openejb.jee.ConcurrentMethod$JAXB.readConcurrentMethod) ConcurrentMethod$JAXB.writeConcurrentMethod(org.apache.openejb.jee.ConcurrentMethod$JAXB.writeConcurrentMethod) AroundInvoke$JAXB.writeAroundInvoke(org.apache.openejb.jee.AroundInvoke$JAXB.writeAroundInvoke) AroundInvoke$JAXB.readAroundInvoke(org.apache.openejb.jee.AroundInvoke$JAXB.readAroundInvoke) PersistenceUnitRef$JAXB.readPersistenceUnitRef(org.apache.openejb.jee.PersistenceUnitRef$JAXB.readPersistenceUnitRef) PersistenceUnitRef$JAXB.writePersistenceUnitRef(org.apache.openejb.jee.PersistenceUnitRef$JAXB.writePersistenceUnitRef) EnvEntry$JAXB.readEnvEntry(org.apache.openejb.jee.EnvEntry$JAXB.readEnvEntry) EnvEntry$JAXB.writeEnvEntry(org.apache.openejb.jee.EnvEntry$JAXB.writeEnvEntry) EjbLocalRef$JAXB.writeEjbLocalRef(org.apache.openejb.jee.EjbLocalRef$JAXB.writeEjbLocalRef) EjbLocalRef$JAXB.readEjbLocalRef(org.apache.openejb.jee.EjbLocalRef$JAXB.readEjbLocalRef) CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) AroundTimeout$JAXB.readAroundTimeout(org.apache.openejb.jee.AroundTimeout$JAXB.readAroundTimeout) AroundTimeout$JAXB.writeAroundTimeout(org.apache.openejb.jee.AroundTimeout$JAXB.writeAroundTimeout) SecurityIdentity$JAXB.readSecurityIdentity(org.apache.openejb.jee.SecurityIdentity$JAXB.readSecurityIdentity) SecurityIdentity$JAXB.writeSecurityIdentity(org.apache.openejb.jee.SecurityIdentity$JAXB.writeSecurityIdentity) Timer$JAXB.writeTimer(org.apache.openejb.jee.Timer$JAXB.writeTimer) Timer$JAXB.readTimer(org.apache.openejb.jee.Timer$JAXB.readTimer) RemoveMethod$JAXB.readRemoveMethod(org.apache.openejb.jee.RemoveMethod$JAXB.readRemoveMethod) RemoveMethod$JAXB.writeRemoveMethod(org.apache.openejb.jee.RemoveMethod$JAXB.writeRemoveMethod) ResourceRef$JAXB.readResourceRef(org.apache.openejb.jee.ResourceRef$JAXB.readResourceRef) ResourceRef$JAXB.writeResourceRef(org.apache.openejb.jee.ResourceRef$JAXB.writeResourceRef) LifecycleCallback$JAXB.writeLifecycleCallback(org.apache.openejb.jee.LifecycleCallback$JAXB.writeLifecycleCallback) LifecycleCallback$JAXB.readLifecycleCallback(org.apache.openejb.jee.LifecycleCallback$JAXB.readLifecycleCallback)

Example 32 with Icon$JAXB.readIcon

use of org.apache.openejb.jee.Icon$JAXB.readIcon in project tomee by apache.

the class Tag$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final Tag tag, RuntimeContext context) throws Exception {
    if (tag == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (Tag.class != tag.getClass()) {
        context.unexpectedSubclass(writer, tag, Tag.class);
        return;
    }
    context.beforeMarshal(tag, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = tag.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(tag, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ELEMENT: descriptions
    Text[] descriptions = null;
    try {
        descriptions = tag.getDescriptions();
    } catch (final Exception e) {
        context.getterError(tag, "descriptions", Tag.class, "getDescriptions", e);
    }
    if (descriptions != null) {
        for (final Text descriptionsItem : descriptions) {
            if (descriptionsItem != null) {
                writer.writeStartElement(prefix, "description", "http://java.sun.com/xml/ns/javaee");
                writeText(writer, descriptionsItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(tag, "descriptions");
            }
        }
    }
    // ELEMENT: displayNames
    Text[] displayNames = null;
    try {
        displayNames = tag.getDisplayNames();
    } catch (final Exception e) {
        context.getterError(tag, "displayNames", Tag.class, "getDisplayNames", e);
    }
    if (displayNames != null) {
        for (final Text displayNamesItem : displayNames) {
            if (displayNamesItem != null) {
                writer.writeStartElement(prefix, "display-name", "http://java.sun.com/xml/ns/javaee");
                writeText(writer, displayNamesItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(tag, "displayNames");
            }
        }
    }
    // ELEMENT: icon
    final LocalCollection<Icon> icon = tag.icon;
    if (icon != null) {
        for (final Icon iconItem : icon) {
            if (iconItem != null) {
                writer.writeStartElement(prefix, "icon", "http://java.sun.com/xml/ns/javaee");
                writeIcon(writer, iconItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(tag, "icon");
            }
        }
    }
    // ELEMENT: name
    final String nameRaw = tag.name;
    String name = null;
    try {
        name = Adapters.collapsedStringAdapterAdapter.marshal(nameRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(tag, "name", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (name != null) {
        writer.writeStartElement(prefix, "name", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(name);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(tag, "name");
    }
    // ELEMENT: tagClass
    final String tagClassRaw = tag.tagClass;
    String tagClass = null;
    try {
        tagClass = Adapters.collapsedStringAdapterAdapter.marshal(tagClassRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(tag, "tagClass", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (tagClass != null) {
        writer.writeStartElement(prefix, "tag-class", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(tagClass);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(tag, "tagClass");
    }
    // ELEMENT: teiClass
    final String teiClassRaw = tag.teiClass;
    String teiClass = null;
    try {
        teiClass = Adapters.collapsedStringAdapterAdapter.marshal(teiClassRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(tag, "teiClass", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (teiClass != null) {
        writer.writeStartElement(prefix, "tei-class", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(teiClass);
        writer.writeEndElement();
    }
    // ELEMENT: bodyContent
    final BodyContent bodyContent = tag.bodyContent;
    if (bodyContent != null) {
        writer.writeStartElement(prefix, "body-content", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(toStringBodyContent(tag, null, context, bodyContent));
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(tag, "bodyContent");
    }
    // ELEMENT: variable
    final List<Variable> variable = tag.variable;
    if (variable != null) {
        for (final Variable variableItem : variable) {
            writer.writeStartElement(prefix, "variable", "http://java.sun.com/xml/ns/javaee");
            if (variableItem != null) {
                writeVariable(writer, variableItem, context);
            } else {
                writer.writeXsiNil();
            }
            writer.writeEndElement();
        }
    }
    // ELEMENT: attribute
    final List<TldAttribute> attribute = tag.attribute;
    if (attribute != null) {
        for (final TldAttribute attributeItem : attribute) {
            writer.writeStartElement(prefix, "attribute", "http://java.sun.com/xml/ns/javaee");
            if (attributeItem != null) {
                writeTldAttribute(writer, attributeItem, context);
            } else {
                writer.writeXsiNil();
            }
            writer.writeEndElement();
        }
    }
    // ELEMENT: dynamicAttributes
    final String dynamicAttributesRaw = tag.dynamicAttributes;
    String dynamicAttributes = null;
    try {
        dynamicAttributes = Adapters.collapsedStringAdapterAdapter.marshal(dynamicAttributesRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(tag, "dynamicAttributes", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (dynamicAttributes != null) {
        writer.writeStartElement(prefix, "dynamic-attributes", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(dynamicAttributes);
        writer.writeEndElement();
    }
    // ELEMENT: example
    final String exampleRaw = tag.example;
    String example = null;
    try {
        example = Adapters.collapsedStringAdapterAdapter.marshal(exampleRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(tag, "example", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (example != null) {
        writer.writeStartElement(prefix, "example", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(example);
        writer.writeEndElement();
    }
    // ELEMENT: tagExtension
    final List<TldExtension> tagExtension = tag.tagExtension;
    if (tagExtension != null) {
        for (final TldExtension tagExtensionItem : tagExtension) {
            if (tagExtensionItem != null) {
                writer.writeStartElement(prefix, "tag-extension", "http://java.sun.com/xml/ns/javaee");
                writeTldExtension(writer, tagExtensionItem, context);
                writer.writeEndElement();
            }
        }
    }
    context.afterMarshal(tag, LifecycleCallback.NONE);
}
Also used : Variable$JAXB.readVariable(org.apache.openejb.jee.Variable$JAXB.readVariable) Variable$JAXB.writeVariable(org.apache.openejb.jee.Variable$JAXB.writeVariable) CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) BodyContent$JAXB.parseBodyContent(org.apache.openejb.jee.BodyContent$JAXB.parseBodyContent) BodyContent$JAXB.toStringBodyContent(org.apache.openejb.jee.BodyContent$JAXB.toStringBodyContent) TldExtension$JAXB.readTldExtension(org.apache.openejb.jee.TldExtension$JAXB.readTldExtension) TldExtension$JAXB.writeTldExtension(org.apache.openejb.jee.TldExtension$JAXB.writeTldExtension) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) TldAttribute$JAXB.readTldAttribute(org.apache.openejb.jee.TldAttribute$JAXB.readTldAttribute) TldAttribute$JAXB.writeTldAttribute(org.apache.openejb.jee.TldAttribute$JAXB.writeTldAttribute)

Example 33 with Icon$JAXB.readIcon

use of org.apache.openejb.jee.Icon$JAXB.readIcon in project tomee by apache.

the class TagFile$JAXB method _read.

public static final TagFile _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final TagFile tagFile = new TagFile();
    context.beforeUnmarshal(tagFile, LifecycleCallback.NONE);
    ArrayList<Text> descriptions = null;
    ArrayList<Text> displayNames = null;
    LocalCollection<Icon> icon = null;
    List<TldExtension> tagExtension = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("tagFileType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, TagFile.class);
        }
    }
    // Read attributes
    for (final Attribute attribute : reader.getAttributes()) {
        if (("id" == attribute.getLocalName()) && (("" == attribute.getNamespace()) || (attribute.getNamespace() == null))) {
            // ATTRIBUTE: id
            final String id = Adapters.collapsedStringAdapterAdapter.unmarshal(attribute.getValue());
            context.addXmlId(reader, id, tagFile);
            tagFile.id = id;
        } else if (XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI != attribute.getNamespace()) {
            context.unexpectedAttribute(attribute, new QName("", "id"));
        }
    }
    // Read elements
    for (final XoXMLStreamReader elementReader : reader.getChildElements()) {
        if (("description" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: descriptions
            final Text descriptionsItem = readText(elementReader, context);
            if (descriptions == null) {
                descriptions = new ArrayList<Text>();
            }
            descriptions.add(descriptionsItem);
        } else if (("display-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: displayNames
            final Text displayNamesItem = readText(elementReader, context);
            if (displayNames == null) {
                displayNames = new ArrayList<Text>();
            }
            displayNames.add(displayNamesItem);
        } else if (("icon" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: icon
            final Icon iconItem = readIcon(elementReader, context);
            if (icon == null) {
                icon = tagFile.icon;
                if (icon != null) {
                    icon.clear();
                } else {
                    icon = new LocalCollection<Icon>();
                }
            }
            icon.add(iconItem);
        } else if (("name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: name
            final String nameRaw = elementReader.getElementAsString();
            final String name;
            try {
                name = Adapters.collapsedStringAdapterAdapter.unmarshal(nameRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            tagFile.name = name;
        } else if (("path" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: path
            final String pathRaw = elementReader.getElementAsString();
            final String path;
            try {
                path = Adapters.collapsedStringAdapterAdapter.unmarshal(pathRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            tagFile.path = path;
        } else if (("example" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: example
            final String exampleRaw = elementReader.getElementAsString();
            final String example;
            try {
                example = Adapters.collapsedStringAdapterAdapter.unmarshal(exampleRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            tagFile.example = example;
        } else if (("tag-extension" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: tagExtension
            final TldExtension tagExtensionItem = readTldExtension(elementReader, context);
            if (tagExtension == null) {
                tagExtension = tagFile.tagExtension;
                if (tagExtension != null) {
                    tagExtension.clear();
                } else {
                    tagExtension = new ArrayList<TldExtension>();
                }
            }
            tagExtension.add(tagExtensionItem);
        } else {
            context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "description"), new QName("http://java.sun.com/xml/ns/javaee", "display-name"), new QName("http://java.sun.com/xml/ns/javaee", "icon"), new QName("http://java.sun.com/xml/ns/javaee", "name"), new QName("http://java.sun.com/xml/ns/javaee", "path"), new QName("http://java.sun.com/xml/ns/javaee", "example"), new QName("http://java.sun.com/xml/ns/javaee", "tag-extension"));
        }
    }
    if (descriptions != null) {
        try {
            tagFile.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
        } catch (final Exception e) {
            context.setterError(reader, TagFile.class, "setDescriptions", Text[].class, e);
        }
    }
    if (displayNames != null) {
        try {
            tagFile.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
        } catch (final Exception e) {
            context.setterError(reader, TagFile.class, "setDisplayNames", Text[].class, e);
        }
    }
    if (icon != null) {
        tagFile.icon = icon;
    }
    if (tagExtension != null) {
        tagFile.tagExtension = tagExtension;
    }
    context.afterUnmarshal(tagFile, LifecycleCallback.NONE);
    return tagFile;
}
Also used : CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) Attribute(org.metatype.sxc.util.Attribute) QName(javax.xml.namespace.QName) ArrayList(java.util.ArrayList) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) TldExtension$JAXB.readTldExtension(org.apache.openejb.jee.TldExtension$JAXB.readTldExtension) TldExtension$JAXB.writeTldExtension(org.apache.openejb.jee.TldExtension$JAXB.writeTldExtension) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader)

Example 34 with Icon$JAXB.readIcon

use of org.apache.openejb.jee.Icon$JAXB.readIcon in project tomee by apache.

the class TldTaglib$JAXB method _read.

public static final TldTaglib _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
    // Check for xsi:nil
    if (reader.isXsiNil()) {
        return null;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final TldTaglib tldTaglib = new TldTaglib();
    context.beforeUnmarshal(tldTaglib, LifecycleCallback.NONE);
    ArrayList<Text> descriptions = null;
    ArrayList<Text> displayNames = null;
    LocalCollection<Icon> icon = null;
    List<Listener> listener = null;
    List<Tag> tag = null;
    List<TagFile> tagFile = null;
    List<Function> function = null;
    List<TldExtension> taglibExtension = null;
    // Check xsi:type
    final QName xsiType = reader.getXsiType();
    if (xsiType != null) {
        if (("tldTaglibType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
            return context.unexpectedXsiType(reader, TldTaglib.class);
        }
    }
    // Read attributes
    for (final Attribute attribute : reader.getAttributes()) {
        if (("id" == attribute.getLocalName()) && (("" == attribute.getNamespace()) || (attribute.getNamespace() == null))) {
            // ATTRIBUTE: id
            final String id = Adapters.collapsedStringAdapterAdapter.unmarshal(attribute.getValue());
            context.addXmlId(reader, id, tldTaglib);
            tldTaglib.id = id;
        } else if (("version" == attribute.getLocalName()) && (("" == attribute.getNamespace()) || (attribute.getNamespace() == null))) {
            // ATTRIBUTE: version
            tldTaglib.version = Adapters.collapsedStringAdapterAdapter.unmarshal(attribute.getValue());
        } else if (XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI != attribute.getNamespace()) {
            context.unexpectedAttribute(attribute, new QName("", "id"), new QName("", "version"));
        }
    }
    // Read elements
    for (final XoXMLStreamReader elementReader : reader.getChildElements()) {
        if (("description" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: descriptions
            final Text descriptionsItem = readText(elementReader, context);
            if (descriptions == null) {
                descriptions = new ArrayList<Text>();
            }
            descriptions.add(descriptionsItem);
        } else if (("display-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: displayNames
            final Text displayNamesItem = readText(elementReader, context);
            if (displayNames == null) {
                displayNames = new ArrayList<Text>();
            }
            displayNames.add(displayNamesItem);
        } else if (("icon" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: icon
            final Icon iconItem = readIcon(elementReader, context);
            if (icon == null) {
                icon = tldTaglib.icon;
                if (icon != null) {
                    icon.clear();
                } else {
                    icon = new LocalCollection<Icon>();
                }
            }
            icon.add(iconItem);
        } else if (("tlib-version" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: tlibVersion
            final String tlibVersionRaw = elementReader.getElementAsString();
            final String tlibVersion;
            try {
                tlibVersion = Adapters.collapsedStringAdapterAdapter.unmarshal(tlibVersionRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            tldTaglib.tlibVersion = tlibVersion;
        } else if (("jsp-version" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: jspVersion
            final String jspVersionRaw = elementReader.getElementAsString();
            final String jspVersion;
            try {
                jspVersion = Adapters.collapsedStringAdapterAdapter.unmarshal(jspVersionRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            tldTaglib.jspVersion = jspVersion;
        } else if (("short-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: shortName
            final String shortNameRaw = elementReader.getElementAsString();
            final String shortName;
            try {
                shortName = Adapters.collapsedStringAdapterAdapter.unmarshal(shortNameRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            tldTaglib.shortName = shortName;
        } else if (("uri" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: uri
            final String uriRaw = elementReader.getElementAsString();
            final String uri;
            try {
                uri = Adapters.collapsedStringAdapterAdapter.unmarshal(uriRaw);
            } catch (final Exception e) {
                context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
                continue;
            }
            tldTaglib.uri = uri;
        } else if (("validator" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: validator
            final Validator validator = readValidator(elementReader, context);
            tldTaglib.validator = validator;
        } else if (("listener" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: listener
            final Listener listenerItem = readListener(elementReader, context);
            if (listener == null) {
                listener = tldTaglib.listener;
                if (listener != null) {
                    listener.clear();
                } else {
                    listener = new ArrayList<Listener>();
                }
            }
            listener.add(listenerItem);
        } else if (("tag" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: tag
            final Tag tagItem = readTag(elementReader, context);
            if (tag == null) {
                tag = tldTaglib.tag;
                if (tag != null) {
                    tag.clear();
                } else {
                    tag = new ArrayList<Tag>();
                }
            }
            tag.add(tagItem);
        } else if (("tag-file" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: tagFile
            final TagFile tagFileItem = readTagFile(elementReader, context);
            if (tagFile == null) {
                tagFile = tldTaglib.tagFile;
                if (tagFile != null) {
                    tagFile.clear();
                } else {
                    tagFile = new ArrayList<TagFile>();
                }
            }
            tagFile.add(tagFileItem);
        } else if (("function" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: function
            final Function functionItem = readFunction(elementReader, context);
            if (function == null) {
                function = tldTaglib.function;
                if (function != null) {
                    function.clear();
                } else {
                    function = new ArrayList<Function>();
                }
            }
            function.add(functionItem);
        } else if (("taglib-extension" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
            // ELEMENT: taglibExtension
            final TldExtension taglibExtensionItem = readTldExtension(elementReader, context);
            if (taglibExtension == null) {
                taglibExtension = tldTaglib.taglibExtension;
                if (taglibExtension != null) {
                    taglibExtension.clear();
                } else {
                    taglibExtension = new ArrayList<TldExtension>();
                }
            }
            taglibExtension.add(taglibExtensionItem);
        }
    /* else { // we are not the one responsible of the failure so don't fail
                context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "description"), new QName("http://java.sun.com/xml/ns/javaee", "display-name"), new QName("http://java.sun.com/xml/ns/javaee", "icon"), new QName("http://java.sun.com/xml/ns/javaee", "tlib-version"), new QName("http://java.sun.com/xml/ns/javaee", "jsp-version"), new QName("http://java.sun.com/xml/ns/javaee", "short-name"), new QName("http://java.sun.com/xml/ns/javaee", "uri"), new QName("http://java.sun.com/xml/ns/javaee", "validator"), new QName("http://java.sun.com/xml/ns/javaee", "listener"), new QName("http://java.sun.com/xml/ns/javaee", "tag"), new QName("http://java.sun.com/xml/ns/javaee", "tag-file"), new QName("http://java.sun.com/xml/ns/javaee", "function"), new QName("http://java.sun.com/xml/ns/javaee", "taglib-extension"));
            }*/
    }
    if (descriptions != null) {
        try {
            tldTaglib.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
        } catch (final Exception e) {
            context.setterError(reader, TldTaglib.class, "setDescriptions", Text[].class, e);
        }
    }
    if (displayNames != null) {
        try {
            tldTaglib.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
        } catch (final Exception e) {
            context.setterError(reader, TldTaglib.class, "setDisplayNames", Text[].class, e);
        }
    }
    if (icon != null) {
        tldTaglib.icon = icon;
    }
    if (listener != null) {
        tldTaglib.listener = listener;
    }
    if (tag != null) {
        tldTaglib.tag = tag;
    }
    if (tagFile != null) {
        tldTaglib.tagFile = tagFile;
    }
    if (function != null) {
        tldTaglib.function = function;
    }
    if (taglibExtension != null) {
        tldTaglib.taglibExtension = taglibExtension;
    }
    context.afterUnmarshal(tldTaglib, LifecycleCallback.NONE);
    return tldTaglib;
}
Also used : Listener$JAXB.readListener(org.apache.openejb.jee.Listener$JAXB.readListener) Listener$JAXB.writeListener(org.apache.openejb.jee.Listener$JAXB.writeListener) Attribute(org.metatype.sxc.util.Attribute) TagFile$JAXB.readTagFile(org.apache.openejb.jee.TagFile$JAXB.readTagFile) TagFile$JAXB.writeTagFile(org.apache.openejb.jee.TagFile$JAXB.writeTagFile) ArrayList(java.util.ArrayList) Function$JAXB.readFunction(org.apache.openejb.jee.Function$JAXB.readFunction) Function$JAXB.writeFunction(org.apache.openejb.jee.Function$JAXB.writeFunction) XoXMLStreamReader(org.metatype.sxc.util.XoXMLStreamReader) CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) QName(javax.xml.namespace.QName) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) TldExtension$JAXB.readTldExtension(org.apache.openejb.jee.TldExtension$JAXB.readTldExtension) TldExtension$JAXB.writeTldExtension(org.apache.openejb.jee.TldExtension$JAXB.writeTldExtension) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) Tag$JAXB.readTag(org.apache.openejb.jee.Tag$JAXB.readTag) Tag$JAXB.writeTag(org.apache.openejb.jee.Tag$JAXB.writeTag) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) Validator$JAXB.readValidator(org.apache.openejb.jee.Validator$JAXB.readValidator) Validator$JAXB.writeValidator(org.apache.openejb.jee.Validator$JAXB.writeValidator)

Example 35 with Icon$JAXB.readIcon

use of org.apache.openejb.jee.Icon$JAXB.readIcon in project tomee by apache.

the class TldTaglib$JAXB method _write.

public static final void _write(final XoXMLStreamWriter writer, final TldTaglib tldTaglib, RuntimeContext context) throws Exception {
    if (tldTaglib == null) {
        writer.writeXsiNil();
        return;
    }
    if (context == null) {
        context = new RuntimeContext();
    }
    final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
    if (TldTaglib.class != tldTaglib.getClass()) {
        context.unexpectedSubclass(writer, tldTaglib, TldTaglib.class);
        return;
    }
    context.beforeMarshal(tldTaglib, LifecycleCallback.NONE);
    // ATTRIBUTE: id
    final String idRaw = tldTaglib.id;
    if (idRaw != null) {
        String id = null;
        try {
            id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(tldTaglib, "id", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "id", id);
    }
    // ATTRIBUTE: version
    final String versionRaw = tldTaglib.version;
    if (versionRaw != null) {
        String version = null;
        try {
            version = Adapters.collapsedStringAdapterAdapter.marshal(versionRaw);
        } catch (final Exception e) {
            context.xmlAdapterError(tldTaglib, "version", CollapsedStringAdapter.class, String.class, String.class, e);
        }
        writer.writeAttribute("", "", "version", version);
    }
    // ELEMENT: descriptions
    Text[] descriptions = null;
    try {
        descriptions = tldTaglib.getDescriptions();
    } catch (final Exception e) {
        context.getterError(tldTaglib, "descriptions", TldTaglib.class, "getDescriptions", e);
    }
    if (descriptions != null) {
        for (final Text descriptionsItem : descriptions) {
            if (descriptionsItem != null) {
                writer.writeStartElement(prefix, "description", "http://java.sun.com/xml/ns/javaee");
                writeText(writer, descriptionsItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(tldTaglib, "descriptions");
            }
        }
    }
    // ELEMENT: displayNames
    Text[] displayNames = null;
    try {
        displayNames = tldTaglib.getDisplayNames();
    } catch (final Exception e) {
        context.getterError(tldTaglib, "displayNames", TldTaglib.class, "getDisplayNames", e);
    }
    if (displayNames != null) {
        for (final Text displayNamesItem : displayNames) {
            if (displayNamesItem != null) {
                writer.writeStartElement(prefix, "display-name", "http://java.sun.com/xml/ns/javaee");
                writeText(writer, displayNamesItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(tldTaglib, "displayNames");
            }
        }
    }
    // ELEMENT: icon
    final LocalCollection<Icon> icon = tldTaglib.icon;
    if (icon != null) {
        for (final Icon iconItem : icon) {
            if (iconItem != null) {
                writer.writeStartElement(prefix, "icon", "http://java.sun.com/xml/ns/javaee");
                writeIcon(writer, iconItem, context);
                writer.writeEndElement();
            } else {
                context.unexpectedNullValue(tldTaglib, "icon");
            }
        }
    }
    // ELEMENT: tlibVersion
    final String tlibVersionRaw = tldTaglib.tlibVersion;
    String tlibVersion = null;
    try {
        tlibVersion = Adapters.collapsedStringAdapterAdapter.marshal(tlibVersionRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(tldTaglib, "tlibVersion", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (tlibVersion != null) {
        writer.writeStartElement(prefix, "tlib-version", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(tlibVersion);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(tldTaglib, "tlibVersion");
    }
    // ELEMENT: jspVersion
    final String jspVersionRaw = tldTaglib.jspVersion;
    String jspVersion = null;
    try {
        jspVersion = Adapters.collapsedStringAdapterAdapter.marshal(jspVersionRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(tldTaglib, "jspVersion", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (jspVersion != null) {
        writer.writeStartElement(prefix, "jsp-version", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(jspVersion);
        writer.writeEndElement();
    }
    // ELEMENT: shortName
    final String shortNameRaw = tldTaglib.shortName;
    String shortName = null;
    try {
        shortName = Adapters.collapsedStringAdapterAdapter.marshal(shortNameRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(tldTaglib, "shortName", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (shortName != null) {
        writer.writeStartElement(prefix, "short-name", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(shortName);
        writer.writeEndElement();
    } else {
        context.unexpectedNullValue(tldTaglib, "shortName");
    }
    // ELEMENT: uri
    final String uriRaw = tldTaglib.uri;
    String uri = null;
    try {
        uri = Adapters.collapsedStringAdapterAdapter.marshal(uriRaw);
    } catch (final Exception e) {
        context.xmlAdapterError(tldTaglib, "uri", CollapsedStringAdapter.class, String.class, String.class, e);
    }
    if (uri != null) {
        writer.writeStartElement(prefix, "uri", "http://java.sun.com/xml/ns/javaee");
        writer.writeCharacters(uri);
        writer.writeEndElement();
    }
    // ELEMENT: validator
    final Validator validator = tldTaglib.validator;
    if (validator != null) {
        writer.writeStartElement(prefix, "validator", "http://java.sun.com/xml/ns/javaee");
        writeValidator(writer, validator, context);
        writer.writeEndElement();
    }
    // ELEMENT: listener
    final List<Listener> listener = tldTaglib.listener;
    if (listener != null) {
        for (final Listener listenerItem : listener) {
            writer.writeStartElement(prefix, "listener", "http://java.sun.com/xml/ns/javaee");
            if (listenerItem != null) {
                writeListener(writer, listenerItem, context);
            } else {
                writer.writeXsiNil();
            }
            writer.writeEndElement();
        }
    }
    // ELEMENT: tag
    final List<Tag> tag = tldTaglib.tag;
    if (tag != null) {
        for (final Tag tagItem : tag) {
            writer.writeStartElement(prefix, "tag", "http://java.sun.com/xml/ns/javaee");
            if (tagItem != null) {
                writeTag(writer, tagItem, context);
            } else {
                writer.writeXsiNil();
            }
            writer.writeEndElement();
        }
    }
    // ELEMENT: tagFile
    final List<TagFile> tagFile = tldTaglib.tagFile;
    if (tagFile != null) {
        for (final TagFile tagFileItem : tagFile) {
            if (tagFileItem != null) {
                writer.writeStartElement(prefix, "tag-file", "http://java.sun.com/xml/ns/javaee");
                writeTagFile(writer, tagFileItem, context);
                writer.writeEndElement();
            }
        }
    }
    // ELEMENT: function
    final List<Function> function = tldTaglib.function;
    if (function != null) {
        for (final Function functionItem : function) {
            writer.writeStartElement(prefix, "function", "http://java.sun.com/xml/ns/javaee");
            if (functionItem != null) {
                writeFunction(writer, functionItem, context);
            } else {
                writer.writeXsiNil();
            }
            writer.writeEndElement();
        }
    }
    // ELEMENT: taglibExtension
    final List<TldExtension> taglibExtension = tldTaglib.taglibExtension;
    if (taglibExtension != null) {
        for (final TldExtension taglibExtensionItem : taglibExtension) {
            if (taglibExtensionItem != null) {
                writer.writeStartElement(prefix, "taglib-extension", "http://java.sun.com/xml/ns/javaee");
                writeTldExtension(writer, taglibExtensionItem, context);
                writer.writeEndElement();
            }
        }
    }
    context.afterMarshal(tldTaglib, LifecycleCallback.NONE);
}
Also used : Listener$JAXB.readListener(org.apache.openejb.jee.Listener$JAXB.readListener) Listener$JAXB.writeListener(org.apache.openejb.jee.Listener$JAXB.writeListener) CollapsedStringAdapter(javax.xml.bind.annotation.adapters.CollapsedStringAdapter) TagFile$JAXB.readTagFile(org.apache.openejb.jee.TagFile$JAXB.readTagFile) TagFile$JAXB.writeTagFile(org.apache.openejb.jee.TagFile$JAXB.writeTagFile) Text$JAXB.readText(org.apache.openejb.jee.Text$JAXB.readText) Text$JAXB.writeText(org.apache.openejb.jee.Text$JAXB.writeText) Function$JAXB.readFunction(org.apache.openejb.jee.Function$JAXB.readFunction) Function$JAXB.writeFunction(org.apache.openejb.jee.Function$JAXB.writeFunction) TldExtension$JAXB.readTldExtension(org.apache.openejb.jee.TldExtension$JAXB.readTldExtension) TldExtension$JAXB.writeTldExtension(org.apache.openejb.jee.TldExtension$JAXB.writeTldExtension) Icon$JAXB.readIcon(org.apache.openejb.jee.Icon$JAXB.readIcon) Icon$JAXB.writeIcon(org.apache.openejb.jee.Icon$JAXB.writeIcon) Tag$JAXB.readTag(org.apache.openejb.jee.Tag$JAXB.readTag) Tag$JAXB.writeTag(org.apache.openejb.jee.Tag$JAXB.writeTag) RuntimeContext(org.metatype.sxc.jaxb.RuntimeContext) Validator$JAXB.readValidator(org.apache.openejb.jee.Validator$JAXB.readValidator) Validator$JAXB.writeValidator(org.apache.openejb.jee.Validator$JAXB.writeValidator)

Aggregations

Icon$JAXB.readIcon (org.apache.openejb.jee.Icon$JAXB.readIcon)74 Icon$JAXB.writeIcon (org.apache.openejb.jee.Icon$JAXB.writeIcon)74 RuntimeContext (org.metatype.sxc.jaxb.RuntimeContext)74 Text$JAXB.readText (org.apache.openejb.jee.Text$JAXB.readText)70 Text$JAXB.writeText (org.apache.openejb.jee.Text$JAXB.writeText)70 CollapsedStringAdapter (javax.xml.bind.annotation.adapters.CollapsedStringAdapter)69 ArrayList (java.util.ArrayList)40 QName (javax.xml.namespace.QName)40 Attribute (org.metatype.sxc.util.Attribute)37 XoXMLStreamReader (org.metatype.sxc.util.XoXMLStreamReader)37 DataSource$JAXB.readDataSource (org.apache.openejb.jee.DataSource$JAXB.readDataSource)12 DataSource$JAXB.writeDataSource (org.apache.openejb.jee.DataSource$JAXB.writeDataSource)12 EjbLocalRef$JAXB.readEjbLocalRef (org.apache.openejb.jee.EjbLocalRef$JAXB.readEjbLocalRef)12 EjbLocalRef$JAXB.writeEjbLocalRef (org.apache.openejb.jee.EjbLocalRef$JAXB.writeEjbLocalRef)12 EjbRef$JAXB.readEjbRef (org.apache.openejb.jee.EjbRef$JAXB.readEjbRef)12 EjbRef$JAXB.writeEjbRef (org.apache.openejb.jee.EjbRef$JAXB.writeEjbRef)12 EnvEntry$JAXB.readEnvEntry (org.apache.openejb.jee.EnvEntry$JAXB.readEnvEntry)12 EnvEntry$JAXB.writeEnvEntry (org.apache.openejb.jee.EnvEntry$JAXB.writeEnvEntry)12 MessageDestinationRef$JAXB.readMessageDestinationRef (org.apache.openejb.jee.MessageDestinationRef$JAXB.readMessageDestinationRef)12 MessageDestinationRef$JAXB.writeMessageDestinationRef (org.apache.openejb.jee.MessageDestinationRef$JAXB.writeMessageDestinationRef)12