org.openprovenance.prov.sql.QualifiedNameAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prov-sql Show documentation
Show all versions of prov-sql Show documentation
Java Objects representing the PROV model, XML serialiser/deserialiser for them, and ORM mapping generated by HyperJaxb.
package org.openprovenance.prov.sql;
import javax.xml.bind.annotation.adapters.XmlAdapter;
import javax.xml.namespace.QName;
public class QualifiedNameAdapter extends XmlAdapter {
final ProvFactory pf=new ProvFactory();
@Override
public QName marshal(org.openprovenance.prov.model.QualifiedName qualifiedName) throws Exception {
if (qualifiedName==null) {
return null;
} else {
return qualifiedName.toQName();
}
}
@Override
public QualifiedName unmarshal(QName q) throws Exception {
if (q==null) {
return null;
} else {
QualifiedName qq=new QualifiedName(q);
return qq;
}
}
}