
com.viaoa.util.xmladapter.OASecureXmlAdapter 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
package com.viaoa.util.xmladapter;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class OASecureXmlAdapter extends XmlAdapter {
@Override
public String marshal(String val) throws Exception {
if (val == null) return null;
String s = "********";
return s;
}
@Override
public String unmarshal(String val) throws Exception {
return val;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy