NIMSDK-AOS  9.20.15
QChatGetExistingChannelCategoryBlackWhiteRolesResult.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.result;
2 
4 import java.io.Serializable;
5 import java.util.List;
6 
7 public class QChatGetExistingChannelCategoryBlackWhiteRolesResult implements Serializable {
8  /**
9  * 查询到的身份组列表
10  */
11  private List<QChatServerRole> roleList;
12 
13  public QChatGetExistingChannelCategoryBlackWhiteRolesResult(List<QChatServerRole> roleList) {
14  this.roleList = roleList;
15  }
16 
17  /**
18  * 获取存在的频道分组黑白成员名单身份组列表
19  * @return
20  */
21  public List<QChatServerRole> getRoleList() {
22  return roleList;
23  }
24 
25  @Override
26  public String toString() {
27  return "QChatGetExistingChannelCategoryBlackWhiteRolesResult{" +
28  "roleList=" + roleList +
29  '}';
30  }
31 }
List< QChatServerRole > getRoleList()
获取存在的频道分组黑白成员名单身份组列表