Uses of Class
org.apache.pivot.web.Query
-
Packages that use Query Package Description 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 Modifier and Type Class Description 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 Modifier and Type Method Description void
Authentication. authenticate(Query<?> query)
Called to authenticate the query with the server.void
BasicAuthentication. authenticate(Query<?> query)
void
QueryListener.Adapter. connected(Query<V> query)
Deprecated.default 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.Listeners. connected(Query<V> query)
void
QueryListener.Adapter. failed(Query<V> query)
Deprecated.default void
QueryListener. failed(Query<V> query)
Called when an error has occurred.void
QueryListener.Listeners. failed(Query<V> query)
void
QueryListener.Adapter. requestSent(Query<V> query)
Deprecated.void
QueryListener.Listeners. requestSent(Query<V> query)
default 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. responseReceived(Query<V> query)
Deprecated.void
QueryListener.Listeners. responseReceived(Query<V> query)
default void
QueryListener. responseReceived(Query<V> query)
Called when a response has been received from the server.
-