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

me.chanjar.weixin.bean.custombuilder.TextBuilder Maven / Gradle / Ivy

The newest version!
package me.chanjar.weixin.bean.custombuilder;

import me.chanjar.weixin.api.WxConsts;
import me.chanjar.weixin.bean.WxCustomMessage;

/**
 * 文本消息builder
 * 
 * 用法: WxCustomMessage m = WxCustomMessage.TEXT().content(...).touser(...).build();
 * 
* @author chanjarster * */ public final class TextBuilder extends BaseBuilder { private String content; public TextBuilder() { this.msgtype = WxConsts.CUSTOM_MSG_TEXT; } public TextBuilder content(String content) { this.content = content; return this; } public WxCustomMessage build() { WxCustomMessage m = super.build(); m.setContent(this.content); return m; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy