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

com.seejoke.wechat.entity.msgbuilder.VideoBuilder Maven / Gradle / Ivy

package com.seejoke.wechat.entity.msgbuilder;

import com.seejoke.wechat.api.WxConsts;
import com.seejoke.wechat.entity.WxMessage;

/**
 * 视频消息builder
 * 
 * 用法: WxCustomMessage m = WxCustomMessage.VIDEO()
 *                              .mediaId(...)
 *                              .title(...)
 *                              .thumbMediaId(..)
 *                              .description(..)
 *                              .toUser(...)
 *                              .build();
 * 
* @author diaodiaofly * */ public final class VideoBuilder extends BaseBuilder { private String mediaId; private String title; private String description; private String thumbMediaId; public VideoBuilder() { this.msgType = WxConsts.CUSTOM_MSG_VIDEO; } public VideoBuilder mediaId(String mediaId) { this.mediaId = mediaId; return this; } public VideoBuilder title(String title) { this.title = title; return this; } public VideoBuilder description(String description) { this.description = description; return this; } public VideoBuilder thumbMediaId(String thumb_media_id) { this.thumbMediaId = thumb_media_id; return this; } @Override public WxMessage build() { WxMessage m = super.build(); m.setMediaId(this.mediaId); m.setTitle(title); m.setDescription(description); m.setThumbMediaId(thumbMediaId); return m; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy