use of org.metatype.sxc.jaxb.RuntimeContext in project tomee by apache.
the class FacesValidator$JAXB method _read.
public static final FacesValidator _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
// Check for xsi:nil
if (reader.isXsiNil()) {
return null;
}
if (context == null) {
context = new RuntimeContext();
}
final FacesValidator facesValidator = new FacesValidator();
context.beforeUnmarshal(facesValidator, LifecycleCallback.NONE);
ArrayList<Text> descriptions = null;
ArrayList<Text> displayNames = null;
LocalCollection<Icon> icon = null;
List<FacesAttribute> attribute1 = null;
List<FacesProperty> property = null;
List<FacesValidatorExtension> validatorExtension = null;
// Check xsi:type
final QName xsiType = reader.getXsiType();
if (xsiType != null) {
if (("faces-config-validatorType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
return context.unexpectedXsiType(reader, FacesValidator.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, facesValidator);
facesValidator.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 = facesValidator.icon;
if (icon != null) {
icon.clear();
} else {
icon = new LocalCollection<Icon>();
}
}
icon.add(iconItem);
} else if (("validator-id" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: validatorId
final String validatorIdRaw = elementReader.getElementAsString();
final String validatorId;
try {
validatorId = Adapters.collapsedStringAdapterAdapter.unmarshal(validatorIdRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
facesValidator.validatorId = validatorId;
} else if (("validator-class" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: validatorClass
final String validatorClassRaw = elementReader.getElementAsString();
final String validatorClass;
try {
validatorClass = Adapters.collapsedStringAdapterAdapter.unmarshal(validatorClassRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
facesValidator.validatorClass = validatorClass;
} else if (("attribute" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: attribute
final FacesAttribute attributeItem = readFacesAttribute(elementReader, context);
if (attribute1 == null) {
attribute1 = facesValidator.attribute;
if (attribute1 != null) {
attribute1.clear();
} else {
attribute1 = new ArrayList<FacesAttribute>();
}
}
attribute1.add(attributeItem);
} else if (("property" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: property
final FacesProperty propertyItem = readFacesProperty(elementReader, context);
if (property == null) {
property = facesValidator.property;
if (property != null) {
property.clear();
} else {
property = new ArrayList<FacesProperty>();
}
}
property.add(propertyItem);
} else if (("validator-extension" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: validatorExtension
final FacesValidatorExtension validatorExtensionItem = readFacesValidatorExtension(elementReader, context);
if (validatorExtension == null) {
validatorExtension = facesValidator.validatorExtension;
if (validatorExtension != null) {
validatorExtension.clear();
} else {
validatorExtension = new ArrayList<FacesValidatorExtension>();
}
}
validatorExtension.add(validatorExtensionItem);
} else {
// just here ATM to not prevent users to get JSF 2.2 feature because we can't read it
// TODO: handle it properly
// 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", "validator-id"), new QName("http://java.sun.com/xml/ns/javaee", "validator-class"), new QName("http://java.sun.com/xml/ns/javaee", "attribute"), new QName("http://java.sun.com/xml/ns/javaee", "property"), new QName("http://java.sun.com/xml/ns/javaee", "validator-extension"));
}
}
if (descriptions != null) {
try {
facesValidator.setDescriptions(descriptions.toArray(new Text[descriptions.size()]));
} catch (final Exception e) {
context.setterError(reader, FacesValidator.class, "setDescriptions", Text[].class, e);
}
}
if (displayNames != null) {
try {
facesValidator.setDisplayNames(displayNames.toArray(new Text[displayNames.size()]));
} catch (final Exception e) {
context.setterError(reader, FacesValidator.class, "setDisplayNames", Text[].class, e);
}
}
if (icon != null) {
facesValidator.icon = icon;
}
if (attribute1 != null) {
facesValidator.attribute = attribute1;
}
if (property != null) {
facesValidator.property = property;
}
if (validatorExtension != null) {
facesValidator.validatorExtension = validatorExtension;
}
context.afterUnmarshal(facesValidator, LifecycleCallback.NONE);
return facesValidator;
}
use of org.metatype.sxc.jaxb.RuntimeContext in project tomee by apache.
the class FacesValidator$JAXB method _write.
public static final void _write(final XoXMLStreamWriter writer, final FacesValidator facesValidator, RuntimeContext context) throws Exception {
if (facesValidator == null) {
writer.writeXsiNil();
return;
}
if (context == null) {
context = new RuntimeContext();
}
final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
if (FacesValidator.class != facesValidator.getClass()) {
context.unexpectedSubclass(writer, facesValidator, FacesValidator.class);
return;
}
context.beforeMarshal(facesValidator, LifecycleCallback.NONE);
// ATTRIBUTE: id
final String idRaw = facesValidator.id;
if (idRaw != null) {
String id = null;
try {
id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesValidator, "id", CollapsedStringAdapter.class, String.class, String.class, e);
}
writer.writeAttribute("", "", "id", id);
}
// ELEMENT: descriptions
Text[] descriptions = null;
try {
descriptions = facesValidator.getDescriptions();
} catch (final Exception e) {
context.getterError(facesValidator, "descriptions", FacesValidator.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(facesValidator, "descriptions");
}
}
}
// ELEMENT: displayNames
Text[] displayNames = null;
try {
displayNames = facesValidator.getDisplayNames();
} catch (final Exception e) {
context.getterError(facesValidator, "displayNames", FacesValidator.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(facesValidator, "displayNames");
}
}
}
// ELEMENT: icon
final LocalCollection<Icon> icon = facesValidator.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(facesValidator, "icon");
}
}
}
// ELEMENT: validatorId
final String validatorIdRaw = facesValidator.validatorId;
String validatorId = null;
try {
validatorId = Adapters.collapsedStringAdapterAdapter.marshal(validatorIdRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesValidator, "validatorId", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (validatorId != null) {
writer.writeStartElement(prefix, "validator-id", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(validatorId);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesValidator, "validatorId");
}
// ELEMENT: validatorClass
final String validatorClassRaw = facesValidator.validatorClass;
String validatorClass = null;
try {
validatorClass = Adapters.collapsedStringAdapterAdapter.marshal(validatorClassRaw);
} catch (final Exception e) {
context.xmlAdapterError(facesValidator, "validatorClass", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (validatorClass != null) {
writer.writeStartElement(prefix, "validator-class", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(validatorClass);
writer.writeEndElement();
} else {
context.unexpectedNullValue(facesValidator, "validatorClass");
}
// ELEMENT: attribute
final List<FacesAttribute> attribute = facesValidator.attribute;
if (attribute != null) {
for (final FacesAttribute attributeItem : attribute) {
writer.writeStartElement(prefix, "attribute", "http://java.sun.com/xml/ns/javaee");
if (attributeItem != null) {
writeFacesAttribute(writer, attributeItem, context);
} else {
writer.writeXsiNil();
}
writer.writeEndElement();
}
}
// ELEMENT: property
final List<FacesProperty> property = facesValidator.property;
if (property != null) {
for (final FacesProperty propertyItem : property) {
writer.writeStartElement(prefix, "property", "http://java.sun.com/xml/ns/javaee");
if (propertyItem != null) {
writeFacesProperty(writer, propertyItem, context);
} else {
writer.writeXsiNil();
}
writer.writeEndElement();
}
}
// ELEMENT: validatorExtension
final List<FacesValidatorExtension> validatorExtension = facesValidator.validatorExtension;
if (validatorExtension != null) {
for (final FacesValidatorExtension validatorExtensionItem : validatorExtension) {
if (validatorExtensionItem != null) {
writer.writeStartElement(prefix, "validator-extension", "http://java.sun.com/xml/ns/javaee");
writeFacesValidatorExtension(writer, validatorExtensionItem, context);
writer.writeEndElement();
}
}
}
context.afterMarshal(facesValidator, LifecycleCallback.NONE);
}
use of org.metatype.sxc.jaxb.RuntimeContext in project tomee by apache.
the class FilterMapping$JAXB method _read.
public static final FilterMapping _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
// Check for xsi:nil
if (reader.isXsiNil()) {
return null;
}
if (context == null) {
context = new RuntimeContext();
}
final FilterMapping filterMapping = new FilterMapping();
context.beforeUnmarshal(filterMapping, LifecycleCallback.NONE);
List<String> urlPattern = null;
List<String> servletName = null;
List<Dispatcher> dispatcher = null;
// Check xsi:type
final QName xsiType = reader.getXsiType();
if (xsiType != null) {
if (("filter-mappingType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
return context.unexpectedXsiType(reader, FilterMapping.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, filterMapping);
filterMapping.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 (("filter-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: filterName
final String filterNameRaw = elementReader.getElementAsString();
final String filterName;
try {
filterName = Adapters.collapsedStringAdapterAdapter.unmarshal(filterNameRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
filterMapping.filterName = filterName;
} else if (("url-pattern" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: urlPattern
final String urlPatternItemRaw = elementReader.getElementAsString();
final String urlPatternItem;
try {
urlPatternItem = Adapters.trimStringAdapterAdapter.unmarshal(urlPatternItemRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, TrimStringAdapter.class, String.class, String.class, e);
continue;
}
if (urlPattern == null) {
urlPattern = filterMapping.urlPattern;
if (urlPattern != null) {
urlPattern.clear();
} else {
urlPattern = new ArrayList<String>();
}
}
urlPattern.add(urlPatternItem);
} else if (("servlet-name" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: servletName
final String servletNameItemRaw = elementReader.getElementAsString();
final String servletNameItem;
try {
servletNameItem = Adapters.collapsedStringAdapterAdapter.unmarshal(servletNameItemRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
if (servletName == null) {
servletName = filterMapping.servletName;
if (servletName != null) {
servletName.clear();
} else {
servletName = new ArrayList<String>();
}
}
servletName.add(servletNameItem);
} else if (("dispatcher" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: dispatcher
Dispatcher dispatcherItem = null;
if (!elementReader.isXsiNil()) {
dispatcherItem = parseDispatcher(elementReader, context, elementReader.getElementAsString());
}
if (dispatcher == null) {
dispatcher = filterMapping.dispatcher;
if (dispatcher != null) {
dispatcher.clear();
} else {
dispatcher = new ArrayList<Dispatcher>();
}
}
dispatcher.add(dispatcherItem);
} else {
context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "filter-name"), new QName("http://java.sun.com/xml/ns/javaee", "url-pattern"), new QName("http://java.sun.com/xml/ns/javaee", "servlet-name"), new QName("http://java.sun.com/xml/ns/javaee", "dispatcher"));
}
}
if (urlPattern != null) {
filterMapping.urlPattern = urlPattern;
}
if (servletName != null) {
filterMapping.servletName = servletName;
}
if (dispatcher != null) {
filterMapping.dispatcher = dispatcher;
}
context.afterUnmarshal(filterMapping, LifecycleCallback.NONE);
return filterMapping;
}
use of org.metatype.sxc.jaxb.RuntimeContext in project tomee by apache.
the class FormLoginConfig$JAXB method _write.
public static final void _write(final XoXMLStreamWriter writer, final FormLoginConfig formLoginConfig, RuntimeContext context) throws Exception {
if (formLoginConfig == null) {
writer.writeXsiNil();
return;
}
if (context == null) {
context = new RuntimeContext();
}
final String prefix = writer.getUniquePrefix("http://java.sun.com/xml/ns/javaee");
if (FormLoginConfig.class != formLoginConfig.getClass()) {
context.unexpectedSubclass(writer, formLoginConfig, FormLoginConfig.class);
return;
}
context.beforeMarshal(formLoginConfig, LifecycleCallback.NONE);
// ATTRIBUTE: id
final String idRaw = formLoginConfig.id;
if (idRaw != null) {
String id = null;
try {
id = Adapters.collapsedStringAdapterAdapter.marshal(idRaw);
} catch (final Exception e) {
context.xmlAdapterError(formLoginConfig, "id", CollapsedStringAdapter.class, String.class, String.class, e);
}
writer.writeAttribute("", "", "id", id);
}
// ELEMENT: formLoginPage
final String formLoginPageRaw = formLoginConfig.formLoginPage;
String formLoginPage = null;
try {
formLoginPage = Adapters.collapsedStringAdapterAdapter.marshal(formLoginPageRaw);
} catch (final Exception e) {
context.xmlAdapterError(formLoginConfig, "formLoginPage", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (formLoginPage != null) {
writer.writeStartElement(prefix, "form-login-page", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(formLoginPage);
writer.writeEndElement();
} else {
context.unexpectedNullValue(formLoginConfig, "formLoginPage");
}
// ELEMENT: formErrorPage
final String formErrorPageRaw = formLoginConfig.formErrorPage;
String formErrorPage = null;
try {
formErrorPage = Adapters.collapsedStringAdapterAdapter.marshal(formErrorPageRaw);
} catch (final Exception e) {
context.xmlAdapterError(formLoginConfig, "formErrorPage", CollapsedStringAdapter.class, String.class, String.class, e);
}
if (formErrorPage != null) {
writer.writeStartElement(prefix, "form-error-page", "http://java.sun.com/xml/ns/javaee");
writer.writeCharacters(formErrorPage);
writer.writeEndElement();
} else {
context.unexpectedNullValue(formLoginConfig, "formErrorPage");
}
context.afterMarshal(formLoginConfig, LifecycleCallback.NONE);
}
use of org.metatype.sxc.jaxb.RuntimeContext in project tomee by apache.
the class FormLoginConfig$JAXB method _read.
public static final FormLoginConfig _read(final XoXMLStreamReader reader, RuntimeContext context) throws Exception {
// Check for xsi:nil
if (reader.isXsiNil()) {
return null;
}
if (context == null) {
context = new RuntimeContext();
}
final FormLoginConfig formLoginConfig = new FormLoginConfig();
context.beforeUnmarshal(formLoginConfig, LifecycleCallback.NONE);
// Check xsi:type
final QName xsiType = reader.getXsiType();
if (xsiType != null) {
if (("form-login-configType" != xsiType.getLocalPart()) || ("http://java.sun.com/xml/ns/javaee" != xsiType.getNamespaceURI())) {
return context.unexpectedXsiType(reader, FormLoginConfig.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, formLoginConfig);
formLoginConfig.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 (("form-login-page" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: formLoginPage
final String formLoginPageRaw = elementReader.getElementAsString();
final String formLoginPage;
try {
formLoginPage = Adapters.collapsedStringAdapterAdapter.unmarshal(formLoginPageRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
formLoginConfig.formLoginPage = formLoginPage;
} else if (("form-error-page" == elementReader.getLocalName()) && ("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: formErrorPage
final String formErrorPageRaw = elementReader.getElementAsString();
final String formErrorPage;
try {
formErrorPage = Adapters.collapsedStringAdapterAdapter.unmarshal(formErrorPageRaw);
} catch (final Exception e) {
context.xmlAdapterError(elementReader, CollapsedStringAdapter.class, String.class, String.class, e);
continue;
}
formLoginConfig.formErrorPage = formErrorPage;
} else {
context.unexpectedElement(elementReader, new QName("http://java.sun.com/xml/ns/javaee", "form-login-page"), new QName("http://java.sun.com/xml/ns/javaee", "form-error-page"));
}
}
context.afterUnmarshal(formLoginConfig, LifecycleCallback.NONE);
return formLoginConfig;
}
Aggregations