Package-level declarations

Types

Link copied to clipboard
@Controller(value = "/restaurant/{restaurantId}/menus/{menuId}/categories")
class CategoryController(menuService: MenuService)
Link copied to clipboard
@Singleton
class ConflictExceptionHandler : ExceptionHandler<ConflictException, HttpResponse<ErrorResponse>>
Link copied to clipboard
@Controller(value = "/restaurant/{restaurantId}/menus")
class MenuController(menuService: MenuService)
Link copied to clipboard
@Controller(value = "/restaurant/{restaurantId}/menus/{menuId}/categories/{categoryId}/items")
class MenuItemController(menuService: MenuService)
Link copied to clipboard
@Singleton
class NotFoundExceptionHandler : ExceptionHandler<NotFoundException, HttpResponse<ErrorResponse>>
Link copied to clipboard
@Controller(value = "/restaurants")
class RestaurantController(restaurantService: RestaurantService)
Link copied to clipboard
@Singleton
class UnauthorizedExceptionHandler : ExceptionHandler<UnauthorizedException, HttpResponse<ErrorResponse>>
Link copied to clipboard
@Singleton
class ValidationExceptionHandler : ExceptionHandler<ValidationException, HttpResponse<ErrorResponse>>