java.lang.Object
org.apache.jena.fuseki.servlets.ActionBase
org.apache.jena.fuseki.servlets.ActionService
org.apache.jena.fuseki.servlets.ActionREST
- All Implemented Interfaces:
ActionLifecycle
,ActionProcessor
- Direct Known Subclasses:
BaseActionREST
,GSP_Base
,PatchApply
,UploadRDF
Common point for operations that are "REST"ish (use GET/PUT etc as operations).
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
execAny
(String methodName, HttpAction action) void
execute
(HttpAction action) The perform step of a requestvoid
process
(HttpAction action) Subclasses must overrideexecGet
,execPost
etc to say which methods they support.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.jena.fuseki.servlets.ActionLifecycle
validate
Methods inherited from interface org.apache.jena.fuseki.servlets.ActionProcessor
execDelete, execGet, execHead, execOptions, execPatch, execPost, execPut, execTrace
-
Constructor Details
-
ActionREST
public ActionREST()
-
-
Method Details
-
execute
Description copied from interface:ActionLifecycle
The perform step of a request -
process
Description copied from class:ActionBase
Subclasses must overrideexecGet
,execPost
etc to say which methods they support. Typically, the implementation is a call toexecuteLifecycle(action)
.- Specified by:
process
in interfaceActionProcessor
- Overrides:
process
in classActionBase
- Parameters:
action
- HTTP Action
-
execAny
-