Uses of Record Class
at.jku.dke.etutor.task_app.dto.GradingDto
Packages that use GradingDto
Package
Description
This package contains controller interfaces that task apps should implement.
This package contains the base-classes for database entities used to store task groups, tasks and submissions.
This package contains the data transfer objects (DTOs) for the REST-endpoints.
This package contains base classes of services that can be used to manage tasks, ...
-
Uses of GradingDto in at.jku.dke.etutor.task_app.controllers
Methods in at.jku.dke.etutor.task_app.controllers that return types with arguments of type GradingDtoModifier and TypeMethodDescriptionReturns the evaluation result for a submission.Returns the evaluation result for a submission. -
Uses of GradingDto in at.jku.dke.etutor.task_app.data.entities
Methods in at.jku.dke.etutor.task_app.data.entities that return GradingDtoModifier and TypeMethodDescriptionBaseSubmission.getEvaluationResult()
Gets the evaluation results.Submission.getEvaluationResult()
Gets the evaluation results.Methods in at.jku.dke.etutor.task_app.data.entities with parameters of type GradingDtoModifier and TypeMethodDescriptionvoid
BaseSubmission.setEvaluationResult
(GradingDto evaluationResult) Sets the evaluation results.void
Submission.setEvaluationResult
(GradingDto evaluationResult) Sets the evaluation results. -
Uses of GradingDto in at.jku.dke.etutor.task_app.dto
Methods in at.jku.dke.etutor.task_app.dto that return GradingDtoModifier and TypeMethodDescriptionSubmissionDto.evaluationResult()
Returns the value of theevaluationResult
record component.GradingResultDto.grading()
Returns the value of thegrading
record component.Constructors in at.jku.dke.etutor.task_app.dto with parameters of type GradingDtoModifierConstructorDescriptionGradingResultDto
(UUID submissionId, @NotNull GradingDto grading) Creates an instance of aGradingResultDto
record class.SubmissionDto
(@NotNull UUID id, @Size(max=255) String userId, @Size(max=255) String assignmentId, @jakarta.validation.constraints.NotNull long taskId, @NotNull @PastOrPresent Instant submissionTime, @NotNull @Size(min=2,max=2) @Pattern(regexp="de|en") String language, @jakarta.validation.constraints.NotNull,@jakarta.validation.constraints.Min(0L),@jakarta.validation.constraints.Max(3L) int feedbackLevel, @NotNull SubmissionMode mode, T submission, GradingDto evaluationResult) Creates an instance of aSubmissionDto
record class. -
Uses of GradingDto in at.jku.dke.etutor.task_app.services
Methods in at.jku.dke.etutor.task_app.services that return GradingDtoModifier and TypeMethodDescriptionprotected abstract GradingDto
BaseSubmissionService.evaluate
(SubmitSubmissionDto<U> dto) Evaluates the submission.BaseSubmissionService.getEvaluationResult
(UUID id) Returns the evaluation results for the specified submission.SubmissionService.getEvaluationResult
(UUID id) Returns the evaluation results for the specified submission.