Uses of Class
org.apache.pivot.web.Query

Packages that use Query
org.apache.pivot.web Provides classes for communicating with HTTP-based web services. 
 

Uses of Query in org.apache.pivot.web
 

Subclasses of Query in org.apache.pivot.web
 class DeleteQuery
          Executes an HTTP DELETE operation.
 class GetQuery
          Executes an HTTP GET operation.
 class PostQuery
          Executes an HTTP POST operation.
 class PutQuery
          Executes an HTTP PUT operation.
 

Methods in org.apache.pivot.web with parameters of type Query
 void Authentication.authenticate(Query<?> query)
           
 void BasicAuthentication.authenticate(Query<?> query)
           
 void QueryListener.connected(Query<V> query)
          Called when a query has connected to the server but the request has not yet been sent.
 void QueryListener.Adapter.connected(Query<V> query)
           
 void QueryListener.failed(Query<V> query)
          Called when an error has occurred
 void QueryListener.Adapter.failed(Query<V> query)
           
 void QueryListener.requestSent(Query<V> query)
          Called when the request has been sent to the server but the response has not yet been received.
 void QueryListener.Adapter.requestSent(Query<V> query)
           
 void QueryListener.responseReceived(Query<V> query)
          Called when a response has been received from the server.
 void QueryListener.Adapter.responseReceived(Query<V> query)