me.chanjar.weixin.common.util.xml.MediaIdMarshaller Maven / Gradle / Ivy
package me.chanjar.weixin.common.util.xml;
import javax.xml.bind.annotation.adapters.XmlAdapter;
/**
* @author Daniel Qian
*/
public class MediaIdMarshaller extends XmlAdapter {
@Override
public String marshal(String arg0) throws Exception {
return " ";
}
@Override
public String unmarshal(String arg0) throws Exception {
// do nothing
return arg0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy