| com.sun.xml.ws.api.model.CheckedException
All known Subclasses: com.sun.xml.ws.model.CheckedExceptionImpl,
CheckedException | public interface CheckedException (Code) | | This class provides abstractio to the the exception class
corresponding to the wsdl:fault, such as class MUST have
WebFault annotation defined on it.
Also the exception class must have
public WrapperException()String message, FaultBean){}
and method
public FaultBean getFaultInfo();
author: Vivek Pandey |
getBridge | Bridge getBridge()(Code) | | Gives the
com.sun.xml.bind.api.Bridge associated with the detail
|
getDetailBean | Class getDetailBean()(Code) | | The detail bean is serialized inside the detail entry in the SOAP message.
This must be known to the
javax.xml.bind.JAXBContext inorder to get
marshalled/unmarshalled.
the detail bean |
getExceptionClass | Class getExceptionClass()(Code) | | The returned exception class would be userdefined or WSDL exception class.
always non-null same object. |
getExceptionType | ExceptionType getExceptionType()(Code) | | Tells whether the exception class is a userdefined or a WSDL exception.
A WSDL exception class follows the pattern defined in JSR 224. According to that
a WSDL exception class must have:
public WrapperException()String message, FaultBean){}
and accessor method
public FaultBean getFaultInfo();
|
getMessageName | String getMessageName()(Code) | | Gives the wsdl:portType/wsdl:operation/wsdl:fault@message value - that is the wsdl:message
referenced by wsdl:fault
|
|
|