Files
weixin-java-tools/src/main/java/chanjarster/weixin/util/xml/MediaIdMarshaller.java

22 lines
436 B
Java
Raw Normal View History

package chanjarster.weixin.util.xml;
import javax.xml.bind.annotation.adapters.XmlAdapter;
/**
* @author chanjarster
*/
public class MediaIdMarshaller extends XmlAdapter<String, String> {
@Override
public String marshal(String arg0) throws Exception {
return "<MediaId><![CDATA[" + arg0 + "]]></MediaId>";
}
@Override
public String unmarshal(String arg0) throws Exception {
// do nothing
return arg0;
}
}