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

Packages that use QueryException
org.apache.pivot.web Provides classes for communicating with HTTP-based web services. 
org.apache.pivot.web.server Contains classes to facilitate access to and development of web query services. 
 

Uses of QueryException in org.apache.pivot.web
 

Methods in org.apache.pivot.web that throw QueryException
 URL PostQuery.execute()
          Synchronously executes the POST operation.
 Void DeleteQuery.execute()
          Synchronously executes the DELETE operation.
 Object GetQuery.execute()
          Synchronously executes the GET operation.
 Boolean PutQuery.execute()
          Synchronously executes the PUT operation.
protected  Object Query.execute(Query.Method method, Object value)
           
 

Uses of QueryException in org.apache.pivot.web.server
 

Methods in org.apache.pivot.web.server that throw QueryException
protected abstract  Serializer<?> QueryServlet.createSerializer(Query.Method method, QueryServlet.Path path)
          Creates a serializer that will be used to serialize the current request data.
protected  void QueryServlet.doDelete(QueryServlet.Path path)
          Handles an HTTP GET request.
protected  Object QueryServlet.doGet(QueryServlet.Path path)
          Handles an HTTP GET request.
protected  URL QueryServlet.doPost(QueryServlet.Path path, Object value)
          Handles an HTTP POST request.
protected  boolean QueryServlet.doPut(QueryServlet.Path path, Object value)
          Handles an HTTP GET request.
protected  void QueryServlet.validate(Query.Method method, QueryServlet.Path path)
          Validates a servlet for request execution.