public enum PartnerAccountName extends java.lang.Enum<PartnerAccountName>
| Enum Constant and Description |
|---|
DB_SHUTDOWN
Account used to shut down MariaDB
|
PARTNER_ADMIN
General Purpose fully privileged Account
|
PARTNER_HUB
Account used by the Partner hub
|
PARTNER_READ_ONLY
General Purpose read-only Account
|
PARTNER_WEB
Account used by PartnerWeb
|
SUPERUSER
Account used by support and production to manually administer the database
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getAccountName()
Returns the accountName
|
static PartnerAccountName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PartnerAccountName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PartnerAccountName SUPERUSER
public static final PartnerAccountName PARTNER_WEB
public static final PartnerAccountName PARTNER_READ_ONLY
public static final PartnerAccountName PARTNER_ADMIN
public static final PartnerAccountName PARTNER_HUB
public static final PartnerAccountName DB_SHUTDOWN
public static PartnerAccountName[] values()
for (PartnerAccountName c : PartnerAccountName.values()) System.out.println(c);
public static PartnerAccountName valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getAccountName()