Added todo

This commit is contained in:
Luca Frosini 2024-05-23 18:06:16 +02:00
parent e3e7d96628
commit a8f81f8668
3 changed files with 16 additions and 1 deletions

13
documentation/TODO.md Normal file
View File

@ -0,0 +1,13 @@
- Fix gCore IS publisher
- Fix Facet IS publisher
- How to interact with Facet IS publisher
- How to publish on Facet Is at startup
- How to Accounts requests
- How to get Context Examples
- How to get Secret Examples
- How to add Sphinx Doc
- How to debug in Eclipse
- How to document methods for Swagger
- How to deploy to Portainer ???
- How to enable debug and Live Reloading on Java docker Containers e.g. https://www.youtube.com/watch?v=Qn5G6YcmOFw

View File

@ -5,4 +5,5 @@ description: ${project.description}
excludes:
- path: /excluded
- path: /guest
- path: /guest/*
- path: /api-docs/*

View File

@ -1,5 +1,6 @@
package org.gcube.service.helloworld.rest;
import jakarta.ws.rs.BadRequestException;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.NotFoundException;
import jakarta.ws.rs.Path;
@ -34,6 +35,6 @@ public class ExcludeAuthorizationService {
@GET
@Path("exception")
public String exc() throws WebApplicationException {
throw new NotFoundException();
throw new BadRequestException();
}
}