├── .github ├── dependabot.yml └── workflows │ ├── add-to-projects.yml │ ├── test.yml │ └── triggerConversion.yml ├── .gitignore ├── .travis.yml.disabled ├── CONTRIBUTING.md ├── LICENSE ├── README.adoc ├── finish ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── openliberty │ │ │ └── guides │ │ │ ├── inventory │ │ │ ├── InventoryApplication.java │ │ │ ├── InventoryManager.java │ │ │ ├── InventoryResource.java │ │ │ ├── client │ │ │ │ ├── SystemClient.java │ │ │ │ ├── UnknownUriException.java │ │ │ │ └── UnknownUriExceptionMapper.java │ │ │ └── model │ │ │ │ ├── InventoryList.java │ │ │ │ └── SystemData.java │ │ │ └── system │ │ │ ├── SystemApplication.java │ │ │ └── SystemResource.java │ ├── liberty │ │ └── config │ │ │ └── server.xml │ ├── resources │ │ └── META-INF │ │ │ └── microprofile-config.properties │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ ├── favicon.ico │ │ └── index.html │ └── test │ └── java │ └── it │ └── io │ └── openliberty │ └── guides │ ├── client │ └── RestClientIT.java │ ├── inventory │ └── InventoryEndpointIT.java │ └── system │ └── SystemEndpointIT.java ├── scripts ├── dailyBuild.sh └── testApp.sh └── start ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── io │ │ └── openliberty │ │ └── guides │ │ ├── inventory │ │ ├── InventoryApplication.java │ │ ├── InventoryManager.java │ │ ├── InventoryResource.java │ │ ├── client │ │ │ └── .gitkeep │ │ └── model │ │ │ ├── InventoryList.java │ │ │ └── SystemData.java │ │ └── system │ │ ├── SystemApplication.java │ │ └── SystemResource.java ├── liberty │ └── config │ │ └── server.xml ├── resources │ └── META-INF │ │ └── .gitkeep └── webapp │ ├── WEB-INF │ └── web.xml │ ├── favicon.ico │ └── index.html └── test └── java └── it └── io └── openliberty └── guides ├── client └── .gitkeep ├── inventory └── InventoryEndpointIT.java └── system └── SystemEndpointIT.java /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/add-to-projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/.github/workflows/add-to-projects.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/triggerConversion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/.github/workflows/triggerConversion.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/.travis.yml.disabled -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/README.adoc -------------------------------------------------------------------------------- /finish/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /finish/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /finish/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/mvnw -------------------------------------------------------------------------------- /finish/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/mvnw.cmd -------------------------------------------------------------------------------- /finish/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/pom.xml -------------------------------------------------------------------------------- /finish/src/main/java/io/openliberty/guides/inventory/InventoryApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/main/java/io/openliberty/guides/inventory/InventoryApplication.java -------------------------------------------------------------------------------- /finish/src/main/java/io/openliberty/guides/inventory/InventoryManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/main/java/io/openliberty/guides/inventory/InventoryManager.java -------------------------------------------------------------------------------- /finish/src/main/java/io/openliberty/guides/inventory/InventoryResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/main/java/io/openliberty/guides/inventory/InventoryResource.java -------------------------------------------------------------------------------- /finish/src/main/java/io/openliberty/guides/inventory/client/SystemClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/main/java/io/openliberty/guides/inventory/client/SystemClient.java -------------------------------------------------------------------------------- /finish/src/main/java/io/openliberty/guides/inventory/client/UnknownUriException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/main/java/io/openliberty/guides/inventory/client/UnknownUriException.java -------------------------------------------------------------------------------- /finish/src/main/java/io/openliberty/guides/inventory/client/UnknownUriExceptionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/main/java/io/openliberty/guides/inventory/client/UnknownUriExceptionMapper.java -------------------------------------------------------------------------------- /finish/src/main/java/io/openliberty/guides/inventory/model/InventoryList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/main/java/io/openliberty/guides/inventory/model/InventoryList.java -------------------------------------------------------------------------------- /finish/src/main/java/io/openliberty/guides/inventory/model/SystemData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/main/java/io/openliberty/guides/inventory/model/SystemData.java -------------------------------------------------------------------------------- /finish/src/main/java/io/openliberty/guides/system/SystemApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/main/java/io/openliberty/guides/system/SystemApplication.java -------------------------------------------------------------------------------- /finish/src/main/java/io/openliberty/guides/system/SystemResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/main/java/io/openliberty/guides/system/SystemResource.java -------------------------------------------------------------------------------- /finish/src/main/liberty/config/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/main/liberty/config/server.xml -------------------------------------------------------------------------------- /finish/src/main/resources/META-INF/microprofile-config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/main/resources/META-INF/microprofile-config.properties -------------------------------------------------------------------------------- /finish/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /finish/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /finish/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/main/webapp/index.html -------------------------------------------------------------------------------- /finish/src/test/java/it/io/openliberty/guides/client/RestClientIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/test/java/it/io/openliberty/guides/client/RestClientIT.java -------------------------------------------------------------------------------- /finish/src/test/java/it/io/openliberty/guides/inventory/InventoryEndpointIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/test/java/it/io/openliberty/guides/inventory/InventoryEndpointIT.java -------------------------------------------------------------------------------- /finish/src/test/java/it/io/openliberty/guides/system/SystemEndpointIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/finish/src/test/java/it/io/openliberty/guides/system/SystemEndpointIT.java -------------------------------------------------------------------------------- /scripts/dailyBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/scripts/dailyBuild.sh -------------------------------------------------------------------------------- /scripts/testApp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/scripts/testApp.sh -------------------------------------------------------------------------------- /start/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /start/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /start/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/mvnw -------------------------------------------------------------------------------- /start/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/mvnw.cmd -------------------------------------------------------------------------------- /start/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/pom.xml -------------------------------------------------------------------------------- /start/src/main/java/io/openliberty/guides/inventory/InventoryApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/src/main/java/io/openliberty/guides/inventory/InventoryApplication.java -------------------------------------------------------------------------------- /start/src/main/java/io/openliberty/guides/inventory/InventoryManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/src/main/java/io/openliberty/guides/inventory/InventoryManager.java -------------------------------------------------------------------------------- /start/src/main/java/io/openliberty/guides/inventory/InventoryResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/src/main/java/io/openliberty/guides/inventory/InventoryResource.java -------------------------------------------------------------------------------- /start/src/main/java/io/openliberty/guides/inventory/client/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /start/src/main/java/io/openliberty/guides/inventory/model/InventoryList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/src/main/java/io/openliberty/guides/inventory/model/InventoryList.java -------------------------------------------------------------------------------- /start/src/main/java/io/openliberty/guides/inventory/model/SystemData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/src/main/java/io/openliberty/guides/inventory/model/SystemData.java -------------------------------------------------------------------------------- /start/src/main/java/io/openliberty/guides/system/SystemApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/src/main/java/io/openliberty/guides/system/SystemApplication.java -------------------------------------------------------------------------------- /start/src/main/java/io/openliberty/guides/system/SystemResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/src/main/java/io/openliberty/guides/system/SystemResource.java -------------------------------------------------------------------------------- /start/src/main/liberty/config/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/src/main/liberty/config/server.xml -------------------------------------------------------------------------------- /start/src/main/resources/META-INF/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /start/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /start/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /start/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/src/main/webapp/index.html -------------------------------------------------------------------------------- /start/src/test/java/it/io/openliberty/guides/client/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /start/src/test/java/it/io/openliberty/guides/inventory/InventoryEndpointIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/src/test/java/it/io/openliberty/guides/inventory/InventoryEndpointIT.java -------------------------------------------------------------------------------- /start/src/test/java/it/io/openliberty/guides/system/SystemEndpointIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLiberty/guide-microprofile-rest-client/HEAD/start/src/test/java/it/io/openliberty/guides/system/SystemEndpointIT.java --------------------------------------------------------------------------------