Enum Class SoapServerObservationDocumentation.LowCardinalityKeyNames
java.lang.Object
java.lang.Enum<SoapServerObservationDocumentation.LowCardinalityKeyNames>
org.springframework.ws.transport.observation.SoapServerObservationDocumentation.LowCardinalityKeyNames
- All Implemented Interfaces:
io.micrometer.common.docs.KeyName, Serializable, Comparable<SoapServerObservationDocumentation.LowCardinalityKeyNames>, Constable
- Enclosing class:
SoapServerObservationDocumentation
public static enum SoapServerObservationDocumentation.LowCardinalityKeyNames
extends Enum<SoapServerObservationDocumentation.LowCardinalityKeyNames>
implements io.micrometer.common.docs.KeyName
Low cardinality key names, suitable for use as metric dimensions.
- Since:
- 5.1.0
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSimple class name of the exception that terminated the exchange, or "none" if the exchange completed normally.Fault code of the SOAP response, or "none" if the response is not a fault.Target namespace of the operation, or "none" if the request could not be mapped to an endpoint.Name of the operation, as defined bywsdl:operation name, or "none" if the request could not be mapped to an endpoint.Outcome of the exchange:SUCCESSfor a regular response,FAULTfor a SOAP fault,ERRORif an exception was thrown, andUNKNOWNif no response was produced.Scheme of the transport used to perform the operation, such ashttp,jms, ormailto.SOAP action of the operation, or "none" if the request is not a SOAP message or does not define one. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface io.micrometer.common.docs.KeyName
asString, isRequired, withNoneValue, withValue, withValue
-
Enum Constant Details
-
EXCEPTION
Simple class name of the exception that terminated the exchange, or "none" if the exchange completed normally. -
FAULT_CODE
Fault code of the SOAP response, or "none" if the response is not a fault. -
NAMESPACE
Target namespace of the operation, or "none" if the request could not be mapped to an endpoint. -
OPERATION_NAME
Name of the operation, as defined bywsdl:operation name, or "none" if the request could not be mapped to an endpoint. -
OUTCOME
Outcome of the exchange:SUCCESSfor a regular response,FAULTfor a SOAP fault,ERRORif an exception was thrown, andUNKNOWNif no response was produced. -
PROTOCOL
Scheme of the transport used to perform the operation, such ashttp,jms, ormailto. -
SOAP_ACTION
SOAP action of the operation, or "none" if the request is not a SOAP message or does not define one.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-