test new codecov

This commit is contained in:
anhefti 2020-11-16 17:48:18 +01:00
parent 31d42764fa
commit 84d32393fb
No known key found for this signature in database
GPG key ID: E9AD9471B6BC114D

View file

@ -52,8 +52,16 @@ public interface ExamProctoringRoomService {
* @return Result referencing the created room name or to an error when happened */
Result<RemoteProctoringRoom> createTownhallRoom(Long examId, String subject);
/** Get the RemoteProctoringRoom data for the town-hall of specified exam.
* If the town-hall is not active for the specified exam, returns the RemoteProctoringRoom.NULL_ROOM
*
* @param examId the exam identifier
* @return Result refer to the RemoteProctoringRoom data or to an error when happened */
Result<RemoteProctoringRoom> getTownhallRoomData(final Long examId);
/** Used to close and dispose an active town-hall for the specified exam.
*
* @param examId exam identifier */
void disposeTownhallRoom(Long examId);
}