public JAXRSImplementation read(XMLStreamReader reader, ProcessorContext context) throws ContributionReadException,
XMLStreamException {
// Read an <implementation.web> element
JAXRSImplementation implementation = implementationFactory.createJAXRSImplementation();
implementation.setUnresolved(true);
String application = reader.getAttributeValue(null, "application");
if (application != null) {
implementation.setApplication(application);
}
// Skip to end element
while (reader.hasNext()) {
if (reader.next() == END_ELEMENT && IMPLEMENTATION_JAXRS.equals(reader.getName())) {