📄 createuserstatus.java
字号:
package com.eline.vod.security.model;
/**
* Indicates the return status for creating a new user.
*
* @author Lucifer
*
*/
public interface CreateUserStatus {
// The user was not created for some unknown reason
public static final int UnknownFailure = 0;
// The user's account was successfully created.
public static final int Created = 1;
// The user's account was not created because the user's desired username is
// already being used.
public static final int DuplicateUsername = 2;
// The user's account was not created because the user's email address is
// already being used.
public static final int DuplicateEmailAddress = 3;
public static final int DuplicateMobilePIN = 4;
// The username has been previously disallowed.
public static final int DisallowedUsername = 5;
// The user record has been updated
public static final int Updated = 6;
// The user record has been deleted
public static final int Deleted = 7;
public static final int InvalidQuestionAnswer = 8;
public static final int InvalidPassword = 9;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -