test new codecov
This commit is contained in:
parent
31d42764fa
commit
84d32393fb
1 changed files with 8 additions and 0 deletions
|
@ -52,8 +52,16 @@ public interface ExamProctoringRoomService {
|
||||||
* @return Result referencing the created room name or to an error when happened */
|
* @return Result referencing the created room name or to an error when happened */
|
||||||
Result<RemoteProctoringRoom> createTownhallRoom(Long examId, String subject);
|
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);
|
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);
|
void disposeTownhallRoom(Long examId);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue