added openAPI doku

This commit is contained in:
anhefti 2021-09-29 10:26:17 +02:00
parent 0c714df6bf
commit 71249825c3
7 changed files with 218 additions and 19 deletions

View file

@ -32,6 +32,10 @@ import ch.ethz.seb.sebserver.webservice.servicelayer.dao.ActivatableEntityDAO;
import ch.ethz.seb.sebserver.webservice.servicelayer.dao.FilterMap; import ch.ethz.seb.sebserver.webservice.servicelayer.dao.FilterMap;
import ch.ethz.seb.sebserver.webservice.servicelayer.dao.UserActivityLogDAO; import ch.ethz.seb.sebserver.webservice.servicelayer.dao.UserActivityLogDAO;
import ch.ethz.seb.sebserver.webservice.servicelayer.validation.BeanValidationService; import ch.ethz.seb.sebserver.webservice.servicelayer.validation.BeanValidationService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.enums.ParameterIn;
import io.swagger.v3.oas.annotations.media.Content;
/** Abstract Entity-Controller that defines generic Entity rest API endpoints that are supported /** Abstract Entity-Controller that defines generic Entity rest API endpoints that are supported
* by all entity types that has activation feature and can be activated or deactivated. * by all entity types that has activation feature and can be activated or deactivated.
@ -57,7 +61,30 @@ public abstract class ActivatableEntityController<T extends GrantEntity, M exten
beanValidationService); beanValidationService);
} }
// TODO use also the getAll method @Operation(
summary = "Get a page of all specific domain entity that are currently active.",
description = "Sorting: the sort parameter to sort the list of entities before paging\n"
+ "the sort parameter is the name of the entity-model attribute to sort with a leading '-' sign for\n"
+ "descending sort order. Note that not all entity-model attribute are suited for sorting while the most\n"
+ "are.\n",
requestBody = @io.swagger.v3.oas.annotations.parameters.RequestBody(
content = { @Content(mediaType = MediaType.APPLICATION_FORM_URLENCODED_VALUE) }),
parameters = {
@Parameter(
name = Page.ATTR_PAGE_NUMBER,
description = "The number of the page to get from the whole list. If the page does not exists, the API retruns with the first page."),
@Parameter(
name = Page.ATTR_PAGE_SIZE,
description = "The size of the page to get."),
@Parameter(
name = Page.ATTR_SORT,
description = "the sort parameter to sort the list of entities before paging"),
@Parameter(
name = API.PARAM_INSTITUTION_ID,
description = "The institution identifier of the request.\n"
+ "Default is the institution identifier of the institution of the current user"),
})
@RequestMapping( @RequestMapping(
path = API.ACTIVE_PATH_SEGMENT, path = API.ACTIVE_PATH_SEGMENT,
method = RequestMethod.GET, method = RequestMethod.GET,
@ -86,6 +113,30 @@ public abstract class ActivatableEntityController<T extends GrantEntity, M exten
() -> getAll(filterMap)).getOrThrow(); () -> getAll(filterMap)).getOrThrow();
} }
@Operation(
summary = "Get a page of all specific domain entity that are currently inactive.",
description = "Sorting: the sort parameter to sort the list of entities before paging\n"
+ "the sort parameter is the name of the entity-model attribute to sort with a leading '-' sign for\n"
+ "descending sort order. Note that not all entity-model attribute are suited for sorting while the most\n"
+ "are.\n",
requestBody = @io.swagger.v3.oas.annotations.parameters.RequestBody(
content = { @Content(mediaType = MediaType.APPLICATION_FORM_URLENCODED_VALUE) }),
parameters = {
@Parameter(
name = Page.ATTR_PAGE_NUMBER,
description = "The number of the page to get from the whole list. If the page does not exists, the API retruns with the first page."),
@Parameter(
name = Page.ATTR_PAGE_SIZE,
description = "The size of the page to get."),
@Parameter(
name = Page.ATTR_SORT,
description = "the sort parameter to sort the list of entities before paging"),
@Parameter(
name = API.PARAM_INSTITUTION_ID,
description = "The institution identifier of the request.\n"
+ "Default is the institution identifier of the institution of the current user"),
})
@RequestMapping( @RequestMapping(
path = API.INACTIVE_PATH_SEGMENT, path = API.INACTIVE_PATH_SEGMENT,
method = RequestMethod.GET, method = RequestMethod.GET,
@ -114,6 +165,16 @@ public abstract class ActivatableEntityController<T extends GrantEntity, M exten
() -> getAll(filterMap)).getOrThrow(); () -> getAll(filterMap)).getOrThrow();
} }
@Operation(
summary = "Activate a single entity by its modelId.",
requestBody = @io.swagger.v3.oas.annotations.parameters.RequestBody(
content = { @Content(mediaType = MediaType.APPLICATION_FORM_URLENCODED_VALUE) }),
parameters = {
@Parameter(
name = API.PARAM_MODEL_ID,
description = "The model identifier of the entity object to activate.",
in = ParameterIn.PATH)
})
@RequestMapping( @RequestMapping(
path = API.PATH_VAR_ACTIVE, path = API.PATH_VAR_ACTIVE,
method = RequestMethod.POST, method = RequestMethod.POST,
@ -124,6 +185,16 @@ public abstract class ActivatableEntityController<T extends GrantEntity, M exten
.getOrThrow(); .getOrThrow();
} }
@Operation(
summary = "Dectivate a single entity by its modelId.",
requestBody = @io.swagger.v3.oas.annotations.parameters.RequestBody(
content = { @Content(mediaType = MediaType.APPLICATION_FORM_URLENCODED_VALUE) }),
parameters = {
@Parameter(
name = API.PARAM_MODEL_ID,
description = "The model identifier of the entity object to deactivate.",
in = ParameterIn.PATH)
})
@RequestMapping( @RequestMapping(
value = API.PATH_VAR_INACTIVE, value = API.PATH_VAR_INACTIVE,
method = RequestMethod.POST, method = RequestMethod.POST,

View file

@ -53,10 +53,12 @@ import ch.ethz.seb.sebserver.webservice.servicelayer.authorization.UserService;
import ch.ethz.seb.sebserver.webservice.servicelayer.dao.FilterMap; import ch.ethz.seb.sebserver.webservice.servicelayer.dao.FilterMap;
import ch.ethz.seb.sebserver.webservice.servicelayer.dao.UserActivityLogDAO; import ch.ethz.seb.sebserver.webservice.servicelayer.dao.UserActivityLogDAO;
import ch.ethz.seb.sebserver.webservice.servicelayer.sebconfig.CertificateService; import ch.ethz.seb.sebserver.webservice.servicelayer.sebconfig.CertificateService;
import io.swagger.v3.oas.annotations.security.SecurityRequirement;
@WebServiceProfile @WebServiceProfile
@RestController @RestController
@RequestMapping("${sebserver.webservice.api.admin.endpoint}" + API.CERTIFICATE_ENDPOINT) @RequestMapping("${sebserver.webservice.api.admin.endpoint}" + API.CERTIFICATE_ENDPOINT)
@SecurityRequirement(name = "oauth2")
public class CertificateController { public class CertificateController {
private final AuthorizationService authorization; private final AuthorizationService authorization;

View file

@ -56,6 +56,7 @@ import ch.ethz.seb.sebserver.webservice.servicelayer.dao.UserActivityLogDAO;
import ch.ethz.seb.sebserver.webservice.servicelayer.validation.BeanValidationService; import ch.ethz.seb.sebserver.webservice.servicelayer.validation.BeanValidationService;
import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter; import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.enums.ParameterIn;
import io.swagger.v3.oas.annotations.media.Content; import io.swagger.v3.oas.annotations.media.Content;
import io.swagger.v3.oas.annotations.security.SecurityRequirement; import io.swagger.v3.oas.annotations.security.SecurityRequirement;
@ -136,6 +137,15 @@ public abstract class EntityController<T extends Entity, M extends Entity> {
* @return Page of domain-model-entities of specified type */ * @return Page of domain-model-entities of specified type */
@Operation( @Operation(
summary = "Get a page of the specific domain entity. Sorting and filtering is applied before paging", summary = "Get a page of the specific domain entity. Sorting and filtering is applied before paging",
description = "Sorting: the sort parameter to sort the list of entities before paging\n"
+ "the sort parameter is the name of the entity-model attribute to sort with a leading '-' sign for\n"
+ "descending sort order. Note that not all entity-model attribute are suited for sorting while the most\n"
+ "are.\n"
+ "</p>\n"
+ "Filter: The filter attributes accepted by this API depend on the actual entity model (domain object)\n"
+ "and are of the form [domain-attribute-name]=[filter-value]. E.g.: name=abc or type=EXAM. Usually\n"
+ "filter attributes of text type are treated as SQL wildcard with %[text]% to filter all text containing\n"
+ "a given text-snippet.",
requestBody = @io.swagger.v3.oas.annotations.parameters.RequestBody( requestBody = @io.swagger.v3.oas.annotations.parameters.RequestBody(
content = { @Content(mediaType = MediaType.APPLICATION_FORM_URLENCODED_VALUE) }), content = { @Content(mediaType = MediaType.APPLICATION_FORM_URLENCODED_VALUE) }),
parameters = { parameters = {
@ -147,10 +157,7 @@ public abstract class EntityController<T extends Entity, M extends Entity> {
description = "The size of the page to get."), description = "The size of the page to get."),
@Parameter( @Parameter(
name = Page.ATTR_SORT, name = Page.ATTR_SORT,
description = "the sort parameter to sort the list of entities before paging\n" description = "the sort parameter to sort the list of entities before paging"),
+ "the sort parameter is the name of the entity-model attribute to sort with a leading '-' sign for\n"
+ "descending sort order. Note that not all entity-model attribute are suited for sorting while the most are.",
example = "-name"),
@Parameter( @Parameter(
name = API.PARAM_INSTITUTION_ID, name = API.PARAM_INSTITUTION_ID,
description = "The institution identifier of the request.\n" description = "The institution identifier of the request.\n"
@ -158,11 +165,7 @@ public abstract class EntityController<T extends Entity, M extends Entity> {
@Parameter( @Parameter(
name = "filterCriteria", name = "filterCriteria",
description = "Additional filter criterias \n" + description = "Additional filter criterias \n" +
"The filter criteria attributes accepted by this API depend on the actual entity model (domain entity)\n" "For OpenAPI 3 input please use the form: {\"columnName\":\"filterValue\"}",
+ "and are query of the form [domain-attribute-name]=[filter-value]. E.g.: name=abc or type=EXAM.\n"
+ "For OpenAPI 3 input please use the form: {\"columnName\":\"filterValue\"}\n"
+ "Usually filter attributes of text type are treated as SQL wildcard with %[text]% to filter all text containing\n"
+ "a given text-snippet.",
example = "{\"name\":\"ethz\"}", example = "{\"name\":\"ethz\"}",
required = false, required = false,
allowEmptyValue = true) allowEmptyValue = true)
@ -215,8 +218,13 @@ public abstract class EntityController<T extends Entity, M extends Entity> {
// ****************** // ******************
@Operation( @Operation(
summary = "Get a filtered list of specific entity name keys.\n" + summary = "Get a filtered list of specific entity name keys.",
"An entity name key is a minimal entity data object with the entity-type, modelId and the name of the entity.", description = "An entity name key is a minimal entity data object with the entity-type, modelId and the name of the entity."
+ "</p>\n"
+ "Filter: The filter attributes accepted by this API depend on the actual entity model (domain object)\n"
+ "and are of the form [domain-attribute-name]=[filter-value]. E.g.: name=abc or type=EXAM. Usually\n"
+ "filter attributes of text type are treated as SQL wildcard with %[text]% to filter all text containing\n"
+ "a given text-snippet.",
requestBody = @io.swagger.v3.oas.annotations.parameters.RequestBody( requestBody = @io.swagger.v3.oas.annotations.parameters.RequestBody(
content = { @Content(mediaType = MediaType.APPLICATION_FORM_URLENCODED_VALUE) }), content = { @Content(mediaType = MediaType.APPLICATION_FORM_URLENCODED_VALUE) }),
parameters = { parameters = {
@ -227,11 +235,7 @@ public abstract class EntityController<T extends Entity, M extends Entity> {
@Parameter( @Parameter(
name = "filterCriteria", name = "filterCriteria",
description = "Additional filter criterias \n" + description = "Additional filter criterias \n" +
"The filter criteria attributes accepted by this API depend on the actual entity model (domain entity)\n" "For OpenAPI 3 input please use the form: {\"columnName\":\"filterValue\"}",
+ "and are query of the form [domain-attribute-name]=[filter-value]. E.g.: name=abc or type=EXAM.\n"
+ "For OpenAPI 3 input please use the form: {\"columnName\":\"filterValue\"}\n"
+ "Usually filter attributes of text type are treated as SQL wildcard with %[text]% to filter all text containing\n"
+ "a given text-snippet.",
example = "{\"name\":\"ethz\"}", example = "{\"name\":\"ethz\"}",
required = false, required = false,
allowEmptyValue = true) allowEmptyValue = true)
@ -273,6 +277,34 @@ public abstract class EntityController<T extends Entity, M extends Entity> {
// * GET (dependency) // * GET (dependency)
// ****************** // ******************
@Operation(
summary = "Get a list of dependency keys of all dependent entity objects for a "
+ "specified source entity and bulk action.",
description = "Get a list of dependency keys of all dependent entity objects for a "
+ "specified source entity and bulk action.\n " +
"This can be used to verify depended objects for a certain bulk action to "
+ "give a report of affected objects beforehand.\n " +
"For example for a delete action of a certain object, this gives all objects "
+ "that will also be deleted within the deletion of the source object",
requestBody = @io.swagger.v3.oas.annotations.parameters.RequestBody(
content = { @Content(mediaType = MediaType.APPLICATION_FORM_URLENCODED_VALUE) }),
parameters = {
@Parameter(
name = API.PARAM_MODEL_ID,
description = "The model identifier of the source entity object to geht the dependencies for.",
in = ParameterIn.PATH),
@Parameter(
name = API.PARAM_BULK_ACTION_TYPE,
description = "The bulk action type defining the type of action to get the dependencies for.\n"
+ "This is the name of the enumeration "),
@Parameter(
name = API.PARAM_BULK_ACTION_ADD_INCLUDES,
description = "Indicates if the following 'includes' paramerer shall be processed or not.\n The default is false "),
@Parameter(
name = API.PARAM_BULK_ACTION_INCLUDES,
description = "A comma separated list of names of the EntityType enummeration that defines all entity types that shall be included in the result.")
})
@RequestMapping( @RequestMapping(
path = API.MODEL_ID_VAR_PATH_SEGMENT + API.DEPENDENCY_PATH_SEGMENT, path = API.MODEL_ID_VAR_PATH_SEGMENT + API.DEPENDENCY_PATH_SEGMENT,
method = RequestMethod.GET, method = RequestMethod.GET,
@ -302,6 +334,16 @@ public abstract class EntityController<T extends Entity, M extends Entity> {
// * GET (single) // * GET (single)
// ****************** // ******************
@Operation(
summary = "Get a single entity by its modelId.",
requestBody = @io.swagger.v3.oas.annotations.parameters.RequestBody(
content = { @Content(mediaType = MediaType.APPLICATION_FORM_URLENCODED_VALUE) }),
parameters = {
@Parameter(
name = API.PARAM_MODEL_ID,
description = "The model identifier of the entity object to get.",
in = ParameterIn.PATH)
})
@RequestMapping( @RequestMapping(
path = API.MODEL_ID_VAR_PATH_SEGMENT, path = API.MODEL_ID_VAR_PATH_SEGMENT,
method = RequestMethod.GET, method = RequestMethod.GET,
@ -319,6 +361,15 @@ public abstract class EntityController<T extends Entity, M extends Entity> {
// * GET (list) // * GET (list)
// ****************** // ******************
@Operation(
summary = "Get a list of entity objects by a given list of model identifiers of entities.",
requestBody = @io.swagger.v3.oas.annotations.parameters.RequestBody(
content = { @Content(mediaType = MediaType.APPLICATION_FORM_URLENCODED_VALUE) }),
parameters = {
@Parameter(
name = API.PARAM_MODEL_ID_LIST,
description = "Comma separated list of model identifiers.")
})
@RequestMapping( @RequestMapping(
path = API.LIST_PATH_SEGMENT, path = API.LIST_PATH_SEGMENT,
method = RequestMethod.GET, method = RequestMethod.GET,
@ -340,12 +391,33 @@ public abstract class EntityController<T extends Entity, M extends Entity> {
// * POST (create) // * POST (create)
// ****************** // ******************
@Operation(
summary = "Create a new entity object of specifies type by using the given form parameter",
description = "This expects " + MediaType.APPLICATION_FORM_URLENCODED_VALUE +
" format for the form parameter" +
" and tries to create a new entity object from this form parameter, " +
"resulting in an error if there are missing" +
" or incorrect form paramter. The needed form paramter " +
"can be verified within the specific entity object.",
requestBody = @io.swagger.v3.oas.annotations.parameters.RequestBody(
content = { @Content(mediaType = MediaType.APPLICATION_FORM_URLENCODED_VALUE) }),
parameters = {
@Parameter(
name = "formParams",
description = "The from paramter value map that is been used to create a new entity object.",
in = ParameterIn.DEFAULT),
@Parameter(
name = API.PARAM_INSTITUTION_ID,
description = "The institution identifier of the request.\n"
+ "Default is the institution identifier of the institution of the current user"),
})
@RequestMapping( @RequestMapping(
method = RequestMethod.POST, method = RequestMethod.POST,
consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE, consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE,
produces = MediaType.APPLICATION_JSON_VALUE) produces = MediaType.APPLICATION_JSON_VALUE)
public T create( public T create(
@RequestParam final MultiValueMap<String, String> allRequestParams, @RequestParam final MultiValueMap<String, String> formParams,
@RequestParam( @RequestParam(
name = API.PARAM_INSTITUTION_ID, name = API.PARAM_INSTITUTION_ID,
required = true, required = true,
@ -355,7 +427,7 @@ public abstract class EntityController<T extends Entity, M extends Entity> {
// check write privilege for requested institution and concrete entityType // check write privilege for requested institution and concrete entityType
this.checkWritePrivilege(institutionId); this.checkWritePrivilege(institutionId);
final POSTMapper postMap = new POSTMapper(allRequestParams, request.getQueryString()) final POSTMapper postMap = new POSTMapper(formParams, request.getQueryString())
.putIfAbsent(API.PARAM_INSTITUTION_ID, String.valueOf(institutionId)); .putIfAbsent(API.PARAM_INSTITUTION_ID, String.valueOf(institutionId));
final M requestModel = this.createNew(postMap); final M requestModel = this.createNew(postMap);
@ -372,6 +444,14 @@ public abstract class EntityController<T extends Entity, M extends Entity> {
// * PUT (save) // * PUT (save)
// **************** // ****************
@Operation(
summary = "Modifies an already existing entity object of the specific type.",
description = "This expects " + MediaType.APPLICATION_JSON_VALUE +
" format for the response data and verifies consistencies " +
"within the definition of the specific entity object type. " +
"Missing (NULL) parameter that are not mandatory will be ignored and the original value will not be affected",
requestBody = @io.swagger.v3.oas.annotations.parameters.RequestBody(
content = { @Content(mediaType = MediaType.APPLICATION_JSON_VALUE) }))
@RequestMapping( @RequestMapping(
method = RequestMethod.PUT, method = RequestMethod.PUT,
consumes = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE,
@ -389,6 +469,25 @@ public abstract class EntityController<T extends Entity, M extends Entity> {
// * DELETE (hard-delete) // * DELETE (hard-delete)
// ************************ // ************************
@Operation(
summary = "Deletes a single entity (and all its dependencies) by its modelId.",
description = "To check or report what dependent object also would be deleted for a certain entity object, "
+
"please use the dependency endpoint to get a report of all dependend entity objects.",
requestBody = @io.swagger.v3.oas.annotations.parameters.RequestBody(
content = { @Content(mediaType = MediaType.APPLICATION_FORM_URLENCODED_VALUE) }),
parameters = {
@Parameter(
name = API.PARAM_MODEL_ID,
description = "The model identifier of the entity object to get.",
in = ParameterIn.PATH),
@Parameter(
name = API.PARAM_BULK_ACTION_ADD_INCLUDES,
description = "Indicates if the following 'includes' paramerer shall be processed or not.\n The default is false "),
@Parameter(
name = API.PARAM_BULK_ACTION_INCLUDES,
description = "A comma separated list of names of the EntityType enummeration that defines all entity types that shall be included in the result.")
})
@RequestMapping( @RequestMapping(
path = API.MODEL_ID_VAR_PATH_SEGMENT, path = API.MODEL_ID_VAR_PATH_SEGMENT,
method = RequestMethod.DELETE, method = RequestMethod.DELETE,
@ -411,6 +510,25 @@ public abstract class EntityController<T extends Entity, M extends Entity> {
// * DELETE ALL (hard-delete) // * DELETE ALL (hard-delete)
// ************************** // **************************
@Operation(
summary = "Deletes all given entity (and all its dependencies) by a given list of model identifiers.",
description = "To check or report what dependent object also would be deleted for a certain entity object, "
+
"please use the dependency endpoint to get a report of all dependend entity objects.",
requestBody = @io.swagger.v3.oas.annotations.parameters.RequestBody(
content = { @Content(mediaType = MediaType.APPLICATION_FORM_URLENCODED_VALUE) }),
parameters = {
@Parameter(
name = API.PARAM_MODEL_ID_LIST,
description = "The list of model identifiers of specific entity type to delete.",
in = ParameterIn.QUERY),
@Parameter(
name = API.PARAM_BULK_ACTION_ADD_INCLUDES,
description = "Indicates if the following 'includes' paramerer shall be processed or not.\n The default is false "),
@Parameter(
name = API.PARAM_BULK_ACTION_INCLUDES,
description = "A comma separated list of names of the EntityType enummeration that defines all entity types that shall be included in the result.")
})
@RequestMapping( @RequestMapping(
method = RequestMethod.DELETE, method = RequestMethod.DELETE,
consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE, consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE,

View file

@ -52,10 +52,12 @@ import ch.ethz.seb.sebserver.webservice.servicelayer.session.ExamSessionService;
import ch.ethz.seb.sebserver.webservice.servicelayer.session.SEBClientConnectionService; import ch.ethz.seb.sebserver.webservice.servicelayer.session.SEBClientConnectionService;
import ch.ethz.seb.sebserver.webservice.servicelayer.session.SEBClientInstructionService; import ch.ethz.seb.sebserver.webservice.servicelayer.session.SEBClientInstructionService;
import ch.ethz.seb.sebserver.webservice.servicelayer.session.SEBClientNotificationService; import ch.ethz.seb.sebserver.webservice.servicelayer.session.SEBClientNotificationService;
import io.swagger.v3.oas.annotations.security.SecurityRequirement;
@WebServiceProfile @WebServiceProfile
@RestController @RestController
@RequestMapping("${sebserver.webservice.api.admin.endpoint}" + API.EXAM_MONITORING_ENDPOINT) @RequestMapping("${sebserver.webservice.api.admin.endpoint}" + API.EXAM_MONITORING_ENDPOINT)
@SecurityRequirement(name = "oauth2")
public class ExamMonitoringController { public class ExamMonitoringController {
private static final Logger log = LoggerFactory.getLogger(ExamMonitoringController.class); private static final Logger log = LoggerFactory.getLogger(ExamMonitoringController.class);

View file

@ -37,10 +37,12 @@ import ch.ethz.seb.sebserver.webservice.servicelayer.authorization.UserService;
import ch.ethz.seb.sebserver.webservice.servicelayer.exam.ExamAdminService; import ch.ethz.seb.sebserver.webservice.servicelayer.exam.ExamAdminService;
import ch.ethz.seb.sebserver.webservice.servicelayer.session.ExamProctoringRoomService; import ch.ethz.seb.sebserver.webservice.servicelayer.session.ExamProctoringRoomService;
import ch.ethz.seb.sebserver.webservice.servicelayer.session.ExamSessionService; import ch.ethz.seb.sebserver.webservice.servicelayer.session.ExamSessionService;
import io.swagger.v3.oas.annotations.security.SecurityRequirement;
@WebServiceProfile @WebServiceProfile
@RestController @RestController
@RequestMapping("${sebserver.webservice.api.admin.endpoint}" + API.EXAM_PROCTORING_ENDPOINT) @RequestMapping("${sebserver.webservice.api.admin.endpoint}" + API.EXAM_PROCTORING_ENDPOINT)
@SecurityRequirement(name = "oauth2")
public class ExamProctoringController { public class ExamProctoringController {
private static final Logger log = LoggerFactory.getLogger(ExamProctoringController.class); private static final Logger log = LoggerFactory.getLogger(ExamProctoringController.class);

View file

@ -24,10 +24,12 @@ import ch.ethz.seb.sebserver.gbl.model.EntityName;
import ch.ethz.seb.sebserver.gbl.profile.WebServiceProfile; import ch.ethz.seb.sebserver.gbl.profile.WebServiceProfile;
import ch.ethz.seb.sebserver.webservice.servicelayer.authorization.AuthorizationService; import ch.ethz.seb.sebserver.webservice.servicelayer.authorization.AuthorizationService;
import ch.ethz.seb.sebserver.webservice.servicelayer.dao.InstitutionDAO; import ch.ethz.seb.sebserver.webservice.servicelayer.dao.InstitutionDAO;
import io.swagger.v3.oas.annotations.security.SecurityRequirement;
@WebServiceProfile @WebServiceProfile
@RestController @RestController
@RequestMapping("${sebserver.webservice.api.admin.endpoint}" + API.INFO_ENDPOINT) @RequestMapping("${sebserver.webservice.api.admin.endpoint}" + API.INFO_ENDPOINT)
@SecurityRequirement(name = "oauth2")
public class InfoController { public class InfoController {
private final InstitutionDAO institutionDAO; private final InstitutionDAO institutionDAO;

View file

@ -32,10 +32,12 @@ import ch.ethz.seb.sebserver.webservice.servicelayer.authorization.Authorization
import ch.ethz.seb.sebserver.webservice.servicelayer.authorization.UserService; import ch.ethz.seb.sebserver.webservice.servicelayer.authorization.UserService;
import ch.ethz.seb.sebserver.webservice.servicelayer.dao.FilterMap; import ch.ethz.seb.sebserver.webservice.servicelayer.dao.FilterMap;
import ch.ethz.seb.sebserver.webservice.servicelayer.lms.LmsAPIService; import ch.ethz.seb.sebserver.webservice.servicelayer.lms.LmsAPIService;
import io.swagger.v3.oas.annotations.security.SecurityRequirement;
@WebServiceProfile @WebServiceProfile
@RestController @RestController
@RequestMapping("${sebserver.webservice.api.admin.endpoint}" + API.QUIZ_DISCOVERY_ENDPOINT) @RequestMapping("${sebserver.webservice.api.admin.endpoint}" + API.QUIZ_DISCOVERY_ENDPOINT)
@SecurityRequirement(name = "oauth2")
public class QuizController { public class QuizController {
private final int defaultPageSize; private final int defaultPageSize;