Uses of Class
net.bioclipse.xws.exceptions.XmppException

Packages that use XmppException
net.bioclipse.xws.client   
net.bioclipse.xws.client.adhoc   
net.bioclipse.xws.client.disco   
net.bioclipse.xws.client.listeners   
 

Uses of XmppException in net.bioclipse.xws.client
 

Methods in net.bioclipse.xws.client that return XmppException
 XmppException IXmppItem.getDiscoError()
          Returns the last XmppException that occurred after discovering the of the XMPP item was started if available, otherwise null.
 

Methods in net.bioclipse.xws.client that throw XmppException
 void Client.connect()
          Connects the client to the server.
static Client ClientFactory.createClient(java.lang.String clientJID, java.lang.String pwd, java.lang.String host, int port, IExecutionPipe executionPipe)
          Creates a XMPP client with the supplied account information.
 void Client.disconnect()
          Disconnects the client from the server.
 void IXmppItem.discoverAsync(IDiscoListener listener)
          Starts asynchronous discovery of the XMPP item.
 IXmppItem IXmppItem.discoverSync(long millis)
          Starts synchronous discovery of the XMPP item.
 

Constructors in net.bioclipse.xws.client that throw XmppException
Client(java.lang.String clientJID, java.lang.String pwd, java.lang.String host, int port, IExecutionPipe executionPipe)
          Initializes a newly created XMPP client with the supplied account information.
 

Uses of XmppException in net.bioclipse.xws.client.adhoc
 

Methods in net.bioclipse.xws.client.adhoc that throw XmppException
 void IFunction.getIoSchemataAsync(IIoSchemataListener listener)
          Retrieves the input/output XML Schemata of the function.
 IoSchemata IFunction.getIoSchemataSync(long millis)
          Retrieves the input/output XML Schemata of the function.
 void IProcess.getResult()
          Requests the result of the remote process and also terminates (deletes) it.
 void IProcess.getResult(boolean deleteProcess)
          Requests the result of the remote process.
 IProcess IFunction.invokeAsync(org.w3c.dom.Element input, IProcessListener listener)
          Invokes the function.
 IProcess IFunction.invokeAsync(org.w3c.dom.Element input, ISimpleProcessListener simple_listener)
          Invokes the function.
 IProcess IFunction.invokeAsync(java.lang.String input_element, IProcessListener listener)
          Invokes the function.
 IProcess IFunction.invokeAsync(java.lang.String input_element, ISimpleProcessListener simple_listener)
          Invokes the function.
 org.w3c.dom.Element IFunction.invokeSync(org.w3c.dom.Element input, long millis)
          Invokes the function.
 org.w3c.dom.Element IFunction.invokeSync(java.lang.String input_element, long millis)
          Invokes the function.
 IProcess IFunction.pickAsync(java.lang.String sessionID, IProcessListener listener)
          Picks the running remote process associated with a session ID.
 void IProcess.terminate()
          Terminates (deletes) a remote process.
 

Uses of XmppException in net.bioclipse.xws.client.disco
 

Methods in net.bioclipse.xws.client.disco that return XmppException
 XmppException Items.getDiscoError()
          Returns the discovery error or null.
 XmppException Info.getDiscoError()
          Returns the discovery error or null.
 XmppException Functions.getDiscoError()
          Returns the discovery error or null.
 

Constructors in net.bioclipse.xws.client.disco with parameters of type XmppException
Functions(XmppException xmpp_exception)
          Initializes a newly created Functions object.
Info(XmppException xmpp_exception)
          Initializes a newly created Info object.
Items(XmppException xmpp_exception)
          Initializes a newly created Items object.
 

Uses of XmppException in net.bioclipse.xws.client.listeners
 

Methods in net.bioclipse.xws.client.listeners with parameters of type XmppException
 void IIoSchemataListener.onIqError(IFunction f, XmppException error)
          A XMPP specific error occurred.
 void ISimpleProcessListener.onIqError(IProcess p, XmppException error)
          A XMPP specific error occurred.
 void ICommandListener.onIqError(IProcess p, XmppException error)
          A XMPP specific error occurred.