Search in sources :

Example 6 with EventDAO

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

the class Exit 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 7 with EventDAO

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

the class Fail 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 8 with EventDAO

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

the class Forward method createTaskEvent.

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

Example 9 with EventDAO

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

the class AddComment 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 10 with EventDAO

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

the class DeleteComment 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