mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-09-24 04:53:50 +08:00
22 lines
436 B
Java
22 lines
436 B
Java
![]() |
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;
|
||
|
}
|
||
|
|
||
|
}
|