org.apache.axis2.jaxws.description
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
 java.lang.String getExceptionClassName()
           
 java.lang.String getFaultBean()
           
 java.lang.String getFaultInfo()
           
 java.lang.String getName()
           
 OperationDescription getOperationDescription()
           
 java.lang.String getTargetNamespace()
           
 

Method Detail

getOperationDescription

OperationDescription getOperationDescription()

getExceptionClassName

java.lang.String getExceptionClassName()
Returns:
the name of the exception class

getFaultInfo

java.lang.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

java.lang.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

java.lang.String getName()
Returns:
the element localname (for the JAXB class) corresponding to this exception. "" if not defined.

getTargetNamespace

java.lang.String getTargetNamespace()
Returns:
the element targetNamespace (for the JAXB class) corresponding to this exception. "" if not defined.


Copyright © 2007 Apache Web Services Project. All Rights Reserved.