use of javax.xml.bind.annotation.adapters.XmlAdapter in project ddf by codice.
the class XmlParserConfiguratorTest method setup.
@Before
public void setup() {
pc = new XmlParserConfigurator();
testHandler = new ValidationEventHandler() {
@Override
public boolean handleEvent(ValidationEvent event) {
return false;
}
};
testAdapter = new XmlAdapter() {
@Override
public Object unmarshal(Object v) throws Exception {
return null;
}
@Override
public Object marshal(Object v) throws Exception {
return null;
}
};
}
Aggregations