Class AuthenticationProperties.CacheProperties
- java.lang.Object
-
- org.camunda.bpm.spring.boot.starter.property.AuthenticationProperties.CacheProperties
-
- Enclosing class:
- AuthenticationProperties
public static class AuthenticationProperties.CacheProperties extends java.lang.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)
java.lang.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.
-
-
Method Detail
-
isTtlEnabled
public boolean isTtlEnabled()
-
setTtlEnabled
public void setTtlEnabled(boolean ttlEnabled)
-
getTimeToLive
public long getTimeToLive()
-
setTimeToLive
public void setTimeToLive(long timeToLive)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-