package com.ynxbd.wx.wxfactory.menu.interceptor; import com.ynxbd.wx.wxfactory.menu.WxService; import com.ynxbd.wx.wxfactory.menu.bean.xml.WxXmlMessage; import java.util.Map; public abstract class WxMessageInterceptor { public boolean intercept(WxXmlMessage wxMessage, Map context, WxService wxService) throws Exception { return "text".equals(wxMessage.getMsgType()); } }