public class DefaultOperationListEntry extends java.lang.Object implements OperationListEntry
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
PERSISTENT_DESCRIPTION
Description of persistence definition
|
static java.lang.String |
PERSISTENT_NAME
Persistence definition name
|
| Constructor and Description |
|---|
DefaultOperationListEntry(Operation operation,
DynObject parameters) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
clone()
Creates a copy of the object.
|
java.lang.String |
getLookpupParameterName(java.lang.String name)
TODO:
|
java.util.Map<java.lang.String,java.lang.String> |
getLookupParameters() |
Operation |
getOperation() |
DynObject |
getParameters() |
boolean |
isActive() |
void |
loadFromState(PersistentState state)
Set the state of the object from the state passed as parameter.
|
static void |
registerPersistence() |
void |
saveToState(PersistentState state)
Saves the internal state of the object on the provided
PersistentState object.
|
void |
setActive(boolean active)
Active the operation
|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitcloneQuietly, cloneQuietlypublic static final java.lang.String PERSISTENT_NAME
public static final java.lang.String PERSISTENT_DESCRIPTION
public Operation getOperation()
getOperation in interface OperationListEntrypublic DynObject getParameters()
getParameters in interface OperationListEntrypublic boolean isActive()
isActive in interface OperationListEntrypublic void setActive(boolean active)
OperationListEntrysetActive in interface OperationListEntrypublic void saveToState(PersistentState state) throws PersistenceException
PersistentsaveToState in interface PersistentPersistenceExceptionpublic void loadFromState(PersistentState state) throws PersistenceException
PersistentloadFromState in interface PersistentPersistenceExceptionpublic static void registerPersistence()
public java.lang.String getLookpupParameterName(java.lang.String name)
OperationListEntrygetLookpupParameterName in interface OperationListEntrypublic java.util.Map<java.lang.String,java.lang.String> getLookupParameters()
getLookupParameters in interface OperationListEntrypublic java.lang.Object clone()
throws java.lang.CloneNotSupportedException
Cloneableclone in class java.lang.Objectjava.lang.CloneNotSupportedException - if the instance of the object cannot
be cloned. As this is extending Cloneable so its sure
it implements it, so this exception may be used for problems on specific
object instances.Object#clone()}.