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

com.foxinmy.weixin4j.response.SingleResponse Maven / Gradle / Ivy

package com.foxinmy.weixin4j.response;

/**
 * 单一内容回复
 *
 * @className SingleResponse
 * @author jinyu([email protected])
 * @date 2015年8月3日
 * @since JDK 1.6
 * @see
 */
public class SingleResponse implements WeixinResponse {

	private final String content;

	public SingleResponse(String content) {
		this.content = content;
	}

	@Override
	public String toContent() {
		return content;
	}

	@Override
	public String getMsgType() {
		return "single";
	}

	@Override
	public String toString() {
		return "SingleResponse [content=" + content + "]";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy