Search in sources :

Example 11 with EventDAO

use of org.wso2.carbon.humantask.core.dao.EventDAO in project carbon-business-process by wso2.

the class DeleteFault method createTaskEvent.

@Override
protected EventDAO createTaskEvent() {
    EventDAO taskEvent = super.createTaskEvent();
    taskEvent.setDetails("");
    return taskEvent;
}
Also used : EventDAO(org.wso2.carbon.humantask.core.dao.EventDAO)

Example 12 with EventDAO

use of org.wso2.carbon.humantask.core.dao.EventDAO in project carbon-business-process by wso2.

the class DeleteOutput method createTaskEvent.

@Override
protected EventDAO createTaskEvent() {
    EventDAO taskEvent = super.createTaskEvent();
    taskEvent.setDetails("");
    return taskEvent;
}
Also used : EventDAO(org.wso2.carbon.humantask.core.dao.EventDAO)

Example 13 with EventDAO

use of org.wso2.carbon.humantask.core.dao.EventDAO in project carbon-business-process by wso2.

the class Remove method createTaskEvent.

@Override
protected EventDAO createTaskEvent() {
    EventDAO taskEvent = super.createTaskEvent();
    taskEvent.setDetails("");
    return taskEvent;
}
Also used : EventDAO(org.wso2.carbon.humantask.core.dao.EventDAO)

Example 14 with EventDAO

use of org.wso2.carbon.humantask.core.dao.EventDAO in project carbon-business-process by wso2.

the class SetPriority method createTaskEvent.

@Override
protected EventDAO createTaskEvent() {
    EventDAO taskEvent = super.createTaskEvent();
    taskEvent.setDetails("Priority changed to :" + newPriority);
    return taskEvent;
}
Also used : EventDAO(org.wso2.carbon.humantask.core.dao.EventDAO)

Example 15 with EventDAO

use of org.wso2.carbon.humantask.core.dao.EventDAO in project carbon-business-process by wso2.

the class Skip method createTaskEvent.

@Override
protected EventDAO createTaskEvent() {
    EventDAO taskEvent = super.createTaskEvent();
    taskEvent.setDetails(" ");
    return taskEvent;
}
Also used : EventDAO(org.wso2.carbon.humantask.core.dao.EventDAO)

Aggregations

EventDAO (org.wso2.carbon.humantask.core.dao.EventDAO)15 TaskEventInfo (org.wso2.carbon.humantask.core.api.event.TaskEventInfo)2 TaskDAO (org.wso2.carbon.humantask.core.dao.TaskDAO)1