com.viaoa.util.OAObjectIdXmlAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oa-core Show documentation
Show all versions of oa-core Show documentation
Object Automation library
The newest version!
package com.viaoa.util;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class OAObjectIdXmlAdapter extends XmlAdapter {
@Override
public String marshal(String id) throws Exception {
return null;
//return id+"XXX";
}
@Override
public String unmarshal(String s) throws Exception {
return s;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy