public static enum ApplicationAccess.AccessError extends Enum<ApplicationAccess.AccessError>
| Enum Constant and Description |
|---|
EXPIRED
The
Application is licensed but that license is now out of date. |
NO_ACCESS
The
Application is licensed but the user does not have access. |
UNLICENSED
The
Application is not licensed. |
USERS_EXCEEDED
The
Application is licensed but too many users are allowed access. |
VERSION_MISMATCH
The
Application is too new for the license. |
| Modifier and Type | Method and Description |
|---|---|
static ApplicationAccess.AccessError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationAccess.AccessError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationAccess.AccessError UNLICENSED
Application is not licensed.public static final ApplicationAccess.AccessError EXPIRED
Application is licensed but that license is now out of date. Some licenses do not have an expiry.public static final ApplicationAccess.AccessError VERSION_MISMATCH
Application is too new for the license.public static final ApplicationAccess.AccessError USERS_EXCEEDED
Application is licensed but too many users are allowed access.public static final ApplicationAccess.AccessError NO_ACCESS
Application is licensed but the user does not have access.public static ApplicationAccess.AccessError[] values()
for (ApplicationAccess.AccessError c : ApplicationAccess.AccessError.values()) System.out.println(c);
public static ApplicationAccess.AccessError 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 nullCopyright © 2018 Atlassian. All rights reserved.