Class ServletContextUtil
java.lang.Object
org.operaton.bpm.webapp.impl.util.ServletContextUtil
With Operaton.13 we introduced the application path prefix /operaton to Spring Boot.
The application path is set in Spring Boot's servlet context and is consumed by filters and
servlets of the Operaton Webapp. This util class holds the methods to get and set the
application path.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionprotected static StringbuildTelemetrySentAttribute(String webappName, String engineName) static StringgetAppPath(jakarta.servlet.ServletContext servletContext) Consumed by Operaton CE invalid input: '&' EE Webapp: Retrieves the application path from Spring Boot's servlet context.static DategetAuthCacheValidationTime(jakarta.servlet.ServletContext servletContext) ReturnsauthCacheValidationTimefrom servlet context to be used on initial login authentication.static booleanisTelemetryDataSentAlready(String webappName, String engineName, jakarta.servlet.ServletContext servletContext) static voidsetAppPath(String applicationPath, jakarta.servlet.ServletContext servletContext) Sets an application path into Spring Boot's servlet context.static voidsetCacheTTLForLogin(long cacheTimeToLive, jakarta.servlet.ServletContext servletContext) Sets in theAuthenticationFilterto be used on initial login authentication.static voidsetTelemetryDataSent(String webappName, String engineName, jakarta.servlet.ServletContext servletContext) Marks the web application as successfully sent to the engine as telemetry info
-
Field Details
-
APP_PATH_ATTR_NAME
- See Also:
-
SUCCESSFUL_ET_ATTR_NAME
- See Also:
-
AUTH_CACHE_TTL_ATTR_NAME
- See Also:
-
-
Method Details
-
getAppPath
Consumed by Operaton CE invalid input: '&' EE Webapp: Retrieves the application path from Spring Boot's servlet context.- Parameters:
servletContext- that holds the application path- Returns:
- a non-empty
Stringcontaining the application path or an emptyStringwhen no application path was set.
-
setAppPath
public static void setAppPath(String applicationPath, jakarta.servlet.ServletContext servletContext) Sets an application path into Spring Boot's servlet context.- Parameters:
applicationPath- to be set into Spring Boot's servlet contextservletContext- of Spring Boot the application path should be set into
-
isTelemetryDataSentAlready
public static boolean isTelemetryDataSentAlready(String webappName, String engineName, jakarta.servlet.ServletContext servletContext) - Returns:
- whether the web application has already successfully been sent to the engine as telemetry info or not.
-
setTelemetryDataSent
public static void setTelemetryDataSent(String webappName, String engineName, jakarta.servlet.ServletContext servletContext) Marks the web application as successfully sent to the engine as telemetry info -
buildTelemetrySentAttribute
-
setCacheTTLForLogin
public static void setCacheTTLForLogin(long cacheTimeToLive, jakarta.servlet.ServletContext servletContext) Sets in theAuthenticationFilterto be used on initial login authentication. SeeAuthenticationFilter.doFilter(ServletRequest, ServletResponse, FilterChain) -
getAuthCacheValidationTime
ReturnsauthCacheValidationTimefrom servlet context to be used on initial login authentication. SeeUserAuthenticationResource.doLogin(String, String, String, String)
-