Package com.soffid.iam.service.ejb
Interface ScheduledTaskService
-
public interface ScheduledTaskService
EJB ScheduledTaskService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScheduledTask
create(ScheduledTask task)
List<ScheduledTask>
listServerTasks(String server)
List<ScheduledTask>
listTasks()
ScheduledTask
load(Long taskId)
void
remove(ScheduledTask task)
void
startNow(ScheduledTask task)
ScheduledTask
update(ScheduledTask task)
-
-
-
Method Detail
-
create
ScheduledTask create(ScheduledTask task) throws InternalErrorException, InternalErrorException
- Throws:
InternalErrorException
-
load
ScheduledTask load(Long taskId) throws InternalErrorException
- Throws:
InternalErrorException
-
update
ScheduledTask update(ScheduledTask task) throws InternalErrorException, InternalErrorException
- Throws:
InternalErrorException
-
listServerTasks
List<ScheduledTask> listServerTasks(String server) throws InternalErrorException, InternalErrorException
- Throws:
InternalErrorException
-
listTasks
List<ScheduledTask> listTasks() throws InternalErrorException, InternalErrorException
- Throws:
InternalErrorException
-
remove
void remove(ScheduledTask task) throws InternalErrorException, InternalErrorException
- Throws:
InternalErrorException
-
startNow
void startNow(ScheduledTask task) throws InternalErrorException
- Throws:
InternalErrorException
-
-