Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@
@Slf4j
public class LrdCourtVenueController {

private static final String WARNING_COURT_VENUE_ID = "⚠ **Note: the `court_venue_id` property returned "
+ "should not be used: as it is an internal value that may change.**";

@Value("${loggingComponentName}")
private String loggingComponentName;
Expand Down Expand Up @@ -166,13 +168,12 @@ public ResponseEntity<List<LrdCourtVenueResponse>> retrieveCourtVenues(

@Operation(
summary = "This API will retrieve Court Venues for given Service Code",
description = "No roles required to access this API",
description = "No roles required to access this API<br/><br/>" + WARNING_COURT_VENUE_ID,
security = {
@SecurityRequirement(name = "ServiceAuthorization"),
@SecurityRequirement(name = "Authorization")
}
)

@ApiResponse(
responseCode = "200",
description = "Successfully retrieved list of Court Venues for given Service Code",
Expand All @@ -198,7 +199,6 @@ public ResponseEntity<List<LrdCourtVenueResponse>> retrieveCourtVenues(
description = "Internal Server Error",
content = @Content
)

@GetMapping(
path = "/services",
produces = APPLICATION_JSON_VALUE
Expand Down