├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .travis.yml ├── LICENSE ├── README.md ├── bookstore-kubernetes-manifests ├── account-configmap.yml ├── account-deployment.yml ├── account-service.yml ├── bookstore-namespaces.yaml ├── bookstore-role.yml ├── bookstore-rolebinding.yml ├── bookstore-serviceaccount.yml ├── gateway-configmap.yml ├── gateway-deployment.yml ├── gateway-service.yml ├── kustomization.yaml ├── payment-configmap.yml ├── payment-deployment.yml ├── payment-service.yml ├── security-configmap.yml ├── security-deployment.yml ├── security-service.yml ├── warehouse-configmap.yml ├── warehouse-deployment.yml └── warehouse-service.yml ├── bookstore-microservices-domain-account ├── Dockerfile ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── fenixsoft │ │ │ └── bookstore │ │ │ └── account │ │ │ ├── AccountApplication.java │ │ │ ├── applicaiton │ │ │ └── AccountApplicationService.java │ │ │ ├── domain │ │ │ ├── AccountRepository.java │ │ │ └── validation │ │ │ │ ├── AccountValidation.java │ │ │ │ ├── AuthenticatedAccount.java │ │ │ │ ├── ExistsAccount.java │ │ │ │ ├── NotConflictAccount.java │ │ │ │ └── UniqueAccount.java │ │ │ └── resource │ │ │ └── AccountResource.java │ └── resources │ │ ├── application-test.yml │ │ ├── banner.txt │ │ ├── bootstrap.yml │ │ └── db │ │ ├── hsqldb │ │ ├── data.sql │ │ └── schema.sql │ │ └── mysql │ │ ├── data.sql │ │ ├── schema.sql │ │ └── user.sql │ └── test │ └── java │ └── com │ └── github │ └── fenixsoft │ └── bookstore │ └── account │ └── AccountResourceTest.java ├── bookstore-microservices-domain-payment ├── Dockerfile ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── fenixsoft │ │ │ └── bookstore │ │ │ └── paymnet │ │ │ ├── PaymentApplication.java │ │ │ ├── application │ │ │ └── PaymentApplicationService.java │ │ │ ├── domain │ │ │ ├── Payment.java │ │ │ ├── Wallet.java │ │ │ ├── client │ │ │ │ └── ProductServiceClient.java │ │ │ ├── repository │ │ │ │ ├── CacheRepository.java │ │ │ │ ├── PaymentRepository.java │ │ │ │ └── WalletRepository.java │ │ │ ├── service │ │ │ │ ├── PaymentService.java │ │ │ │ └── WalletService.java │ │ │ └── validation │ │ │ │ ├── SettlementValidator.java │ │ │ │ └── SufficientStock.java │ │ │ └── resource │ │ │ ├── PaymentResource.java │ │ │ └── SettlementResource.java │ └── resources │ │ ├── application-test.yml │ │ ├── banner.txt │ │ ├── bootstrap.yml │ │ └── db │ │ ├── hsqldb │ │ ├── data.sql │ │ └── schema.sql │ │ └── mysql │ │ ├── data.sql │ │ ├── schema.sql │ │ └── user.sql │ └── test │ └── java │ └── com │ └── github │ └── fenixsoft │ └── bookstore │ └── paymnet │ ├── PaymentResourceTest.java │ └── mock │ └── ProductServiceClientMock.java ├── bookstore-microservices-domain-security ├── Dockerfile ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── fenixsoft │ │ │ └── bookstore │ │ │ └── security │ │ │ ├── SecurityApplication.java │ │ │ ├── configuration │ │ │ ├── AuthenticationServerConfiguration.java │ │ │ ├── AuthorizationServerConfiguration.java │ │ │ └── WebSecurityConfiguration.java │ │ │ └── provider │ │ │ ├── PreAuthenticatedAuthenticationProvider.java │ │ │ └── UsernamePasswordAuthenticationProvider.java │ └── resources │ │ ├── application-test.yml │ │ ├── banner.txt │ │ ├── bootstrap.yml │ │ └── db │ │ └── hsqldb │ │ ├── data.sql │ │ └── schema.sql │ └── test │ └── java │ └── com │ └── github │ └── fenixsoft │ └── bookstore │ └── security │ └── AuthResourceTest.java ├── bookstore-microservices-domain-warehouse ├── Dockerfile ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── fenixsoft │ │ │ └── bookstore │ │ │ └── warehouse │ │ │ ├── WarehouseApplication.java │ │ │ ├── application │ │ │ ├── ProductApplicationService.java │ │ │ └── StockpileApplicationService.java │ │ │ ├── domain │ │ │ ├── Advertisement.java │ │ │ ├── AdvertisementRepository.java │ │ │ ├── ProductRepository.java │ │ │ ├── ProductService.java │ │ │ ├── StockpileRepository.java │ │ │ └── StockpileService.java │ │ │ └── resource │ │ │ ├── AdvertisementResource.java │ │ │ ├── ProductResource.java │ │ │ └── StockpileResource.java │ └── resources │ │ ├── application-test.yml │ │ ├── banner.txt │ │ ├── bootstrap.yml │ │ └── db │ │ ├── hsqldb │ │ ├── data.sql │ │ └── schema.sql │ │ └── mysql │ │ ├── data.sql │ │ ├── schema.sql │ │ └── user.sql │ └── test │ └── java │ └── com │ └── github │ └── fenixsoft │ └── bookstore │ └── warehouse │ ├── AdvertisementResourceTest.java │ └── ProductResourceTest.java ├── bookstore-microservices-library-infrastructure ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── github │ └── fenixsoft │ └── bookstore │ ├── domain │ ├── BaseEntity.java │ ├── account │ │ └── Account.java │ ├── security │ │ ├── AccountServiceClient.java │ │ ├── AuthenticAccount.java │ │ ├── AuthenticAccountDetailsService.java │ │ ├── AuthenticAccountRepository.java │ │ ├── GrantType.java │ │ ├── Role.java │ │ └── Scope.java │ └── warehouse │ │ ├── DeliveredStatus.java │ │ ├── Product.java │ │ ├── Specification.java │ │ └── Stockpile.java │ ├── dto │ ├── Item.java │ ├── Purchase.java │ └── Settlement.java │ └── infrastructure │ ├── cache │ └── CacheConfiguration.java │ ├── configuration │ ├── FeignConfiguration.java │ ├── JPAConfiguration.java │ ├── JerseyConfiguration.java │ └── ResourceServerConfiguration.java │ ├── jaxrs │ ├── AccessDeniedExceptionMapper.java │ ├── BaseExceptionMapper.java │ ├── CodedMessage.java │ ├── CommonResponse.java │ └── ViolationExceptionMapper.java │ ├── security │ ├── JWTAccessToken.java │ ├── JWTAccessTokenService.java │ └── OAuthClientDetailsService.java │ └── utility │ └── Encryption.java ├── bookstore-microservices-library-testing ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── github │ └── fenixsoft │ └── bookstore │ └── resource │ ├── DBRollbackBase.java │ ├── JAXRSResourceBase.java │ └── mock │ └── AccountServiceClientMock.java ├── bookstore-microservices-platform-gateway ├── Dockerfile ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── github │ │ └── fenixsoft │ │ └── bookstore │ │ └── gateway │ │ └── GatewayApplication.java │ └── resources │ ├── banner.txt │ ├── bootstrap.yml │ └── static │ ├── favicon.ico │ ├── index.html │ └── static │ ├── board │ ├── gitalk.css │ ├── gitalk.html │ └── gitalk.min.js │ ├── carousel │ ├── ai.png │ ├── fenix.png │ ├── fenix2.png │ └── jvm3.png │ ├── cover │ ├── ai.jpg │ ├── fenix.png │ ├── jvm1.jpg │ ├── jvm2.jpg │ ├── jvm3.jpg │ ├── jvms.jpg │ ├── jvms8.jpg │ └── osgi.jpg │ ├── css │ ├── app.13440f960e43a3574b009b7352447f18.css │ └── app.acff6d0da14b65448084a2639e44b2ef.css │ ├── desc │ ├── OSGi.jpg │ ├── ai.jpg │ ├── fenix.jpg │ ├── jvm2.jpg │ ├── jvm3.jpg │ └── jvms.jpg │ ├── fonts │ ├── element-icons.535877f.woff │ └── element-icons.732389d.ttf │ ├── img │ ├── bg2.ef8085e.png │ ├── cc-logo.3653e37.png │ ├── logo-color.5500ec5.png │ └── logo-gray-light.84aa074.png │ └── js │ ├── 0.c178f427b3d08777c70f.js │ ├── 1.a33faf036923758c7965.js │ ├── 1.adddfb80b9441d8bc19d.js │ ├── 2.626ed94f3752555e21f0.js │ ├── 3.bc7f0b2154007257c317.js │ ├── 4.b4e48a42cf742af20851.js │ ├── 5.d375cbd6c7e1463cdbed.js │ ├── 6.68562501db5734ef1531.js │ ├── 7.184a5e39cc0c624f6a6d.js │ ├── 8.176f9455c3442c06ebf6.js │ ├── 9.527be297aba1594ffe0d.js │ ├── app.ea66dc0be78c3ed2ae63.js │ ├── manifest.0437a7f02d3154ee1abb.js │ ├── manifest.1aeebcd3a724536ddb12.js │ └── vendor.c2f13a2146485051ae24.js ├── bookstore.yml ├── mvnw ├── mvnw.cmd ├── pom.xml ├── skaffold.yml └── travis_docker_push.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/README.md -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/account-configmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/account-configmap.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/account-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/account-deployment.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/account-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/account-service.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/bookstore-namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/bookstore-namespaces.yaml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/bookstore-role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/bookstore-role.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/bookstore-rolebinding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/bookstore-rolebinding.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/bookstore-serviceaccount.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/bookstore-serviceaccount.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/gateway-configmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/gateway-configmap.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/gateway-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/gateway-deployment.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/gateway-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/gateway-service.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/kustomization.yaml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/payment-configmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/payment-configmap.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/payment-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/payment-deployment.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/payment-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/payment-service.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/security-configmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/security-configmap.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/security-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/security-deployment.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/security-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/security-service.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/warehouse-configmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/warehouse-configmap.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/warehouse-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/warehouse-deployment.yml -------------------------------------------------------------------------------- /bookstore-kubernetes-manifests/warehouse-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-kubernetes-manifests/warehouse-service.yml -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/Dockerfile -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/pom.xml -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/AccountApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/AccountApplication.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/applicaiton/AccountApplicationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/applicaiton/AccountApplicationService.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/domain/AccountRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/domain/AccountRepository.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/domain/validation/AccountValidation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/domain/validation/AccountValidation.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/domain/validation/AuthenticatedAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/domain/validation/AuthenticatedAccount.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/domain/validation/ExistsAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/domain/validation/ExistsAccount.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/domain/validation/NotConflictAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/domain/validation/NotConflictAccount.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/domain/validation/UniqueAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/domain/validation/UniqueAccount.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/resource/AccountResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/java/com/github/fenixsoft/bookstore/account/resource/AccountResource.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/resources/application-test.yml -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/resources/banner.txt -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/resources/bootstrap.yml -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/resources/db/hsqldb/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/resources/db/hsqldb/data.sql -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/resources/db/hsqldb/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/resources/db/hsqldb/schema.sql -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/resources/db/mysql/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/resources/db/mysql/data.sql -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/resources/db/mysql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/resources/db/mysql/schema.sql -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/main/resources/db/mysql/user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/main/resources/db/mysql/user.sql -------------------------------------------------------------------------------- /bookstore-microservices-domain-account/src/test/java/com/github/fenixsoft/bookstore/account/AccountResourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-account/src/test/java/com/github/fenixsoft/bookstore/account/AccountResourceTest.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/Dockerfile -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/pom.xml -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/PaymentApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/PaymentApplication.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/application/PaymentApplicationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/application/PaymentApplicationService.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/Payment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/Payment.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/Wallet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/Wallet.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/client/ProductServiceClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/client/ProductServiceClient.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/repository/CacheRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/repository/CacheRepository.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/repository/PaymentRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/repository/PaymentRepository.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/repository/WalletRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/repository/WalletRepository.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/service/PaymentService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/service/PaymentService.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/service/WalletService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/service/WalletService.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/validation/SettlementValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/validation/SettlementValidator.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/validation/SufficientStock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/domain/validation/SufficientStock.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/resource/PaymentResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/resource/PaymentResource.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/resource/SettlementResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/java/com/github/fenixsoft/bookstore/paymnet/resource/SettlementResource.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/resources/application-test.yml -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/resources/banner.txt -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/resources/bootstrap.yml -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/resources/db/hsqldb/data.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO wallet VALUES (1, 300, 1); 2 | -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/resources/db/hsqldb/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/resources/db/hsqldb/schema.sql -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/resources/db/mysql/data.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO wallet 2 | VALUES (1, 100, 1); 3 | -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/resources/db/mysql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/resources/db/mysql/schema.sql -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/main/resources/db/mysql/user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/main/resources/db/mysql/user.sql -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/test/java/com/github/fenixsoft/bookstore/paymnet/PaymentResourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/test/java/com/github/fenixsoft/bookstore/paymnet/PaymentResourceTest.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-payment/src/test/java/com/github/fenixsoft/bookstore/paymnet/mock/ProductServiceClientMock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-payment/src/test/java/com/github/fenixsoft/bookstore/paymnet/mock/ProductServiceClientMock.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-security/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-security/Dockerfile -------------------------------------------------------------------------------- /bookstore-microservices-domain-security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-security/pom.xml -------------------------------------------------------------------------------- /bookstore-microservices-domain-security/src/main/java/com/github/fenixsoft/bookstore/security/SecurityApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-security/src/main/java/com/github/fenixsoft/bookstore/security/SecurityApplication.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-security/src/main/java/com/github/fenixsoft/bookstore/security/configuration/AuthenticationServerConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-security/src/main/java/com/github/fenixsoft/bookstore/security/configuration/AuthenticationServerConfiguration.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-security/src/main/java/com/github/fenixsoft/bookstore/security/configuration/AuthorizationServerConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-security/src/main/java/com/github/fenixsoft/bookstore/security/configuration/AuthorizationServerConfiguration.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-security/src/main/java/com/github/fenixsoft/bookstore/security/configuration/WebSecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-security/src/main/java/com/github/fenixsoft/bookstore/security/configuration/WebSecurityConfiguration.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-security/src/main/java/com/github/fenixsoft/bookstore/security/provider/PreAuthenticatedAuthenticationProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-security/src/main/java/com/github/fenixsoft/bookstore/security/provider/PreAuthenticatedAuthenticationProvider.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-security/src/main/java/com/github/fenixsoft/bookstore/security/provider/UsernamePasswordAuthenticationProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-security/src/main/java/com/github/fenixsoft/bookstore/security/provider/UsernamePasswordAuthenticationProvider.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-security/src/main/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-security/src/main/resources/application-test.yml -------------------------------------------------------------------------------- /bookstore-microservices-domain-security/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-security/src/main/resources/banner.txt -------------------------------------------------------------------------------- /bookstore-microservices-domain-security/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-security/src/main/resources/bootstrap.yml -------------------------------------------------------------------------------- /bookstore-microservices-domain-security/src/main/resources/db/hsqldb/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-security/src/main/resources/db/hsqldb/data.sql -------------------------------------------------------------------------------- /bookstore-microservices-domain-security/src/main/resources/db/hsqldb/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-security/src/main/resources/db/hsqldb/schema.sql -------------------------------------------------------------------------------- /bookstore-microservices-domain-security/src/test/java/com/github/fenixsoft/bookstore/security/AuthResourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-security/src/test/java/com/github/fenixsoft/bookstore/security/AuthResourceTest.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/Dockerfile -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/pom.xml -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/WarehouseApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/WarehouseApplication.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/application/ProductApplicationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/application/ProductApplicationService.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/application/StockpileApplicationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/application/StockpileApplicationService.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/domain/Advertisement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/domain/Advertisement.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/domain/AdvertisementRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/domain/AdvertisementRepository.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/domain/ProductRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/domain/ProductRepository.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/domain/ProductService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/domain/ProductService.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/domain/StockpileRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/domain/StockpileRepository.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/domain/StockpileService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/domain/StockpileService.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/resource/AdvertisementResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/resource/AdvertisementResource.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/resource/ProductResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/resource/ProductResource.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/resource/StockpileResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/java/com/github/fenixsoft/bookstore/warehouse/resource/StockpileResource.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/resources/application-test.yml -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/resources/banner.txt -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/resources/bootstrap.yml -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/resources/db/hsqldb/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/resources/db/hsqldb/data.sql -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/resources/db/hsqldb/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/resources/db/hsqldb/schema.sql -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/resources/db/mysql/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/resources/db/mysql/data.sql -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/resources/db/mysql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/resources/db/mysql/schema.sql -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/main/resources/db/mysql/user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/main/resources/db/mysql/user.sql -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/test/java/com/github/fenixsoft/bookstore/warehouse/AdvertisementResourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/test/java/com/github/fenixsoft/bookstore/warehouse/AdvertisementResourceTest.java -------------------------------------------------------------------------------- /bookstore-microservices-domain-warehouse/src/test/java/com/github/fenixsoft/bookstore/warehouse/ProductResourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-domain-warehouse/src/test/java/com/github/fenixsoft/bookstore/warehouse/ProductResourceTest.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/pom.xml -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/BaseEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/BaseEntity.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/account/Account.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/account/Account.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/security/AccountServiceClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/security/AccountServiceClient.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/security/AuthenticAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/security/AuthenticAccount.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/security/AuthenticAccountDetailsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/security/AuthenticAccountDetailsService.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/security/AuthenticAccountRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/security/AuthenticAccountRepository.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/security/GrantType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/security/GrantType.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/security/Role.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/security/Role.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/security/Scope.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/security/Scope.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/warehouse/DeliveredStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/warehouse/DeliveredStatus.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/warehouse/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/warehouse/Product.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/warehouse/Specification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/warehouse/Specification.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/warehouse/Stockpile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/domain/warehouse/Stockpile.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/dto/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/dto/Item.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/dto/Purchase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/dto/Purchase.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/dto/Settlement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/dto/Settlement.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/cache/CacheConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/cache/CacheConfiguration.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/configuration/FeignConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/configuration/FeignConfiguration.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/configuration/JPAConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/configuration/JPAConfiguration.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/configuration/JerseyConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/configuration/JerseyConfiguration.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/configuration/ResourceServerConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/configuration/ResourceServerConfiguration.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/jaxrs/AccessDeniedExceptionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/jaxrs/AccessDeniedExceptionMapper.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/jaxrs/BaseExceptionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/jaxrs/BaseExceptionMapper.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/jaxrs/CodedMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/jaxrs/CodedMessage.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/jaxrs/CommonResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/jaxrs/CommonResponse.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/jaxrs/ViolationExceptionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/jaxrs/ViolationExceptionMapper.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/security/JWTAccessToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/security/JWTAccessToken.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/security/JWTAccessTokenService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/security/JWTAccessTokenService.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/security/OAuthClientDetailsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/security/OAuthClientDetailsService.java -------------------------------------------------------------------------------- /bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/utility/Encryption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-infrastructure/src/main/java/com/github/fenixsoft/bookstore/infrastructure/utility/Encryption.java -------------------------------------------------------------------------------- /bookstore-microservices-library-testing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-testing/pom.xml -------------------------------------------------------------------------------- /bookstore-microservices-library-testing/src/main/java/com/github/fenixsoft/bookstore/resource/DBRollbackBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-testing/src/main/java/com/github/fenixsoft/bookstore/resource/DBRollbackBase.java -------------------------------------------------------------------------------- /bookstore-microservices-library-testing/src/main/java/com/github/fenixsoft/bookstore/resource/JAXRSResourceBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-testing/src/main/java/com/github/fenixsoft/bookstore/resource/JAXRSResourceBase.java -------------------------------------------------------------------------------- /bookstore-microservices-library-testing/src/main/java/com/github/fenixsoft/bookstore/resource/mock/AccountServiceClientMock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-library-testing/src/main/java/com/github/fenixsoft/bookstore/resource/mock/AccountServiceClientMock.java -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/Dockerfile -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/pom.xml -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/java/com/github/fenixsoft/bookstore/gateway/GatewayApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/java/com/github/fenixsoft/bookstore/gateway/GatewayApplication.java -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/banner.txt -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/bootstrap.yml -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/favicon.ico -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/index.html -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/board/gitalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/board/gitalk.css -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/board/gitalk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/board/gitalk.html -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/board/gitalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/board/gitalk.min.js -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/carousel/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/carousel/ai.png -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/carousel/fenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/carousel/fenix.png -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/carousel/fenix2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/carousel/fenix2.png -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/carousel/jvm3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/carousel/jvm3.png -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/ai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/ai.jpg -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/fenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/fenix.png -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/jvm1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/jvm1.jpg -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/jvm2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/jvm2.jpg -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/jvm3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/jvm3.jpg -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/jvms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/jvms.jpg -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/jvms8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/jvms8.jpg -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/osgi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/cover/osgi.jpg -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/css/app.13440f960e43a3574b009b7352447f18.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/css/app.13440f960e43a3574b009b7352447f18.css -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/css/app.acff6d0da14b65448084a2639e44b2ef.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/css/app.acff6d0da14b65448084a2639e44b2ef.css -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/desc/OSGi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/desc/OSGi.jpg -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/desc/ai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/desc/ai.jpg -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/desc/fenix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/desc/fenix.jpg -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/desc/jvm2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/desc/jvm2.jpg -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/desc/jvm3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/desc/jvm3.jpg -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/desc/jvms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/desc/jvms.jpg -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/fonts/element-icons.535877f.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/fonts/element-icons.535877f.woff -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/fonts/element-icons.732389d.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/fonts/element-icons.732389d.ttf -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/img/bg2.ef8085e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/img/bg2.ef8085e.png -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/img/cc-logo.3653e37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/img/cc-logo.3653e37.png -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/img/logo-color.5500ec5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/img/logo-color.5500ec5.png -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/img/logo-gray-light.84aa074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/img/logo-gray-light.84aa074.png -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/js/0.c178f427b3d08777c70f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/js/0.c178f427b3d08777c70f.js -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/js/1.a33faf036923758c7965.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/js/1.a33faf036923758c7965.js -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/js/1.adddfb80b9441d8bc19d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/js/1.adddfb80b9441d8bc19d.js -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/js/2.626ed94f3752555e21f0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/js/2.626ed94f3752555e21f0.js -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/js/3.bc7f0b2154007257c317.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/js/3.bc7f0b2154007257c317.js -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/js/4.b4e48a42cf742af20851.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/js/4.b4e48a42cf742af20851.js -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/js/5.d375cbd6c7e1463cdbed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/js/5.d375cbd6c7e1463cdbed.js -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/js/6.68562501db5734ef1531.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/js/6.68562501db5734ef1531.js -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/js/7.184a5e39cc0c624f6a6d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/js/7.184a5e39cc0c624f6a6d.js -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/js/8.176f9455c3442c06ebf6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/js/8.176f9455c3442c06ebf6.js -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/js/9.527be297aba1594ffe0d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/js/9.527be297aba1594ffe0d.js -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/js/app.ea66dc0be78c3ed2ae63.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/js/app.ea66dc0be78c3ed2ae63.js -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/js/manifest.0437a7f02d3154ee1abb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/js/manifest.0437a7f02d3154ee1abb.js -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/js/manifest.1aeebcd3a724536ddb12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/js/manifest.1aeebcd3a724536ddb12.js -------------------------------------------------------------------------------- /bookstore-microservices-platform-gateway/src/main/resources/static/static/js/vendor.c2f13a2146485051ae24.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore-microservices-platform-gateway/src/main/resources/static/static/js/vendor.c2f13a2146485051ae24.js -------------------------------------------------------------------------------- /bookstore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/bookstore.yml -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/pom.xml -------------------------------------------------------------------------------- /skaffold.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/skaffold.yml -------------------------------------------------------------------------------- /travis_docker_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenixsoft/microservice_arch_kubernetes/HEAD/travis_docker_push.sh --------------------------------------------------------------------------------