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 class
PersistedSessionOption.Strategy
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
PROPERTY_NAME
The 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 boolean
equals(java.lang.Object o)
static PersistedSessionOption
fromSession(long sessionId)
static PersistedSessionOption
fromSession(long sessionId, PersistedSessionOption.Strategy strategy)
java.lang.String
getPropertyName()
long
getSessionId()
PersistedSessionOption.Strategy
getStrategy()
int
hashCode()
boolean
isNewSession()
static PersistedSessionOption
newSession()
static PersistedSessionOption
newSession(PersistedSessionOption.Strategy strategy)
java.lang.String
toString()
-
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:
getPropertyName
in 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:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-