mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
Add getActionIdentity
This commit is contained in:
@ -56,6 +56,16 @@ public class AbstractActionInput
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
public String getActionIdentity()
|
||||||
|
{
|
||||||
|
return (getClass().getSimpleName());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
** performance instance validation (if not previously done).
|
** performance instance validation (if not previously done).
|
||||||
* // todo - verify this is happening (e.g., when context is set i guess)
|
* // todo - verify this is happening (e.g., when context is set i guess)
|
||||||
|
@ -46,6 +46,17 @@ public class AbstractTableActionInput extends AbstractActionInput
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
@Override
|
||||||
|
public String getActionIdentity()
|
||||||
|
{
|
||||||
|
return (getClass().getSimpleName() + ":" + getTableName());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
@ -71,6 +71,17 @@ public class RunProcessInput extends AbstractActionInput
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
@Override
|
||||||
|
public String getActionIdentity()
|
||||||
|
{
|
||||||
|
return (getClass().getSimpleName() + ":" + getProcessName());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
** e.g., for steps after the first step in a process, seed the data in a run
|
** e.g., for steps after the first step in a process, seed the data in a run
|
||||||
** function request from a process state.
|
** function request from a process state.
|
||||||
|
@ -50,6 +50,17 @@ public class RenderWidgetInput extends AbstractActionInput
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
@Override
|
||||||
|
public String getActionIdentity()
|
||||||
|
{
|
||||||
|
return (getClass().getSimpleName() + ":" + widgetMetaData.getName());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
** Getter for widgetMetaData
|
** Getter for widgetMetaData
|
||||||
**
|
**
|
||||||
|
Reference in New Issue
Block a user