in container/openejb-jee-accessors/src/main/java/org/apache/openejb/jee/FacesValidator$JAXB.java [74:254]
public static final FacesValidator _read(XoXMLStreamReader reader, RuntimeContext context)
throws Exception
{
// Check for xsi:nil
if (reader.isXsiNil()) {
return null;
}
if (context == null) {
context = new RuntimeContext();
}
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;
List<Object> others = null;
// Check xsi:type
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 (Attribute attribute: reader.getAttributes()) {
if (("id" == attribute.getLocalName())&&(("" == attribute.getNamespace())||(attribute.getNamespace() == null))) {
// ATTRIBUTE: id
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 (XoXMLStreamReader elementReader: reader.getChildElements()) {
if (("description" == elementReader.getLocalName())&&("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: descriptions
Text descriptionsItem = readText(elementReader, context);
if (descriptions == null) {
descriptions = new ArrayList<>();
}
descriptions.add(descriptionsItem);
} else if (("display-name" == elementReader.getLocalName())&&("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: displayNames
Text displayNamesItem = readText(elementReader, context);
if (displayNames == null) {
displayNames = new ArrayList<>();
}
displayNames.add(displayNamesItem);
} else if (("icon" == elementReader.getLocalName())&&("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: icon
Icon iconItem = readIcon(elementReader, context);
if (icon == null) {
icon = facesValidator.icon;
if (icon!= null) {
icon.clear();
} else {
icon = new LocalCollection<>();
}
}
icon.add(iconItem);
} else if (("validator-id" == elementReader.getLocalName())&&("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: validatorId
String validatorIdRaw = elementReader.getElementText();
String validatorId;
try {
validatorId = Adapters.collapsedStringAdapterAdapter.unmarshal(validatorIdRaw);
} catch (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
String validatorClassRaw = elementReader.getElementText();
String validatorClass;
try {
validatorClass = Adapters.collapsedStringAdapterAdapter.unmarshal(validatorClassRaw);
} catch (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
FacesAttribute attributeItem = readFacesAttribute(elementReader, context);
if (attribute1 == null) {
attribute1 = facesValidator.attribute;
if (attribute1 != null) {
attribute1 .clear();
} else {
attribute1 = new ArrayList<>();
}
}
attribute1 .add(attributeItem);
} else if (("property" == elementReader.getLocalName())&&("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: property
FacesProperty propertyItem = readFacesProperty(elementReader, context);
if (property == null) {
property = facesValidator.property;
if (property!= null) {
property.clear();
} else {
property = new ArrayList<>();
}
}
property.add(propertyItem);
} else if (("validator-extension" == elementReader.getLocalName())&&("http://java.sun.com/xml/ns/javaee" == elementReader.getNamespaceURI())) {
// ELEMENT: validatorExtension
FacesValidatorExtension validatorExtensionItem = readFacesValidatorExtension(elementReader, context);
if (validatorExtension == null) {
validatorExtension = facesValidator.validatorExtension;
if (validatorExtension!= null) {
validatorExtension.clear();
} else {
validatorExtension = new ArrayList<>();
}
}
validatorExtension.add(validatorExtensionItem);
} else {
// ELEMENT_REF: others
if (others == null) {
others = facesValidator.others;
if (others!= null) {
others.clear();
} else {
others = new ArrayList<>();
}
}
others.add(context.readXmlAny(elementReader, Object.class, false));
}
}
if (descriptions!= null) {
try {
facesValidator.setDescriptions(descriptions.toArray(new Text[descriptions.size()] ));
} catch (Exception e) {
context.setterError(reader, FacesValidator.class, "setDescriptions", Text[].class, e);
}
}
if (displayNames!= null) {
try {
facesValidator.setDisplayNames(displayNames.toArray(new Text[displayNames.size()] ));
} catch (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;
}
if (others!= null) {
facesValidator.others = others;
}
context.afterUnmarshal(facesValidator, LifecycleCallback.NONE);
return facesValidator;
}