mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-09-23 12:33:48 +08:00
22 lines
435 B
Java
22 lines
435 B
Java
package me.chanjar.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;
|
|
}
|
|
|
|
}
|