Class AuthenticationProperties.CacheProperties
- java.lang.Object
-
- org.camunda.bpm.spring.boot.starter.property.AuthenticationProperties.CacheProperties
-
- Enclosing class:
- AuthenticationProperties
public static class AuthenticationProperties.CacheProperties extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static long
AUTH_CACHE_TIME_TO_LIVE
protected long
timeToLive
Authentication time to live.protected boolean
ttlEnabled
Enables authentication time to live.
-
Constructor Summary
Constructors Constructor Description CacheProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getTimeToLive()
boolean
isTtlEnabled()
void
setTimeToLive(long timeToLive)
void
setTtlEnabled(boolean ttlEnabled)
String
toString()
-
-
-
Field Detail
-
AUTH_CACHE_TIME_TO_LIVE
public static final long AUTH_CACHE_TIME_TO_LIVE
- See Also:
- Constant Field Values
-
ttlEnabled
protected boolean ttlEnabled
Enables authentication time to live.
-
timeToLive
protected long timeToLive
Authentication time to live.
-
-