NIMSDK-AOS  9.19.0
MigrationConstant.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.migration.model;
2 
3 public class MigrationConstant {
4 
5 
6  /**
7  * 消息导出时,DB中的消息转换成文件的进度状态
8  */
9  public final static int EXPORT_PROGRESS_CONVERT_MSG_STATE = 1;
10 
11  /**
12  * 消息导出时,上传最终文件的进度状态
13  */
14  public final static int EXPORT_PROGRESS_UPLOAD_FILE_STATE = 2;
15 
16 
17  /**
18  * 消息导入时,下载文件的进度状态
19  */
20  public final static int IMPORT_PROGRESS_DOWNLOAD_FILE_STATE = 3;
21 
22  /**
23  * 消息导入时,文件转换成消息的进度状态
24  */
25  public final static int IMPORT_PROGRESS_FILE_TO_MSG_STATE = 4;
26 
27 
28  /**
29  * 消息导出/导入时时,没有足够的存储空间 或sd 卡没有挂载成功
30  */
31  public static final int ERR_NO_ENOUGH_SPACE = -50;
32 
33  /**
34  * 消息导出时,DB中没有数据
35  */
36  public static final int EXPORT_ERR_DB_EMPTY = -100;
37 
38 
39  /**
40  * 消息导出时,本地消息格式化失败
41  */
42  public static final int EXPORT_ERR_LOCAL_FORMAT = -101;
43 
44  /**
45  * 消息导出时,文件压缩失败(用户自定义过程)
46  */
47  public static final int EXPORT_ERR_USER_CUSTOM_ZIP = -102;
48 
49 
50  /**
51  * 消息导出时,文件加密失败(用户自定义过程)
52  */
53  public static final int EXPORT_ERR_USER_CUSTOM_ENCRYPT = -103;
54 
55  /**
56  * 消息导出时,上传文件失败
57  */
58  public static final int EXPORT_ERR_UPLOAD_FILE = -104;
59 
60  /**
61  * 消息导出时,本地有消息,但是都被过滤了
62  */
63  public static final int EXPORT_ERR_EMPTY_AFTER_FILTER = -105;
64 
65 
66 
67 
68 
69  /**
70  * 消息导入时,服务端返回了备份记录,但是为空
71  */
72  public static final int IMPORT_ERR_RECORD_EMPTY = -200;
73 
74  /**
75  * 消息导入时 ,文件下载失败
76  */
77  public static final int IMPORT_ERR_DOWN_FILE = -201;
78 
79  /**
80  * 消息导入时 ,文件解密失败(用户自定义过程)
81  */
82  public static final int IMPORT_ERR_CUSTOM_DECRYPT = -202;
83 
84 
85  /**
86  * 消息导入时 ,文件解压缩失败(用户自定义过程)
87  */
88  public static final int IMPORT_ERR_CUSTOM_UNZIP = -203;
89 
90  /**
91  * 消息导入时 ,文件格式错误 , 可能是导出/导入时自定义文件处理过程出问题了(eg:加/解密过程 , 解/压缩过程)
92  */
93  public static final int IMPORT_ERR_FILE_FORMAT = -204;
94 
95  /**
96  * 消息导入时,部分成功,可能是文件的后面部损坏
97  */
98  public static final int IMPORT_ERR_PART_SUCCESS = -205;
99 
100 
101  /**
102  * 消息导入时,服务端上没有备份记录
103  */
104  public static final int IMPORT_ERR_NO_BACKUP = 404;
105 
106 
107 }
static final int EXPORT_ERR_UPLOAD_FILE
消息导出时,上传文件失败
static final int IMPORT_ERR_RECORD_EMPTY
消息导入时,服务端返回了备份记录,但是为空
static final int IMPORT_ERR_DOWN_FILE
消息导入时 ,文件下载失败
static final int EXPORT_PROGRESS_UPLOAD_FILE_STATE
消息导出时,上传最终文件的进度状态
static final int IMPORT_ERR_NO_BACKUP
消息导入时,服务端上没有备份记录
static final int EXPORT_PROGRESS_CONVERT_MSG_STATE
消息导出时,DB中的消息转换成文件的进度状态
static final int EXPORT_ERR_USER_CUSTOM_ZIP
消息导出时,文件压缩失败(用户自定义过程)
static final int IMPORT_PROGRESS_FILE_TO_MSG_STATE
消息导入时,文件转换成消息的进度状态
static final int EXPORT_ERR_USER_CUSTOM_ENCRYPT
消息导出时,文件加密失败(用户自定义过程)
static final int EXPORT_ERR_DB_EMPTY
消息导出时,DB中没有数据
static final int EXPORT_ERR_EMPTY_AFTER_FILTER
消息导出时,本地有消息,但是都被过滤了
static final int ERR_NO_ENOUGH_SPACE
消息导出/导入时时,没有足够的存储空间 或sd 卡没有挂载成功
static final int IMPORT_ERR_PART_SUCCESS
消息导入时,部分成功,可能是文件的后面部损坏
static final int EXPORT_ERR_LOCAL_FORMAT
消息导出时,本地消息格式化失败
static final int IMPORT_ERR_FILE_FORMAT
消息导入时 ,文件格式错误 , 可能是导出/导入时自定义文件处理过程出问题了(eg:加/解密过程 , 解/压缩...
static final int IMPORT_ERR_CUSTOM_DECRYPT
消息导入时 ,文件解密失败(用户自定义过程)
static final int IMPORT_PROGRESS_DOWNLOAD_FILE_STATE
消息导入时,下载文件的进度状态
static final int IMPORT_ERR_CUSTOM_UNZIP
消息导入时 ,文件解压缩失败(用户自定义过程)