Package com.avoka.fc.core.servlet.rest
Class RestTPacV1Servlet
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- com.avoka.fc.core.servlet.rest.AbstractRestServlet
-
- com.avoka.fc.core.servlet.rest.RestTPacV1Servlet
-
- All Implemented Interfaces:
Serializable
,Servlet
,ServletConfig
public class RestTPacV1Servlet extends AbstractRestServlet
Provides a TPac REST API Servlet.- Since:
- 17.10.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
PARAM_ARCHIVE_FILE
The parameter pointing to the archive file for upload operationsstatic String
PARAM_OVERRIDE
The parameter pointing to overriding existing assets-
Fields inherited from class com.avoka.fc.core.servlet.rest.AbstractRestServlet
CONTENT_TYPE_JSON, errorLogService, logger, userAccountDao
-
-
Constructor Summary
Constructors Constructor Description RestTPacV1Servlet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
doDelete(HttpServletRequest request, HttpServletResponse response)
protected void
doGet(HttpServletRequest request, HttpServletResponse response)
protected void
doPost(HttpServletRequest request, HttpServletResponse response)
protected String
getRestBasePath()
-
Methods inherited from class com.avoka.fc.core.servlet.rest.AbstractRestServlet
getMultiPartRequestMap, getNonEmptyRequestPaths, getRequestParamsMap, getRequestPaths, getThreadObjectContext, getUserAccount, isAuthorized, isAuthorized, logRequest, marshallJsonObject, renderJsonResponse, renderResponse, setNoCacheHeaders
-
Methods inherited from class javax.servlet.http.HttpServlet
doHead, doOptions, doPut, doTrace, getLastModified, service, service
-
Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, init, log, log
-
-
-
-
Field Detail
-
PARAM_ARCHIVE_FILE
public static final String PARAM_ARCHIVE_FILE
The parameter pointing to the archive file for upload operations- See Also:
- Constant Field Values
-
PARAM_OVERRIDE
public static final String PARAM_OVERRIDE
The parameter pointing to overriding existing assets- See Also:
- Constant Field Values
-
-
Method Detail
-
getRestBasePath
protected String getRestBasePath()
- Specified by:
getRestBasePath
in classAbstractRestServlet
- Returns:
- the REST API base path
- See Also:
AbstractRestServlet.getRestBasePath()
-
doGet
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
- Overrides:
doGet
in classHttpServlet
- Throws:
ServletException
IOException
- See Also:
HttpServlet.doGet(HttpServletRequest, HttpServletResponse)
-
doDelete
protected void doDelete(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
- Overrides:
doDelete
in classHttpServlet
- Throws:
ServletException
IOException
- See Also:
HttpServlet.doDelete(HttpServletRequest, HttpServletResponse)
-
doPost
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
- Overrides:
doPost
in classHttpServlet
- Throws:
ServletException
IOException
- See Also:
HttpServlet.doPost(HttpServletRequest, HttpServletResponse)
-
-