All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.viaoa.util.xmladapter.OASecureXmlAdapter Maven / Gradle / Ivy

There is a newer version: 3.7.10
Show newest version
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