Package org.apache.unomi.web
Class ContextServlet
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- org.apache.unomi.web.ContextServlet
-
- All Implemented Interfaces:
Serializable
,javax.servlet.Servlet
,javax.servlet.ServletConfig
@Deprecated public class ContextServlet extends javax.servlet.http.HttpServlet
Deprecated.this servlet is now deprecated, because it have been migrated to REST endpoint. A servlet filter to serve a context-specific Javascript containing the current request context object.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContextServlet()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
destroy()
Deprecated.void
init(javax.servlet.ServletConfig config)
Deprecated.void
service(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
Deprecated.void
setConfigSharingService(ConfigSharingService configSharingService)
Deprecated.void
setProfileIdCookieDomain(String profileIdCookieDomain)
Deprecated.void
setProfileIdCookieHttpOnly(boolean profileIdCookieHttpOnly)
Deprecated.void
setProfileIdCookieMaxAgeInSeconds(int profileIdCookieMaxAgeInSeconds)
Deprecated.void
setProfileIdCookieName(String profileIdCookieName)
Deprecated.void
setPublicPostRequestBytesLimit(int publicPostRequestBytesLimit)
Deprecated.-
Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doGet, doHead, doOptions, doPost, doPut, doTrace, getLastModified, service
-
-
-
-
Method Detail
-
init
public void init(javax.servlet.ServletConfig config) throws javax.servlet.ServletException
Deprecated.- Specified by:
init
in interfacejavax.servlet.Servlet
- Overrides:
init
in classjavax.servlet.GenericServlet
- Throws:
javax.servlet.ServletException
-
service
public void service(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, IOException
Deprecated.- Overrides:
service
in classjavax.servlet.http.HttpServlet
- Throws:
javax.servlet.ServletException
IOException
-
destroy
public void destroy()
Deprecated.- Specified by:
destroy
in interfacejavax.servlet.Servlet
- Overrides:
destroy
in classjavax.servlet.GenericServlet
-
setProfileIdCookieDomain
public void setProfileIdCookieDomain(String profileIdCookieDomain)
Deprecated.
-
setProfileIdCookieName
public void setProfileIdCookieName(String profileIdCookieName)
Deprecated.
-
setProfileIdCookieMaxAgeInSeconds
public void setProfileIdCookieMaxAgeInSeconds(int profileIdCookieMaxAgeInSeconds)
Deprecated.
-
setProfileIdCookieHttpOnly
public void setProfileIdCookieHttpOnly(boolean profileIdCookieHttpOnly)
Deprecated.
-
setPublicPostRequestBytesLimit
public void setPublicPostRequestBytesLimit(int publicPostRequestBytesLimit)
Deprecated.
-
setConfigSharingService
public void setConfigSharingService(ConfigSharingService configSharingService)
Deprecated.
-
-