Uses of Class
org.apache.pivot.web.QueryException
-
Packages that use QueryException Package Description 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 Modifier and Type Method Description java.lang.Void
DeleteQuery. execute()
Synchronously executes the DELETE operation.java.lang.Object
GetQuery. execute()
Synchronously executes the GET operation.java.net.URL
PostQuery. execute()
Synchronously executes the POST operation.java.lang.Boolean
PutQuery. execute()
Synchronously executes the PUT operation.protected java.lang.Object
Query. execute(Query.Method method, java.lang.Object value)
-
Uses of QueryException in org.apache.pivot.web.server
Methods in org.apache.pivot.web.server that throw QueryException Modifier and Type Method Description 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 DELETE request.protected java.lang.Object
QueryServlet. doGet(QueryServlet.Path path)
Handles an HTTP GET request.protected java.net.URL
QueryServlet. doPost(QueryServlet.Path path, java.lang.Object value)
Handles an HTTP POST request.protected boolean
QueryServlet. doPut(QueryServlet.Path path, java.lang.Object value)
Handles an HTTP GET request.protected void
QueryServlet. validate(Query.Method method, QueryServlet.Path path)
Validates a servlet for request execution.
-