public static enum AuthService.AgeAuthStatus extends Enum<AuthService.AgeAuthStatus>
Enum Constant and Description |
---|
AGE_AUTH_RESULT_MISMATCH
이전에 인정했던 정보와 불일치 (생일).
|
ALREADY_AGE_AUTHORIZED
이미 연령인증을 마친상황.
|
BAD_PARAMETERS
클라이언트 정보 호환 안됨, 업체에서 온 데이터가 비어있을경우, 앱에도 연령인증 정보가 없고 실제 입력도 없는경우.
|
CANCELED_OPERATION
유저의 인터액션을 (ex.
|
CI_RESULT_MISMATCH
CI 정보가 불일치 할 경우.
|
CLIENT_ERROR
클라이언트 쪽에서 (ex.
|
ERROR
사용자 찾기 실패, 받아온 생일이 불일치할 경우, 예기치 못한 에러 발생시 code = -500
|
EXCEED_AGE_CHECK_LIMIT
연령인증 횟수 초과 code = -453
|
LOWER_AGE_LIMIT
현재 앱의 연령제한보다 사용자의 연령이 낮은 경우 code = -451
|
NOT_AUTHORIZED_AGE
연령인증이 되지 않아서 연령인증이 필요한 상황(기본적으로는 정상인 상황) code = -450
|
SUCCESS
성공 code = 0
|
UNAUTHORIZED
인증되지 않은 사용자 일 경우 code = -401
|
UNKOWN
알수 없는 type의 status
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static AuthService.AgeAuthStatus |
valueOf(int i) |
static AuthService.AgeAuthStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthService.AgeAuthStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthService.AgeAuthStatus AGE_AUTH_RESULT_MISMATCH
public static final AuthService.AgeAuthStatus ALREADY_AGE_AUTHORIZED
public static final AuthService.AgeAuthStatus BAD_PARAMETERS
public static final AuthService.AgeAuthStatus CANCELED_OPERATION
public static final AuthService.AgeAuthStatus CI_RESULT_MISMATCH
public static final AuthService.AgeAuthStatus CLIENT_ERROR
public static final AuthService.AgeAuthStatus ERROR
public static final AuthService.AgeAuthStatus EXCEED_AGE_CHECK_LIMIT
public static final AuthService.AgeAuthStatus LOWER_AGE_LIMIT
public static final AuthService.AgeAuthStatus NOT_AUTHORIZED_AGE
public static final AuthService.AgeAuthStatus SUCCESS
public static final AuthService.AgeAuthStatus UNAUTHORIZED
public static final AuthService.AgeAuthStatus UNKOWN
public int getValue()
public static AuthService.AgeAuthStatus valueOf(int i)
public static AuthService.AgeAuthStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static AuthService.AgeAuthStatus[] values()
for (AuthService.AgeAuthStatus c : AuthService.AgeAuthStatus.values()) System.out.println(c);