Interface FaultDescription
public interface FaultDescription
A FaultDescription corresponds to a fault that can be thrown from an operation. NOTE this it not
implemented yet!
FaultDescriptons contain information that is only relevent for and SEI-based service, i.e. one that is invoked via specific
methods. This class does not exist for Provider-based services (i.e. those that specify WebServiceProvider)
OperationDescription details
CORRESPONDS TO: An exception thrown by an operation on an SEI (on both Client and Server)
AXIS2 DELEGATE: None
CHILDREN: None
ANNOTATIONS:
WebFault [224]
WSDL ELEMENTS:
fault message
-
Method Summary
-
Method Details
-
getOperationDescription
OperationDescription getOperationDescription() -
getExceptionClassName
String getExceptionClassName()- Returns:
- the name of the exception class
-
getFaultInfo
String getFaultInfo()- Returns:
- the class that is provided via the getFaultInfo method. "" is returned if the exception class does not provide a getFaultInfo method (such exceptions are considered non-compliant by JAX-WS).
-
getFaultBean
String getFaultBean()- Returns:
- the name of the JAXB class defined in the schema for this exception. Note that this is usually a bean, but it could also be a java primitive. If not defined, the getFaultInfo type is returned. NOTE For non-compliant exceptions, the getFaultInfo information is not availabled. In these cases, a "" is returned. The runtime (JAXWS) may use other information to locate and/or build the faultbean
-
getName
String getName()- Returns:
- the element localname (for the JAXB class) corresponding to this exception. "" if not defined.
-
getTargetNamespace
String getTargetNamespace()- Returns:
- the element targetNamespace (for the JAXB class) corresponding to this exception. "" if not defined.
-
getMessageName
String getMessageName()- Returns:
- the name of the wsdl:message that defines the fault element.
-