use of org.apache.openejb.jee.ResourceEnvRef$JAXB.writeResourceEnvRef in project tomee by apache.
the class WebApp$JAXB method _write.
public static final void _write(final XoXMLStreamWriter writer, final WebApp webApp, RuntimeContext context) throws Exception {
if (webApp == null) {
writer.writeXsiNil();
return;
}
if (context == null) {
context = new RuntimeContext();
}
final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
if (WebApp.class != webApp.getClass()) {
context.unexpectedSubclass(writer, webApp, WebApp.class);
return;
}
context.beforeMarshal(webApp, org.metatype.sxc.jaxb.LifecycleCallback.NONE);
// ATTRIBUTE: id
final String idRaw = webApp.id;
if (idRaw != null) {
String id = null;
try {
id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
} catch (final Exception e) {
context.xmlAdapterError(webApp, "id", CollapsedStringAdapter.class, String.class, String.class, e);
}
writer.writeAttribute("", "", "id", id);
}
// ATTRIBUTE: metadataComplete
final Boolean metadataComplete = webApp.metadataComplete;
if (metadataComplete != null) {
writer.writeAttribute("", "", "metadata-complete", Boolean.toString(metadataComplete));
}
// ATTRIBUTE: version
final String versionRaw = webApp.version;
if (versionRaw != null) {
String version = null;
try {
version = Adapters.collapsedStringAdapterAdapter.marshal(versionRaw);
} catch (final Exception e) {
context.xmlAdapterError(webApp, "version", CollapsedStringAdapter.class, String.class, String.class, e);
}
writer.writeAttribute("", "", "version", version);
}
// ELEMENT: descriptions
Text[] descriptions = null;
try {
descriptions = webApp.getDescriptions();
} catch (final Exception e) {
context.getterError(webApp, "descriptions", WebApp.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(webApp, "descriptions");
}
}
}
// ELEMENT: displayNames
Text[] displayNames = null;
try {
displayNames = webApp.getDisplayNames();
} catch (final Exception e) {
context.getterError(webApp, "displayNames", WebApp.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(webApp, "displayNames");
}
}
}
// ELEMENT: icon
final LocalCollection<Icon> icon = webApp.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(webApp, "icon");
}
}
}
// ELEMENT: distributable
final List<Empty> distributable = webApp.distributable;
if (distributable != null) {
for (final Empty distributableItem : distributable) {
writer.writeStartElement(prefix, "distributable", "http://java.sun.com/xml/ns/javaee");
if (distributableItem != null) {
writeEmpty(writer, distributableItem, context);
} else {
writer.writeXsiNil();
}
writer.writeEndElement();
}
}
// ELEMENT: contextParam
final List<ParamValue> contextParam = webApp.contextParam;
if (contextParam != null) {
for (final ParamValue contextParamItem : contextParam) {
if (contextParamItem != null) {
writer.writeStartElement(prefix, "context-param", "http://java.sun.com/xml/ns/javaee");
writeParamValue(writer, contextParamItem, context);
writer.writeEndElement();
}
}
}
// ELEMENT: filter
final List<Filter> filter = webApp.filter;
if (filter != null) {
for (final Filter filterItem : filter) {
writer.writeStartElement(prefix, "filter", "http://java.sun.com/xml/ns/javaee");
if (filterItem != null) {
writeFilter(writer, filterItem, context);
} else {
writer.writeXsiNil();
}
writer.writeEndElement();
}
}
// ELEMENT: filterMapping
final List<FilterMapping> filterMapping = webApp.filterMapping;
if (filterMapping != null) {
for (final FilterMapping filterMappingItem : filterMapping) {
if (filterMappingItem != null) {
writer.writeStartElement(prefix, "filter-mapping", "http://java.sun.com/xml/ns/javaee");
writeFilterMapping(writer, filterMappingItem, context);
writer.writeEndElement();
}
}
}
// ELEMENT: listener
final List<Listener> listener = webApp.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: servlet
final List<Servlet> servlet = webApp.servlet;
if (servlet != null) {
for (final Servlet servletItem : servlet) {
writer.writeStartElement(prefix, "servlet", "http://java.sun.com/xml/ns/javaee");
if (servletItem != null) {
writeServlet(writer, servletItem, context);
} else {
writer.writeXsiNil();
}
writer.writeEndElement();
}
}
// ELEMENT: servletMapping
final List<ServletMapping> servletMapping = webApp.servletMapping;
if (servletMapping != null) {
for (final ServletMapping servletMappingItem : servletMapping) {
if (servletMappingItem != null) {
writer.writeStartElement(prefix, "servlet-mapping", "http://java.sun.com/xml/ns/javaee");
writeServletMapping(writer, servletMappingItem, context);
writer.writeEndElement();
}
}
}
// ELEMENT: sessionConfig
final List<SessionConfig> sessionConfig = webApp.sessionConfig;
if (sessionConfig != null) {
for (final SessionConfig sessionConfigItem : sessionConfig) {
if (sessionConfigItem != null) {
writer.writeStartElement(prefix, "session-config", "http://java.sun.com/xml/ns/javaee");
writeSessionConfig(writer, sessionConfigItem, context);
writer.writeEndElement();
}
}
}
// ELEMENT: mimeMapping
final List<MimeMapping> mimeMapping = webApp.mimeMapping;
if (mimeMapping != null) {
for (final MimeMapping mimeMappingItem : mimeMapping) {
if (mimeMappingItem != null) {
writer.writeStartElement(prefix, "mime-mapping", "http://java.sun.com/xml/ns/javaee");
writeMimeMapping(writer, mimeMappingItem, context);
writer.writeEndElement();
}
}
}
// ELEMENT: welcomeFileList
final List<WelcomeFileList> welcomeFileList = webApp.welcomeFileList;
if (welcomeFileList != null) {
for (final WelcomeFileList welcomeFileListItem : welcomeFileList) {
if (welcomeFileListItem != null) {
writer.writeStartElement(prefix, "welcome-file-list", "http://java.sun.com/xml/ns/javaee");
writeWelcomeFileList(writer, welcomeFileListItem, context);
writer.writeEndElement();
}
}
}
// ELEMENT: errorPage
final List<ErrorPage> errorPage = webApp.errorPage;
if (errorPage != null) {
for (final ErrorPage errorPageItem : errorPage) {
if (errorPageItem != null) {
writer.writeStartElement(prefix, "error-page", "http://java.sun.com/xml/ns/javaee");
writeErrorPage(writer, errorPageItem, context);
writer.writeEndElement();
}
}
}
// ELEMENT: taglib
Taglib taglib = null;
try {
taglib = webApp.getTaglib();
} catch (final Exception e) {
context.getterError(webApp, "taglib", WebApp.class, "getTaglib", e);
}
if (taglib != null) {
writer.writeStartElement(prefix, "taglib", "http://java.sun.com/xml/ns/javaee");
writeTaglib(writer, taglib, context);
writer.writeEndElement();
}
// ELEMENT: jspConfig
final List<JspConfig> jspConfig = webApp.jspConfig;
if (jspConfig != null) {
for (final JspConfig jspConfigItem : jspConfig) {
if (jspConfigItem != null) {
writer.writeStartElement(prefix, "jsp-config", "http://java.sun.com/xml/ns/javaee");
writeJspConfig(writer, jspConfigItem, context);
writer.writeEndElement();
}
}
}
// ELEMENT: securityConstraint
final List<SecurityConstraint> securityConstraint = webApp.securityConstraint;
if (securityConstraint != null) {
for (final SecurityConstraint securityConstraintItem : securityConstraint) {
if (securityConstraintItem != null) {
writer.writeStartElement(prefix, "security-constraint", "http://java.sun.com/xml/ns/javaee");
writeSecurityConstraint(writer, securityConstraintItem, context);
writer.writeEndElement();
}
}
}
// ELEMENT: loginConfig
final List<LoginConfig> loginConfig = webApp.loginConfig;
if (loginConfig != null) {
for (final LoginConfig loginConfigItem : loginConfig) {
if (loginConfigItem != null) {
writer.writeStartElement(prefix, "login-config", "http://java.sun.com/xml/ns/javaee");
writeLoginConfig(writer, loginConfigItem, context);
writer.writeEndElement();
}
}
}
// ELEMENT: securityRole
final List<SecurityRole> securityRole = webApp.securityRole;
if (securityRole != null) {
for (final SecurityRole securityRoleItem : securityRole) {
if (securityRoleItem != null) {
writer.writeStartElement(prefix, "security-role", "http://java.sun.com/xml/ns/javaee");
writeSecurityRole(writer, securityRoleItem, context);
writer.writeEndElement();
}
}
}
// ELEMENT: localeEncodingMappingList
final List<LocaleEncodingMappingList> localeEncodingMappingList = webApp.localeEncodingMappingList;
if (localeEncodingMappingList != null) {
for (final LocaleEncodingMappingList localeEncodingMappingListItem : localeEncodingMappingList) {
if (localeEncodingMappingListItem != null) {
writer.writeStartElement(prefix, "locale-encoding-mapping-list", "http://java.sun.com/xml/ns/javaee");
writeLocaleEncodingMappingList(writer, localeEncodingMappingListItem, context);
writer.writeEndElement();
}
}
}
// ELEMENT: envEntry
final KeyedCollection<String, EnvEntry> envEntry = webApp.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(webApp, "envEntry");
}
}
}
// ELEMENT: ejbRef
final KeyedCollection<String, EjbRef> ejbRef = webApp.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(webApp, "ejbRef");
}
}
}
// ELEMENT: ejbLocalRef
final KeyedCollection<String, EjbLocalRef> ejbLocalRef = webApp.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(webApp, "ejbLocalRef");
}
}
}
// ELEMENT: serviceRef
final KeyedCollection<String, ServiceRef> serviceRef = webApp.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(webApp, "serviceRef");
}
}
}
// ELEMENT: resourceRef
final KeyedCollection<String, ResourceRef> resourceRef = webApp.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(webApp, "resourceRef");
}
}
}
// ELEMENT: resourceEnvRef
final KeyedCollection<String, ResourceEnvRef> resourceEnvRef = webApp.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(webApp, "resourceEnvRef");
}
}
}
// ELEMENT: messageDestinationRef
final KeyedCollection<String, MessageDestinationRef> messageDestinationRef = webApp.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(webApp, "messageDestinationRef");
}
}
}
// ELEMENT: persistenceContextRef
final KeyedCollection<String, PersistenceContextRef> persistenceContextRef = webApp.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(webApp, "persistenceContextRef");
}
}
}
// ELEMENT: persistenceUnitRef
final KeyedCollection<String, PersistenceUnitRef> persistenceUnitRef = webApp.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(webApp, "persistenceUnitRef");
}
}
}
// ELEMENT: postConstruct
final List<org.apache.openejb.jee.LifecycleCallback> postConstruct = webApp.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(webApp, "postConstruct");
}
}
}
// ELEMENT: preDestroy
final List<org.apache.openejb.jee.LifecycleCallback> preDestroy = webApp.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(webApp, "preDestroy");
}
}
}
// ELEMENT: messageDestination
final List<MessageDestination> messageDestination = webApp.messageDestination;
if (messageDestination != null) {
for (final MessageDestination messageDestinationItem : messageDestination) {
if (messageDestinationItem != null) {
writer.writeStartElement(prefix, "message-destination", "http://java.sun.com/xml/ns/javaee");
writeMessageDestination(writer, messageDestinationItem, context);
writer.writeEndElement();
} else {
context.unexpectedNullValue(webApp, "messageDestination");
}
}
}
// ELEMENT: absoluteOrdering
final AbsoluteOrdering absoluteOrdering = webApp.absoluteOrdering;
if (absoluteOrdering != null) {
writer.writeStartElement(prefix, "absolute-ordering", "http://java.sun.com/xml/ns/javaee");
writeAbsoluteOrdering(writer, absoluteOrdering, context);
writer.writeEndElement();
}
// ELEMENT: dataSource
final KeyedCollection<String, DataSource> dataSource = webApp.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();
} else {
context.unexpectedNullValue(webApp, "dataSource");
}
}
}
// ELEMENT: moduleName
final String moduleNameRaw = webApp.moduleName;
String moduleName = null;
try {
moduleName = Adapters.collapsedStringAdapterAdapter.marshal(moduleNameRaw);
} catch (final Exception e) {
context.xmlAdapterError(webApp, "moduleName", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (moduleName != null) {
writer.writeStartElement(prefix, "module-name", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(moduleName);
writer.writeEndElement();
}
context.afterMarshal(webApp, org.metatype.sxc.jaxb.LifecycleCallback.NONE);
}
Aggregations