Uses of Class
com.sun.xml.ws.transport.tcp.util.WSTCPError

Packages that use WSTCPError
com.sun.xml.ws.transport.tcp.client   
com.sun.xml.ws.transport.tcp.server   
com.sun.xml.ws.transport.tcp.server.tomcat   
com.sun.xml.ws.transport.tcp.util   
 

Uses of WSTCPError in com.sun.xml.ws.transport.tcp.client
 

Methods in com.sun.xml.ws.transport.tcp.client that return WSTCPError
 WSTCPError TCPClientTransport.getError()
           
 

Uses of WSTCPError in com.sun.xml.ws.transport.tcp.server
 

Methods in com.sun.xml.ws.transport.tcp.server with parameters of type WSTCPError
 void TCPMessageListener.onError(ChannelContext channelContext, WSTCPError error)
           
 void WSTCPDelegate.onError(ChannelContext channelContext, WSTCPError error)
          Implementation of TCPMessageListener.onError method is called if error occured during frame processing on upper level
 void TCPConnectionImpl.sendErrorMessage(WSTCPError message)
           
static void TCPAdapter.sendErrorResponse(ChannelContext channelContext, WSTCPError message)
           
 

Uses of WSTCPError in com.sun.xml.ws.transport.tcp.server.tomcat
 

Methods in com.sun.xml.ws.transport.tcp.server.tomcat with parameters of type WSTCPError
 void WSTCPTomcatRegistry.onError(ChannelContext channelContext, WSTCPError error)
           
 

Uses of WSTCPError in com.sun.xml.ws.transport.tcp.util
 

Methods in com.sun.xml.ws.transport.tcp.util that return WSTCPError
static WSTCPError WSTCPError.createCriticalError(int subCode, java.lang.String description)
           
static WSTCPError WSTCPError.createError(int code, int subCode, java.lang.String description)
           
static WSTCPError WSTCPError.createNonCriticalError(int subCode, java.lang.String description)
           
 WSTCPError WSTCPException.getError()
           
 

Constructors in com.sun.xml.ws.transport.tcp.util with parameters of type WSTCPError
WSTCPException(WSTCPError error)