Uses of Class
cz.metacentrum.perun.taskslib.model.TaskResult
Packages that use TaskResult
Package
Description
-
Uses of TaskResult in cz.metacentrum.perun.core.api
Methods in cz.metacentrum.perun.core.api that return TaskResultModifier and TypeMethodDescriptionTasksManager.getTaskResultById
(PerunSession session, int readInt) Get TaskResult given its id.Methods in cz.metacentrum.perun.core.api that return types with arguments of type TaskResultModifier 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
Methods in cz.metacentrum.perun.core.bl that return TaskResultModifier and TypeMethodDescriptionTasksManagerBl.getTaskResultById
(PerunSession sess, int taskResultId) Retrieve all task results for given task (by task id)Methods in cz.metacentrum.perun.core.bl that return types with arguments of type TaskResultModifier 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 taskMethods in cz.metacentrum.perun.core.bl with parameters of type TaskResultModifier and TypeMethodDescriptionint
TasksManagerBl.insertNewTaskResult
(PerunSession sess, TaskResult taskResult) Insert TaskResult into DB. -
Uses of TaskResult in cz.metacentrum.perun.core.blImpl
Methods in cz.metacentrum.perun.core.blImpl that return TaskResultModifier and TypeMethodDescriptionTasksManagerBlImpl.getTaskResultById
(PerunSession sess, int taskResultId) Methods in cz.metacentrum.perun.core.blImpl that return types with arguments of type TaskResultModifier 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) Methods in cz.metacentrum.perun.core.blImpl with parameters of type TaskResultModifier and TypeMethodDescriptionint
TasksManagerBlImpl.insertNewTaskResult
(PerunSession sess, TaskResult taskResult) -
Uses of TaskResult in cz.metacentrum.perun.core.entry
Methods in cz.metacentrum.perun.core.entry that return TaskResultModifier and TypeMethodDescriptionTasksManagerEntry.getTaskResultById
(PerunSession perunSession, int taskResultId) Methods in cz.metacentrum.perun.core.entry that return types with arguments of type TaskResultModifier 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
Fields in cz.metacentrum.perun.core.impl with type parameters of type TaskResultModifier and TypeFieldDescriptionstatic final RowMapper
<TaskResult> TasksManagerImpl.TASKRESULT_ROWMAPPER
Methods in cz.metacentrum.perun.core.impl that return TaskResultMethods in cz.metacentrum.perun.core.impl that return types with arguments of type TaskResultModifier and TypeMethodDescriptionTasksManagerImpl.getTaskResults()
TasksManagerImpl.getTaskResultsByDestinations
(List<String> destinationsNames) TasksManagerImpl.getTaskResultsByTask
(int taskId) TasksManagerImpl.getTaskResultsByTaskAndDestination
(int taskId, int destinationId) TasksManagerImpl.getTaskResultsByTaskOnlyNewest
(int taskId) Methods in cz.metacentrum.perun.core.impl with parameters of type TaskResultModifier and TypeMethodDescriptionint
TasksManagerImpl.insertNewTaskResult
(TaskResult taskResult) -
Uses of TaskResult in cz.metacentrum.perun.core.implApi
Methods in cz.metacentrum.perun.core.implApi that return TaskResultModifier and TypeMethodDescriptionTasksManagerImplApi.getTaskResultById
(int taskResultId) Get TaskResult by its IDMethods in cz.metacentrum.perun.core.implApi that return types with arguments of type TaskResultModifier 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 taskMethods in cz.metacentrum.perun.core.implApi with parameters of type TaskResultModifier and TypeMethodDescriptionint
TasksManagerImplApi.insertNewTaskResult
(TaskResult taskResult) Store task result into DB.