package com.vci.web.constant;
|
|
/**
|
* web的多语编码
|
*/
|
public class WebLangCodeConstant {
|
|
/**
|
* 生命周期缺少事件
|
*/
|
public static final String LIFE_CYCLE_ROUTER_NULL = "lifeCycleRouteNull";
|
|
/**
|
* 跃迁失败
|
*/
|
public static final String LIFE_CYCLE_TRANS_ERROR = "lifeCycleTransError";
|
|
/**
|
* 文件上传超过了密级要求
|
*/
|
public static final String FILE_UPLOAD_SECRET_ERROR = "fileUploadSecretError";
|
|
/**
|
* 文件上传时,密级超过了数据的密级
|
*/
|
public static final String FILE_UPLOAD_DATA_SECRET_ERROR = "fileUploadDataSecretError";
|
|
/**
|
* 文件名称重复
|
*/
|
public static final String FILE_NAME_REPEAT = "fileNameRepeat";
|
|
}
|