Uses of Class
cz.metacentrum.perun.taskslib.model.TaskResult
Package
Description
-
Uses of TaskResult in cz.metacentrum.perun.core.api
Modifier and TypeMethodDescriptionTasksManager.getTaskResultById
(PerunSession session, int readInt) Get TaskResult given its id.Modifier and TypeMethodDescriptionTasksManager.getTaskResults
(PerunSession perunSession) Get all TaskResults.TasksManager.getTaskResultsByDestinations
(PerunSession session, List<String> destinationsNames) Returns task results for defined destinations (string representation).TasksManager.getTaskResultsByTask
(PerunSession sess, int taskId) Get all TaskResult's for given TaskTasksManager.getTaskResultsByTaskAndDestination
(PerunSession session, int taskId, int destinationId) Find all task results for given task and destination.TasksManager.getTaskResultsByTaskOnlyNewest
(PerunSession session, int taskId) Retrieve the newest task results for given task. -
Uses of TaskResult in cz.metacentrum.perun.core.bl
Modifier and TypeMethodDescriptionTasksManagerBl.getTaskResultById
(PerunSession sess, int taskResultId) Retrieve all task results for given task (by task id)Modifier and TypeMethodDescriptionTasksManagerBl.getTaskResults
(PerunSession sess) Retrieve all task results from DB.TasksManagerBl.getTaskResultsByDestinations
(PerunSession session, List<String> destinationsNames) Returns task results for defined destinations (string representation).TasksManagerBl.getTaskResultsByTask
(PerunSession sess, int taskId) Retrieve all tasks results for given taskTasksManagerBl.getTaskResultsByTaskAndDestination
(PerunSession sess, int taskId, int destinationId) List newest TaskResults tied to a certain task and destinationTasksManagerBl.getTaskResultsByTaskOnlyNewest
(PerunSession sess, int taskId) List newest TaskResults tied to a certain taskModifier and TypeMethodDescriptionint
TasksManagerBl.insertNewTaskResult
(PerunSession sess, TaskResult taskResult) Insert TaskResult into DB. -
Uses of TaskResult in cz.metacentrum.perun.core.blImpl
Modifier and TypeMethodDescriptionTasksManagerBlImpl.getTaskResultById
(PerunSession sess, int taskResultId) Modifier and TypeMethodDescriptionTasksManagerBlImpl.getTaskResults
(PerunSession sess) TasksManagerBlImpl.getTaskResultsByDestinations
(PerunSession session, List<String> destinationsNames) TasksManagerBlImpl.getTaskResultsByTask
(PerunSession sess, int taskId) TasksManagerBlImpl.getTaskResultsByTaskAndDestination
(PerunSession sess, int taskId, int destinationId) TasksManagerBlImpl.getTaskResultsByTaskOnlyNewest
(PerunSession sess, int taskId) Modifier and TypeMethodDescriptionint
TasksManagerBlImpl.insertNewTaskResult
(PerunSession sess, TaskResult taskResult) -
Uses of TaskResult in cz.metacentrum.perun.core.entry
Modifier and TypeMethodDescriptionTasksManagerEntry.getTaskResultById
(PerunSession perunSession, int taskResultId) Modifier and TypeMethodDescriptionTasksManagerEntry.getTaskResults
(PerunSession perunSession) TasksManagerEntry.getTaskResultsByDestinations
(PerunSession session, List<String> destinationsNames) TasksManagerEntry.getTaskResultsByTask
(PerunSession sess, int taskId) TasksManagerEntry.getTaskResultsByTaskAndDestination
(PerunSession session, int taskId, int destinationId) TasksManagerEntry.getTaskResultsByTaskOnlyNewest
(PerunSession session, int taskId) -
Uses of TaskResult in cz.metacentrum.perun.core.impl
Modifier and TypeFieldDescriptionstatic final RowMapper
<TaskResult> TasksManagerImpl.TASKRESULT_ROWMAPPER
Modifier and TypeMethodDescriptionTasksManagerImpl.getTaskResults()
TasksManagerImpl.getTaskResultsByDestinations
(List<String> destinationsNames) TasksManagerImpl.getTaskResultsByTask
(int taskId) TasksManagerImpl.getTaskResultsByTaskAndDestination
(int taskId, int destinationId) TasksManagerImpl.getTaskResultsByTaskOnlyNewest
(int taskId) Modifier and TypeMethodDescriptionint
TasksManagerImpl.insertNewTaskResult
(TaskResult taskResult) -
Uses of TaskResult in cz.metacentrum.perun.core.implApi
Modifier and TypeMethodDescriptionTasksManagerImplApi.getTaskResultById
(int taskResultId) Get TaskResult by its IDModifier and TypeMethodDescriptionTasksManagerImplApi.getTaskResults()
List TaskResultsTasksManagerImplApi.getTaskResultsByDestinations
(List<String> destinationsNames) Returns list of tasks results for defined destinations (string representation).TasksManagerImplApi.getTaskResultsByTask
(int taskId) List TaskResults tied to a certain taskTasksManagerImplApi.getTaskResultsByTaskAndDestination
(int taskId, int destinationId) List newest TaskResults tied to a certain task and destinationTasksManagerImplApi.getTaskResultsByTaskOnlyNewest
(int taskId) List newest TaskResults tied to a certain taskModifier and TypeMethodDescriptionint
TasksManagerImplApi.insertNewTaskResult
(TaskResult taskResult) Store task result into DB.