标记分组接口为过期的

This commit is contained in:
BinaryWang 2016-09-02 17:16:39 +08:00
parent 71709bbc36
commit d31c9f71d7
3 changed files with 6 additions and 3 deletions

View File

@ -8,8 +8,10 @@ import java.util.List;
/**
* 用户分组相关操作接口
* @author Binary Wang
* 分组接口属于老接口不知道啥时候被替换成用户标签接口
*
*/
@Deprecated
public interface WxMpGroupService {

View File

@ -1,12 +1,9 @@
package me.chanjar.weixin.mp.api.impl;
import java.util.List;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import com.google.gson.reflect.TypeToken;
import me.chanjar.weixin.common.exception.WxErrorException;
import me.chanjar.weixin.common.util.http.SimpleGetRequestExecutor;
import me.chanjar.weixin.common.util.http.SimplePostRequestExecutor;
@ -16,9 +13,12 @@ import me.chanjar.weixin.mp.api.WxMpService;
import me.chanjar.weixin.mp.bean.WxMpGroup;
import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;
import java.util.List;
/**
* Created by Binary Wang on 2016/7/21.
*/
@Deprecated
public class WxMpGroupServiceImpl implements WxMpGroupService {
private static final String API_URL_PREFIX = "https://api.weixin.qq.com/cgi-bin/groups";
private WxMpService wxMpService;

View File

@ -15,6 +15,7 @@ import java.util.List;
*
* @author chanjarster
*/
@Deprecated
@Test(groups = "groupAPI")
@Guice(modules = ApiTestModule.class)
public class WxMpGroupServiceImplTest {