Class CookieConfigurator
- java.lang.Object
-
- org.camunda.bpm.webapp.impl.security.filter.CookieConfigurator
-
public class CookieConfigurator extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCookieConfigurator.SameSiteOption
-
Field Summary
Fields Modifier and Type Field Description protected StringcookieNameprotected static StringENABLE_SAME_SITE_PARAMprotected static StringENABLE_SECURE_PARAMprotected booleanisSameSiteCookieEnabledprotected booleanisSecureCookieEnabledprotected static StringSAME_SITE_OPTION_PARAMprotected static StringSAME_SITE_VALUE_PARAMprotected StringsameSiteCookieValue
-
Constructor Summary
Constructors Constructor Description CookieConfigurator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetConfig()StringgetConfig(String currentHeader)StringgetCookieName(String defaultName)protected booleanisBlank(String s)protected booleanisEmpty(String string)voidparseParams(javax.servlet.FilterConfig filterConfig)
-
-
-
Field Detail
-
ENABLE_SECURE_PARAM
protected static final String ENABLE_SECURE_PARAM
- See Also:
- Constant Field Values
-
ENABLE_SAME_SITE_PARAM
protected static final String ENABLE_SAME_SITE_PARAM
- See Also:
- Constant Field Values
-
SAME_SITE_OPTION_PARAM
protected static final String SAME_SITE_OPTION_PARAM
- See Also:
- Constant Field Values
-
SAME_SITE_VALUE_PARAM
protected static final String SAME_SITE_VALUE_PARAM
- See Also:
- Constant Field Values
-
isSecureCookieEnabled
protected boolean isSecureCookieEnabled
-
isSameSiteCookieEnabled
protected boolean isSameSiteCookieEnabled
-
sameSiteCookieValue
protected String sameSiteCookieValue
-
cookieName
protected String cookieName
-
-