1 package com.zone.weixin4j.response; 2 3 4 /** 5 * 微信被动消息回复 6 * 7 * @className WeixinResponse 8 * @author jinyu(foxinmy@gmail.com) 9 * @date 2015年5月5日 10 * @since JDK 1.6 11 * @see TextResponse 12 * @see ImageResponse 13 * @see MusicResponse 14 * @see VoiceResponse 15 * @see VideoResponse 16 * @see NewsResponse 17 * @see TransferCustomerResponse 18 * @see SingleResponse 19 * @see BlankResponse 20 * @see <a href= 21 * "https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140543&token=&lang=zh_CN" target="alexandria_uri">http://https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140543&token=&lang=zh_CN">订阅号、服务号的被动响应消息</a> 22 * @see <a 23 * href="http://qydev.weixin.qq.com/wiki/index.php?title=%E8%A2%AB%E5%8A%A8%E5%93%8D%E5%BA%94%E6%B6%88%E6%81%AF">企业号的被动响应消息</a> 24 */ 25 public interface WeixinResponse { 26 /** 27 * 回复的消息类型 28 * 29 * @return 30 */ 31 public String getMsgType(); 32 33 /** 34 * 回复的消息内容 35 * 36 * @return 37 */ 38 public String toContent(); 39 }