Package org.kie.api.runtime.conf
Class PersistedSessionOption
- java.lang.Object
-
- org.kie.api.runtime.conf.PersistedSessionOption
-
- All Implemented Interfaces:
java.io.Serializable,Option,SingleValueOption,KieSessionOption,SingleValueKieSessionOption
public class PersistedSessionOption extends java.lang.Object implements SingleValueKieSessionOption
A class for the session persistence configuration.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPersistedSessionOption.PersistenceStrategystatic classPersistedSessionOption.SafepointStrategy
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringPROPERTY_NAMEThe property name for the clock type configuration-
Fields inherited from interface org.kie.api.runtime.conf.KieSessionOption
TYPE
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)static PersistedSessionOptionfromSession(long sessionId)PersistedSessionOption.PersistenceStrategygetPersistenceStrategy()java.lang.StringgetPropertyName()PersistedSessionOption.SafepointStrategygetSafepointStrategy()longgetSessionId()inthashCode()booleanisNewSession()static PersistedSessionOptionnewSession()java.lang.StringtoString()PersistedSessionOptionwithPersistenceStrategy(PersistedSessionOption.PersistenceStrategy persistenceStrategy)PersistedSessionOptionwithSafepointStrategy(PersistedSessionOption.SafepointStrategy safepointStrategy)-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.kie.api.runtime.conf.KieSessionOption
type
-
Methods inherited from interface org.kie.api.conf.Option
propertyName
-
-
-
-
Field Detail
-
PROPERTY_NAME
public static final java.lang.String PROPERTY_NAME
The property name for the clock type configuration- See Also:
- Constant Field Values
-
-
Method Detail
-
newSession
public static PersistedSessionOption newSession()
-
fromSession
public static PersistedSessionOption fromSession(long sessionId)
-
getPropertyName
public java.lang.String getPropertyName()
- Specified by:
getPropertyNamein interfaceOption- Returns:
- the property name for this option
-
getSessionId
public long getSessionId()
-
getPersistenceStrategy
public PersistedSessionOption.PersistenceStrategy getPersistenceStrategy()
-
withPersistenceStrategy
public PersistedSessionOption withPersistenceStrategy(PersistedSessionOption.PersistenceStrategy persistenceStrategy)
-
getSafepointStrategy
public PersistedSessionOption.SafepointStrategy getSafepointStrategy()
-
withSafepointStrategy
public PersistedSessionOption withSafepointStrategy(PersistedSessionOption.SafepointStrategy safepointStrategy)
-
isNewSession
public boolean isNewSession()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-