ImStatus.java 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /**
  2. *
  3. */
  4. package org.jim.common;
  5. /**
  6. * 版本: [1.0]
  7. * 功能说明:
  8. * 作者: WChao 创建时间: 2017年7月27日 上午10:33:14
  9. */
  10. public enum ImStatus implements Status{
  11. C10000(10000,"ok","发送成功"),
  12. C10001(10001,"offline","用户不在线"),
  13. C10019(10019,"online","用户在线"),
  14. C10002(
  15. 10002,"send failed"
  16. ,"消息发送失败,数据格式不正确,请参考:" +
  17. "{'from':来源ID,'to':目标ID,'cmd':'消息命令码','createTime':消息创建时间(Long型)" +
  18. ",'msgType':Integer消息类型,'chatType':Integer聊天类型{0:未知,1:群聊,2:私聊}" +
  19. ",'group_id':String群组id仅在chatType为1时需要,'content':内容}"
  20. ),
  21. C10003(10003,"ok","获取用户信息成功!"),
  22. C10004(10004,"get user failed !","获取用户信息失败!"),
  23. C10005(10005,"ok","获取所有在线用户信息成功!"),
  24. C10006(10006,"ok","获取所有离线用户信息成功!"),
  25. C10007(10007,"ok","登录成功!"),
  26. C10008(10008,"login failed !","登录失败!"),
  27. C10009(10009,"ok","鉴权成功!"),
  28. C10010(10010,"auth failed!","鉴权失败!"),
  29. C10011(10011,"join group ok!","加入群组成功!"),
  30. C10012(10012,"join group failed!","加入群组失败!"),
  31. C10013(10013,"Protocol version number does not match","协议版本号不匹配!"),
  32. C10014(10014,"unsupported cmd command","不支持的cmd命令!"),
  33. C10015(10015,"get user message failed!","获取用户消息失败!"),
  34. C10016(10016,"get user message ok!","获取离线消息成功!"),
  35. C10017(10017,"cmd failed!","未知的cmd命令!"),
  36. C10018(10018,"get user message ok!","获取历史消息成功!"),
  37. C10020(10020,"Invalid verification!","不合法校验"),
  38. C10021(10021,"close ok!","关闭成功"),
  39. C10022(10022,"online service account is zero!","当前平台部门下没有在线客服,请稍后!");
  40. private int status;
  41. private String description;
  42. private String text;
  43. private ImStatus(int status, String description, String text) {
  44. this.status = status;
  45. this.description = description;
  46. this.text = text;
  47. }
  48. public int getStatus() {
  49. return status;
  50. }
  51. public String getDescription() {
  52. return description;
  53. }
  54. public String getText() {
  55. return text;
  56. }
  57. @Override
  58. public int getCode() {
  59. return this.status;
  60. }
  61. @Override
  62. public String getMsg() {
  63. return this.getDescription()+" "+this.getText();
  64. }
  65. }