public enum WscErrors extends Enum<WscErrors> implements org.mule.runtime.extension.api.error.ErrorTypeDefinition<WscErrors>
WebServiceConsumer.| Enum Constant and Description |
|---|
BAD_REQUEST
Error thrown when the generated request is invalid, mostly because inconsistent provided parameters.
|
BAD_RESPONSE
Error thrown when the resulting response is invalid.
|
CANNOT_DISPATCH
a problem occurred while sending the request.
|
ENCODING
Error thrown when an encoding related problem occurs when parsing the request or response XML.
|
INVALID_WSDL
Error thrown when an invalid WSDL is found or inconsistent WSDL state occurred.
|
SOAP_FAULT
Error thrown when a SOAP Fault occurred.
|
TIMEOUT
Error thrown when the outgoing request took longer than the server prepared to wait.
|
| Modifier and Type | Method and Description |
|---|---|
Optional<org.mule.runtime.extension.api.error.ErrorTypeDefinition<? extends Enum<?>>> |
getParent() |
String |
getType() |
static WscErrors |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WscErrors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WscErrors INVALID_WSDL
public static final WscErrors ENCODING
public static final WscErrors BAD_REQUEST
public static final WscErrors BAD_RESPONSE
public static final WscErrors CANNOT_DISPATCH
public static final WscErrors TIMEOUT
public static final WscErrors SOAP_FAULT
public static WscErrors[] values()
for (WscErrors c : WscErrors.values()) System.out.println(c);
public static WscErrors 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 getType()
getType in interface org.mule.runtime.extension.api.error.ErrorTypeDefinition<WscErrors>Copyright © 2003–2017 MuleSoft, Inc.. All rights reserved.