me.chanjar.weixin.cp.message.WxCpMessageInterceptor Maven / Gradle / Ivy
package me.chanjar.weixin.cp.message;
import me.chanjar.weixin.common.error.WxErrorException;
import me.chanjar.weixin.common.session.WxSessionManager;
import me.chanjar.weixin.cp.api.WxCpService;
import me.chanjar.weixin.cp.bean.message.WxCpXmlMessage;
import java.util.Map;
/**
* 微信消息拦截器,可以用来做验证
*
* @author Daniel Qian
*/
public interface WxCpMessageInterceptor {
/**
* 拦截微信消息
*
* @param wxMessage the wx message
* @param context 上下文,如果handler或interceptor之间有信息要传递,可以用这个
* @param wxCpService the wx cp service
* @param sessionManager the session manager
* @return true代表OK ,false代表不OK
* @throws WxErrorException the wx error exception
*/
boolean intercept(WxCpXmlMessage wxMessage,
Map context,
WxCpService wxCpService,
WxSessionManager sessionManager) throws WxErrorException;
}