Package step.artefacts
Class AbstractForBlock
- java.lang.Object
-
- step.core.accessors.AbstractIdentifiableObject
-
- step.core.accessors.AbstractOrganizableObject
-
- step.core.artefacts.AbstractArtefact
-
- step.artefacts.AbstractForBlock
-
- Direct Known Subclasses:
DataSetArtefact
,ForBlock
,ForEachBlock
public class AbstractForBlock extends AbstractArtefact
-
-
Field Summary
-
Fields inherited from class step.core.artefacts.AbstractArtefact
attachments, children, customAttributes, description, dynamicName, persistNode, useDynamicName
-
-
Constructor Summary
Constructors Constructor Description AbstractForBlock()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DataPoolConfiguration
getDataSource()
String
getDataSourceType()
DynamicValue<String>
getGlobalCounter()
DynamicValue<String>
getItem()
DynamicValue<Integer>
getMaxFailedLoops()
DynamicValue<Integer>
getThreads()
DynamicValue<String>
getUserItem()
void
init()
void
setDataSource(DataPoolConfiguration dataSource)
void
setDataSourceType(String dataSourceType)
void
setGlobalCounter(DynamicValue<String> globalCounter)
void
setItem(DynamicValue<String> item)
void
setMaxFailedLoops(DynamicValue<Integer> maxFailedLoops)
void
setThreads(DynamicValue<Integer> threads)
void
setUserItem(DynamicValue<String> userItem)
-
Methods inherited from class step.core.artefacts.AbstractArtefact
addAttachment, addChild, addCustomAttribute, equals, getArtefactName, getAttachments, getChildren, getContinueParentNodeExecutionOnError, getCustomAttribute, getCustomAttributes, getDescription, getDynamicName, getInstrumentNode, getSkipNode, hashCode, isCreateSkeleton, isPersistNode, isPropertyArefact, isUseDynamicName, setAttachments, setChildren, setContinueParentNodeExecutionOnError, setCustomAttributes, setDescription, setDynamicName, setInstrumentNode, setNameDynamically, setPersistNode, setSkipNode, setUseDynamicName
-
Methods inherited from class step.core.accessors.AbstractOrganizableObject
addAttribute, getAttribute, getAttributes, hasAttribute, setAttributes
-
-
-
-
Method Detail
-
init
@PostConstruct public void init()
-
getDataSourceType
public String getDataSourceType()
-
setDataSourceType
public void setDataSourceType(String dataSourceType)
-
getDataSource
public DataPoolConfiguration getDataSource()
-
setDataSource
public void setDataSource(DataPoolConfiguration dataSource)
-
getThreads
public DynamicValue<Integer> getThreads()
-
setThreads
public void setThreads(DynamicValue<Integer> threads)
-
getMaxFailedLoops
public DynamicValue<Integer> getMaxFailedLoops()
-
setMaxFailedLoops
public void setMaxFailedLoops(DynamicValue<Integer> maxFailedLoops)
-
getItem
public DynamicValue<String> getItem()
-
setItem
public void setItem(DynamicValue<String> item)
-
getGlobalCounter
public DynamicValue<String> getGlobalCounter()
-
setGlobalCounter
public void setGlobalCounter(DynamicValue<String> globalCounter)
-
getUserItem
public DynamicValue<String> getUserItem()
-
setUserItem
public void setUserItem(DynamicValue<String> userItem)
-
-