Added todo
This commit is contained in:
parent
e3e7d96628
commit
a8f81f8668
|
@ -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
|
|
@ -5,4 +5,5 @@ description: ${project.description}
|
||||||
excludes:
|
excludes:
|
||||||
- path: /excluded
|
- path: /excluded
|
||||||
- path: /guest
|
- path: /guest
|
||||||
|
- path: /guest/*
|
||||||
- path: /api-docs/*
|
- path: /api-docs/*
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
package org.gcube.service.helloworld.rest;
|
package org.gcube.service.helloworld.rest;
|
||||||
|
|
||||||
|
import jakarta.ws.rs.BadRequestException;
|
||||||
import jakarta.ws.rs.GET;
|
import jakarta.ws.rs.GET;
|
||||||
import jakarta.ws.rs.NotFoundException;
|
import jakarta.ws.rs.NotFoundException;
|
||||||
import jakarta.ws.rs.Path;
|
import jakarta.ws.rs.Path;
|
||||||
|
@ -34,6 +35,6 @@ public class ExcludeAuthorizationService {
|
||||||
@GET
|
@GET
|
||||||
@Path("exception")
|
@Path("exception")
|
||||||
public String exc() throws WebApplicationException {
|
public String exc() throws WebApplicationException {
|
||||||
throw new NotFoundException();
|
throw new BadRequestException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue