Package org.apache.hop.www
Class BaseHopServerPlugin
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- org.apache.hop.www.BaseHttpServlet
-
- org.apache.hop.www.BaseHopServerPlugin
-
- All Implemented Interfaces:
Serializable,javax.servlet.Servlet,javax.servlet.ServletConfig,IHopServerPlugin,IHopServerRequestHandler,IHopServerServlet
public abstract class BaseHopServerPlugin extends BaseHttpServlet implements IHopServerPlugin, IHopServerRequestHandler
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.hop.www.IHopServerRequestHandler
IHopServerRequestHandler.IHopServerRequest, IHopServerRequestHandler.IHopServerResponse, IHopServerRequestHandler.IOutputStreamResponse, IHopServerRequestHandler.IWriterResponse
-
-
Field Summary
-
Fields inherited from class org.apache.hop.www.BaseHttpServlet
log, pipelineMap, serialVersionUID, serverConfig, supportGraphicEnvironment, variables, workflowMap
-
-
Constructor Summary
Constructors Constructor Description BaseHopServerPlugin()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voiddoGet(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)Deprecated.Should not be called directly.abstract StringgetContextPath()StringgetService()abstract voidhandleRequest(IHopServerRequestHandler.IHopServerRequest request)protected voidservice(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)StringtoString()-
Methods inherited from class org.apache.hop.www.BaseHttpServlet
convertContextPath, doDelete, doPost, doPut, getLog, getPipelineMap, getServerConfig, getWorkflowMap, isJettyMode, logBasic, logBasic, logDebug, logDetailed, logDetailed, logError, logError, logError, logMinimal, logRowlevel, setJettyMode, setLog, setPipelineMap, setServerConfig, setup, setWorkflowMap
-
Methods inherited from class javax.servlet.http.HttpServlet
doHead, doOptions, doTrace, getLastModified, service
-
Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, init, log, log
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.hop.www.IHopServerPlugin
isJettyMode, setJettyMode, setup
-
-
-
-
Method Detail
-
doGet
@Deprecated(since="2.0") public void doGet(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp) throws IOException
Deprecated.Should not be called directly. Useservice(HttpServletRequest, HttpServletResponse)instead- Specified by:
doGetin interfaceIHopServerPlugin- Overrides:
doGetin classjavax.servlet.http.HttpServlet- Parameters:
req- http servlet requestresp- http servlet response- Throws:
IOException
-
service
protected void service(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp) throws IOException- Overrides:
servicein classBaseHttpServlet- Throws:
IOException
-
handleRequest
public abstract void handleRequest(IHopServerRequestHandler.IHopServerRequest request) throws IOException
- Specified by:
handleRequestin interfaceIHopServerRequestHandler- Throws:
IOException
-
getContextPath
public abstract String getContextPath()
- Specified by:
getContextPathin interfaceIHopServerPlugin
-
getService
public String getService()
- Specified by:
getServicein interfaceIHopServerServlet
-
-