All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jfinal.wxaapp.msg.JsonMsgParser Maven / Gradle / Ivy

/**
 * Copyright (c) 2011-2014, L.cm 卢春梦 ([email protected]).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 */

package com.jfinal.wxaapp.msg;

import com.jfinal.weixin.sdk.utils.JsonUtils;
import com.jfinal.wxaapp.msg.bean.WxaMsg;

public class JsonMsgParser extends MsgModelParser implements IMsgParser {

	@Override
	public WxaMsg parser(String msgStr) {
		MsgModel msgModel = JsonUtils.parse(msgStr, MsgModel.class);
		return parserMsg(msgModel);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy