Updated src tree

This commit is contained in:
Luca Frosini 2024-05-27 10:45:10 +02:00
parent 688700b5ab
commit 9eac72e0f5
1 changed files with 46 additions and 9 deletions

View File

@ -95,20 +95,57 @@ connect the JAVA debugger to port 5005
│   │ │      ├── AuthenticatedService.java │   │ │      ├── AuthenticatedService.java
│   │ │      ├── ExcludeAuthorizationService.java │   │ │      ├── ExcludeAuthorizationService.java
│   │ │      └── *.java │   │ │      └── *.java
│   │ ├── resources
│   │ │   └── META-INF
│   │ │   └── enunciate ├── src
│   │ │   └── d4science_docs.fmt │   ├── main
│   │   ├── java
│   │   │   └── org
│   │   │   └── gcube
│   │   │   └── service
│   │   │   └── helloworld
# │ # # Applicatoin manager
│   │   │   ├── HelloWorldManager.java
│   │   │   ├── annotation
│   │   │   │   └── PURGE.java
│   │   │   ├── beans
│   │   │   │   └── ResponseBean.java
# │ # # Smartgear 4 Health Checks
│   │   │   ├── health
│   │   │   │   └── CreateTempFileCheck.java
# │ # # rest APIs served by jaxb.
│   │   │   ├── rest
│   │   │   │   ├── AuthenticatedService.java
│   │   │   │   ├── ExcludeAuthorizationService.java
│   │   │   │   ├── HelloService.java
# │ # # Exception MApper
│   │   │   │   └── ServiceExceptionMapper.java
│   │   │   ├── serializers
│   │   │   │   ├── ContainerConfigurationSerializer.java
│   │   │   │   ├── ContainerContextSerializer.java
│   │   │   │   ├── ContextSerializator.java
│   │   │   │   ├── OwnerSerializer.java
│   │   │   │   └── SimpleCredentialsSerializer.java
│   │   │   └── utils
│   │   │   └── RestUtils.java
│   │   ├── resources
│   │   │   └── META-INF
│   │   │   └── enunciate
│   │   │   └── d4science_docs.fmt
│   │   └── webapp │   │   └── webapp
# # # WEB-INF resources are accessible to the resource loader of your Web-Application # # # WEB-INF resources are accessible to the resource loader of your Web-Application
# # # and not served directly to a client by the container # # # and not served directly to a client by the container
│   │      └── WEB-INF │   │   ├── WEB-INF
│   │      ├── d4science_enunciate_custom.css
# # # deployment descriptor # # # deployment descriptor
│   │      └── web.xml │   │   │   └── web.xml
│   │   └── api-docs
│   │   └── css
│   │   └── d4science_enunciate_custom.css
│   └── test │   └── test
│   └── aaa.txt │   ├── java
│  │   └── resources
# optional, vscode debug configuration # optional, vscode debug configuration
├── .vscode ├── .vscode
│   ├── launch.json │   ├── launch.json