NIMSDK-AOS  10.5.0
SystemMessage.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.msg.model;
2 
3 import android.text.TextUtils;
4 
5 import com.netease.nimlib.log.NimLog;
8 
9 import org.json.JSONException;
10 import org.json.JSONObject;
11 
12 import java.io.Serializable;
13 
17 public class SystemMessage implements Serializable {
18 
19  private static final String TAG = "SystemMessage";
20 
21  // 系统通知的服务器ID
22  private String messageServerId;
23 
24  private long messageId;
25 
26  private SystemMessageType type;
27 
28  private String fromAccount;
29 
30  private String targetId;
31 
32  private long time;
33 
34  private SystemMessageStatus status;
35 
36  private String content;
37 
38  private String attach;
39 
40  private Object attachObject;
41 
42  private boolean unread;
43 
44  private String customInfo;
45 
51  public long getMessageId() {
52  return messageId;
53  }
54 
60  public void setMessageId(long messageId) {
61  this.messageId = messageId;
62  }
63 
64  public String getMessageServerId() {
65  return messageServerId;
66  }
67 
68  public void setMessageServerId(String messageServerId) {
69  this.messageServerId = messageServerId;
70  }
71 
78  return type;
79  }
80 
86  public void setType(int type) {
87  this.type = SystemMessageType.typeOfValue(type);
88  }
89 
96  public String getFromAccount() {
97  return fromAccount;
98  }
99 
105  public void setFromAccount(String fromAccount) {
106  this.fromAccount = fromAccount;
107  }
108 
115  public String getTargetId() {
116  return targetId;
117  }
118 
124  public void setTargetId(String targetId) {
125  this.targetId = targetId;
126  }
127 
133  public long getTime() {
134  return time;
135  }
136 
142  public void setTime(long time) {
143  this.time = time;
144  }
145 
152  return status;
153  }
154 
160  public void setStatus(SystemMessageStatus status) {
161  this.status = status;
162  }
163 
170  public String getContent() {
171  return content;
172  }
173 
179  public void setContent(String content) {
180  this.content = content;
181  }
182 
189  public String getAttach() {
190  return attach;
191  }
192 
198  public void setAttach(String attach) {
199  if (!TextUtils.isEmpty(attach)) {
200  try {
201  JSONObject object = new JSONObject(attach);
202  customInfo = object.optString("attach");
203  } catch (JSONException e) {
204  e.printStackTrace();
205  NimLog.e(TAG, "get custom info err , attach = " + attach, e);
206  }
207  }
208  this.attach = attach;
209  }
210 
218  public Object getAttachObject() {
219  return attachObject;
220  }
221 
228  public void setAttachObject(Object object) {
229  this.attachObject = object;
230  }
231 
237  public boolean isUnread() {
238  return unread;
239  }
240 
246  public void setUnread(boolean unread) {
247  this.unread = unread;
248  }
249 
250 
256  public String getCustomInfo() {
257 
258  return customInfo;
259  }
260 }
Object getAttachObject()
获取系统通知附件内容解析后的对象。 对于第三方app自定义消息类型,该域可自行解析。 对于内置的系统通知...
void setMessageServerId(String messageServerId)
String getCustomInfo()
获取自定义信息,目前只有拉人入群时可以设置
SystemMessageStatus getStatus()
获取系统通知的处理状态
void setAttachObject(Object object)
设置解析后的附件对象。 该字段和attach是独立的,以便第三方app缓存自己的附件对象。 ...
SystemMessageType getType()
获取系统通知类型
boolean isUnread()
判断该系统通知是否已读
void setMessageId(long messageId)
设置系统通知ID
void setUnread(boolean unread)
设置改系统通知已读/未读
void setType(int type)
设置系统通知类型
void setTime(long time)
设置系统通知的发出时间
void setTargetId(String targetId)
设置系统通知的目标ID
void setStatus(SystemMessageStatus status)
设置系统通知的处理状态
String getFromAccount()
该系统通知的发起方帐号。 例如:申请加入群的申请者,同意入群邀请的同意者
void setContent(String content)
设置系统通知的内容
void setAttach(String attach)
设置系统通知的附件内容。
String getTargetId()
获取系统通知的目标ID.
void setFromAccount(String fromAccount)
设置发起方帐号
String getAttach()
获取系统通知的附件内容。 该字段用于日后扩展
String getContent()
获取系统通知的内容。 例如:申请附言,拒绝理由
long getTime()
获取系统通知的发出时间,单位为ms