Class LocalWorkflowRunConfiguration
- java.lang.Object
-
- org.apache.hop.core.variables.Variables
-
- org.apache.hop.workflow.engines.empty.EmptyWorkflowRunConfiguration
-
- org.apache.hop.workflow.engines.local.LocalWorkflowRunConfiguration
-
- All Implemented Interfaces:
Cloneable,IVariables,IWorkflowEngineRunConfiguration
@GuiPlugin(description="Local workflow run configuration widgets") public class LocalWorkflowRunConfiguration extends EmptyWorkflowRunConfiguration implements IWorkflowEngineRunConfiguration
-
-
Field Summary
Fields Modifier and Type Field Description protected booleansafeModeEnabledprotected booleantransactional
-
Constructor Summary
Constructors Constructor Description LocalWorkflowRunConfiguration()LocalWorkflowRunConfiguration(LocalWorkflowRunConfiguration config)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LocalWorkflowRunConfigurationclone()booleanisSafeModeEnabled()Gets safeModeEnabledbooleanisTransactional()Gets transactionalvoidsetSafeModeEnabled(boolean safeModeEnabled)voidsetTransactional(boolean transactional)-
Methods inherited from class org.apache.hop.workflow.engines.empty.EmptyWorkflowRunConfiguration
equals, getEnginePluginId, getEnginePluginName, hashCode, setEnginePluginId, setEnginePluginName
-
Methods inherited from class org.apache.hop.core.variables.Variables
copyFrom, getADefaultVariableSpace, getParentVariables, getVariable, getVariable, getVariableBoolean, getVariableNames, initializeFrom, resolve, resolve, resolve, setParentVariables, setVariable, setVariables, shareWith
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.hop.core.variables.IVariables
copyFrom, getParentVariables, getVariable, getVariable, getVariableBoolean, getVariableNames, initializeFrom, resolve, resolve, resolve, setParentVariables, setVariable, setVariables, shareWith
-
Methods inherited from interface org.apache.hop.workflow.config.IWorkflowEngineRunConfiguration
getEnginePluginId, getEnginePluginName, setEnginePluginId, setEnginePluginName
-
-
-
-
Field Detail
-
safeModeEnabled
@GuiWidgetElement(order="20", parentId="WorkflowRunConfiguration-PluginSpecific-Options", type=CHECKBOX, label="i18n:org.apache.hop.ui.pipeline.config:PipelineRunConfigurationDialog.SafeModeEnabled.Label") protected boolean safeModeEnabled
-
transactional
@GuiWidgetElement(id="transactional", order="090", parentId="WorkflowRunConfiguration-PluginSpecific-Options", type=CHECKBOX, label="i18n:org.apache.hop.ui.workflow.config:WorkflowRunConfigurationDialog.Transactional.Label", toolTip="i18n:org.apache.hop.ui.workflow.config:WorkflowRunConfigurationDialog.Transactional.ToolTip") protected boolean transactional
-
-
Constructor Detail
-
LocalWorkflowRunConfiguration
public LocalWorkflowRunConfiguration()
-
LocalWorkflowRunConfiguration
public LocalWorkflowRunConfiguration(LocalWorkflowRunConfiguration config)
-
-
Method Detail
-
clone
public LocalWorkflowRunConfiguration clone()
- Specified by:
clonein interfaceIWorkflowEngineRunConfiguration- Overrides:
clonein classEmptyWorkflowRunConfiguration
-
isSafeModeEnabled
public boolean isSafeModeEnabled()
Gets safeModeEnabled- Returns:
- value of safeModeEnabled
-
setSafeModeEnabled
public void setSafeModeEnabled(boolean safeModeEnabled)
- Parameters:
safeModeEnabled- The safeModeEnabled to set
-
isTransactional
public boolean isTransactional()
Gets transactional- Returns:
- value of transactional
-
setTransactional
public void setTransactional(boolean transactional)
- Parameters:
transactional- The transactional to set
-
-