public enum ServiceUnavailableFaultCodes extends Enum<ServiceUnavailableFaultCodes>
Java class for ServiceUnavailableFaultCodes.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ServiceUnavailableFaultCodes"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="DataBasePermissionError"/> <enumeration value="UserPermissionError"/> <enumeration value="DataBaseUnavailable"/> <enumeration value="Misconfiguration"/> <enumeration value="UnexpectedError"/> <enumeration value="AgentsDisabledError"/> </restriction> </simpleType>
Enum Constant and Description |
---|
AGENTS_DISABLED_ERROR
Indicates that an agent has sent peformance data however the global settings have stated that all agent traffic should be disabled.
|
DATA_BASE_PERMISSION_ERROR
Happens when the supplied credentials cannot perform some kind of query in the database
|
DATA_BASE_UNAVAILABLE
Happens when the database is either offline or access to the database was denied for the
specified credentials
|
MISCONFIGURATION
Happens when the connection string is not present in the configuration file.
|
UNEXPECTED_ERROR
A generic error message indicating an unhandled exception or fault.
|
USER_PERMISSION_ERROR
Happens when the supplied user credentials does not have access to the requested resource or action.
|
Modifier and Type | Method and Description |
---|---|
static ServiceUnavailableFaultCodes |
fromValue(String v) |
String |
value() |
static ServiceUnavailableFaultCodes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceUnavailableFaultCodes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceUnavailableFaultCodes DATA_BASE_PERMISSION_ERROR
public static final ServiceUnavailableFaultCodes USER_PERMISSION_ERROR
public static final ServiceUnavailableFaultCodes DATA_BASE_UNAVAILABLE
public static final ServiceUnavailableFaultCodes MISCONFIGURATION
public static final ServiceUnavailableFaultCodes UNEXPECTED_ERROR
public static final ServiceUnavailableFaultCodes AGENTS_DISABLED_ERROR
public static ServiceUnavailableFaultCodes[] values()
for (ServiceUnavailableFaultCodes c : ServiceUnavailableFaultCodes.values()) System.out.println(c);
public static ServiceUnavailableFaultCodes 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 String value()
public static ServiceUnavailableFaultCodes fromValue(String v)
Copyright © 2008–2017 MIL-OSS. All rights reserved.