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

me.chanjar.weixin.mp.bean.custombuilder.NewsBuilder Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package me.chanjar.weixin.mp.bean.custombuilder;

import me.chanjar.weixin.common.api.WxConsts;
import me.chanjar.weixin.mp.bean.WxMpCustomMessage;

import java.util.ArrayList;
import java.util.List;

/**
 * 图文消息builder
 * 
 * 用法:
 * WxMpCustomMessage m = WxMpCustomMessage.NEWS().addArticle(article).toUser(...).build();
 * 
* @author chanjarster * */ public final class NewsBuilder extends BaseBuilder { private List articles = new ArrayList(); public NewsBuilder() { this.msgType = WxConsts.CUSTOM_MSG_NEWS; } public NewsBuilder addArticle(WxMpCustomMessage.WxArticle article) { this.articles.add(article); return this; } public WxMpCustomMessage build() { WxMpCustomMessage m = super.build(); m.setArticles(this.articles); return m; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy