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.Strategy
-
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)static PersistedSessionOptionfromSession(long sessionId, PersistedSessionOption.Strategy strategy)java.lang.StringgetPropertyName()longgetSessionId()PersistedSessionOption.StrategygetStrategy()inthashCode()booleanisNewSession()static PersistedSessionOptionnewSession()static PersistedSessionOptionnewSession(PersistedSessionOption.Strategy strategy)java.lang.StringtoString()-
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()
-
newSession
public static PersistedSessionOption newSession(PersistedSessionOption.Strategy strategy)
-
fromSession
public static PersistedSessionOption fromSession(long sessionId)
-
fromSession
public static PersistedSessionOption fromSession(long sessionId, PersistedSessionOption.Strategy strategy)
-
getPropertyName
public java.lang.String getPropertyName()
- Specified by:
getPropertyNamein interfaceOption- Returns:
- the property name for this option
-
getSessionId
public long getSessionId()
-
getStrategy
public PersistedSessionOption.Strategy getStrategy()
-
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
-
-