Package org.wso2.carbon.ntask.core
Class AbstractTask
- java.lang.Object
-
- org.wso2.carbon.ntask.core.AbstractTask
-
-
Constructor Summary
Constructors Constructor Description AbstractTask()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>
getProperties()
void
init()
This method is called once after properties are set in the task, and right before the task is executed.void
setProperties(Map<String,String> properties)
This method is called initially to set the task properties.
-
-
-
Method Detail
-
setProperties
public void setProperties(Map<String,String> properties)
Description copied from interface:Task
This method is called initially to set the task properties.- Specified by:
setProperties
in interfaceTask
- Parameters:
properties
- The task properties
-
init
public void init()
Description copied from interface:Task
This method is called once after properties are set in the task, and right before the task is executed.
-
-