├── .gitignore ├── LICENSE ├── README.md ├── reactive-jhipster ├── .idea │ ├── .gitignore │ ├── misc.xml │ ├── modules.xml │ ├── reactive-jhipster.iml │ └── vcs.xml ├── LICENSE ├── README.md ├── blog │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .jhipster │ │ ├── Blog.json │ │ ├── Post.json │ │ └── Tag.json │ ├── .prettierignore │ ├── .prettierrc │ ├── .yo-rc.json │ ├── README.md │ ├── build.gradle │ ├── checkstyle.xml │ ├── gradle.properties │ ├── gradle │ │ ├── docker.gradle │ │ ├── profile_dev.gradle │ │ ├── profile_prod.gradle │ │ ├── sonar.gradle │ │ ├── war.gradle │ │ ├── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ └── zipkin.gradle │ ├── gradlew │ ├── gradlew.bat │ ├── package.json │ ├── settings.gradle │ ├── sonar-project.properties │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── app.yml │ │ │ ├── central-server-config │ │ │ │ ├── README.md │ │ │ │ ├── docker-config │ │ │ │ │ └── application.yml │ │ │ │ └── localhost-config │ │ │ │ │ └── application.yml │ │ │ ├── grafana │ │ │ │ └── provisioning │ │ │ │ │ ├── dashboards │ │ │ │ │ ├── JVM.json │ │ │ │ │ └── dashboard.yml │ │ │ │ │ └── datasources │ │ │ │ │ └── datasource.yml │ │ │ ├── jhipster-control-center.yml │ │ │ ├── jhipster-registry.yml │ │ │ ├── jib │ │ │ │ └── entrypoint.sh │ │ │ ├── keycloak.yml │ │ │ ├── monitoring.yml │ │ │ ├── neo4j.yml │ │ │ ├── prometheus │ │ │ │ └── prometheus.yml │ │ │ ├── realm-config │ │ │ │ └── jhipster-realm.json │ │ │ ├── services.yml │ │ │ ├── sonar.yml │ │ │ └── zipkin.yml │ │ ├── java │ │ │ └── com │ │ │ │ └── okta │ │ │ │ └── developer │ │ │ │ └── blog │ │ │ │ ├── BlogApp.java │ │ │ │ ├── GeneratedByJHipster.java │ │ │ │ ├── aop │ │ │ │ └── logging │ │ │ │ │ └── LoggingAspect.java │ │ │ │ ├── config │ │ │ │ ├── ApplicationProperties.java │ │ │ │ ├── AsyncConfiguration.java │ │ │ │ ├── CRLFLogConverter.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DatabaseConfiguration.java │ │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ │ ├── EurekaWorkaroundConfiguration.java │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ ├── LocaleConfiguration.java │ │ │ │ ├── LoggingAspectConfiguration.java │ │ │ │ ├── LoggingConfiguration.java │ │ │ │ ├── ReactorConfiguration.java │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ ├── WebConfigurer.java │ │ │ │ ├── neo4j │ │ │ │ │ ├── Neo4jMigrations.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ ├── domain │ │ │ │ ├── AbstractAuditingEntity.java │ │ │ │ ├── Authority.java │ │ │ │ ├── Blog.java │ │ │ │ ├── Post.java │ │ │ │ ├── Tag.java │ │ │ │ ├── User.java │ │ │ │ └── package-info.java │ │ │ │ ├── repository │ │ │ │ ├── AuthorityRepository.java │ │ │ │ ├── BlogRepository.java │ │ │ │ ├── PostRepository.java │ │ │ │ ├── TagRepository.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── package-info.java │ │ │ │ ├── security │ │ │ │ ├── AuthoritiesConstants.java │ │ │ │ ├── SecurityUtils.java │ │ │ │ ├── oauth2 │ │ │ │ │ ├── AudienceValidator.java │ │ │ │ │ ├── JwtGrantedAuthorityConverter.java │ │ │ │ │ └── OAuthIdpTokenResponseDTO.java │ │ │ │ └── package-info.java │ │ │ │ ├── service │ │ │ │ ├── UserService.java │ │ │ │ ├── dto │ │ │ │ │ ├── AdminUserDTO.java │ │ │ │ │ ├── UserDTO.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── mapper │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ └── web │ │ │ │ └── rest │ │ │ │ ├── BlogResource.java │ │ │ │ ├── PostResource.java │ │ │ │ ├── PublicUserResource.java │ │ │ │ ├── TagResource.java │ │ │ │ ├── errors │ │ │ │ ├── BadRequestAlertException.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── ExceptionTranslator.java │ │ │ │ ├── FieldErrorVM.java │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── vm │ │ │ │ ├── ManagedUserVM.java │ │ │ │ └── package-info.java │ │ └── resources │ │ │ ├── banner.txt │ │ │ ├── config │ │ │ ├── application-dev.yml │ │ │ ├── application-prod.yml │ │ │ ├── application-tls.yml │ │ │ ├── application.yml │ │ │ ├── bootstrap-prod.yml │ │ │ ├── bootstrap.yml │ │ │ ├── neo4j │ │ │ │ └── migrations │ │ │ │ │ ├── user__admin.json │ │ │ │ │ └── user__user.json │ │ │ └── tls │ │ │ │ └── keystore.p12 │ │ │ ├── i18n │ │ │ ├── messages.properties │ │ │ └── messages_en.properties │ │ │ ├── logback-spring.xml │ │ │ ├── static │ │ │ └── index.html │ │ │ └── templates │ │ │ └── error.html │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── okta │ │ │ └── developer │ │ │ └── blog │ │ │ ├── IntegrationTest.java │ │ │ ├── TechnicalStructureTest.java │ │ │ ├── config │ │ │ ├── AsyncSyncConfiguration.java │ │ │ ├── EmbeddedNeo4j.java │ │ │ ├── JHipsterBlockHoundIntegration.java │ │ │ ├── Neo4jTestContainer.java │ │ │ ├── SpringBootTestClassOrderer.java │ │ │ ├── TestContainersSpringContextCustomizerFactory.java │ │ │ └── TestSecurityConfiguration.java │ │ │ ├── domain │ │ │ ├── BlogTest.java │ │ │ ├── PostTest.java │ │ │ └── TagTest.java │ │ │ ├── security │ │ │ ├── SecurityUtilsUnitTest.java │ │ │ └── oauth2 │ │ │ │ └── AudienceValidatorTest.java │ │ │ ├── service │ │ │ ├── UserServiceIT.java │ │ │ └── mapper │ │ │ │ └── UserMapperTest.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── BlogResourceIT.java │ │ │ ├── PostResourceIT.java │ │ │ ├── PublicUserResourceIT.java │ │ │ ├── TagResourceIT.java │ │ │ ├── TestUtil.java │ │ │ ├── UserResourceIT.java │ │ │ ├── WithUnauthenticatedMockUser.java │ │ │ └── errors │ │ │ ├── ExceptionTranslatorIT.java │ │ │ └── ExceptionTranslatorTestController.java │ │ └── resources │ │ ├── META-INF │ │ ├── services │ │ │ └── reactor.blockhound.integration.BlockHoundIntegration │ │ └── spring.factories │ │ ├── config │ │ ├── application.yml │ │ └── bootstrap.yml │ │ ├── junit-platform.properties │ │ └── logback.xml ├── demo.adoc ├── docker-compose │ ├── .yo-rc.json │ ├── README-DOCKER-COMPOSE.md │ ├── central-server-config │ │ └── application.yml │ ├── docker-compose.yml │ └── realm-config │ │ └── jhipster-realm.json ├── gateway │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitattributes │ ├── .gitignore │ ├── .jhipster │ │ ├── Blog.json │ │ ├── Post.json │ │ ├── Product.json │ │ └── Tag.json │ ├── .postcssrc.js │ ├── .prettierignore │ ├── .prettierrc │ ├── .yo-rc.json │ ├── README.md │ ├── build.gradle │ ├── checkstyle.xml │ ├── cypress-audits.config.ts │ ├── cypress.config.ts │ ├── gradle.properties │ ├── gradle │ │ ├── docker.gradle │ │ ├── profile_dev.gradle │ │ ├── profile_prod.gradle │ │ ├── sonar.gradle │ │ ├── war.gradle │ │ ├── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ └── zipkin.gradle │ ├── gradlew │ ├── gradlew.bat │ ├── npmw │ ├── npmw.cmd │ ├── package.json │ ├── settings.gradle │ ├── sonar-project.properties │ ├── src │ │ ├── main │ │ │ ├── docker │ │ │ │ ├── app.yml │ │ │ │ ├── central-server-config │ │ │ │ │ ├── README.md │ │ │ │ │ ├── docker-config │ │ │ │ │ │ └── application.yml │ │ │ │ │ └── localhost-config │ │ │ │ │ │ └── application.yml │ │ │ │ ├── grafana │ │ │ │ │ └── provisioning │ │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── JVM.json │ │ │ │ │ │ └── dashboard.yml │ │ │ │ │ │ └── datasources │ │ │ │ │ │ └── datasource.yml │ │ │ │ ├── jhipster-control-center.yml │ │ │ │ ├── jhipster-registry.yml │ │ │ │ ├── jib │ │ │ │ │ └── entrypoint.sh │ │ │ │ ├── keycloak.yml │ │ │ │ ├── monitoring.yml │ │ │ │ ├── postgresql.yml │ │ │ │ ├── prometheus │ │ │ │ │ └── prometheus.yml │ │ │ │ ├── realm-config │ │ │ │ │ └── jhipster-realm.json │ │ │ │ ├── services.yml │ │ │ │ ├── sonar.yml │ │ │ │ └── zipkin.yml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── okta │ │ │ │ │ └── developer │ │ │ │ │ └── gateway │ │ │ │ │ ├── GatewayApp.java │ │ │ │ │ ├── GeneratedByJHipster.java │ │ │ │ │ ├── aop │ │ │ │ │ └── logging │ │ │ │ │ │ └── LoggingAspect.java │ │ │ │ │ ├── config │ │ │ │ │ ├── ApplicationProperties.java │ │ │ │ │ ├── AsyncConfiguration.java │ │ │ │ │ ├── CRLFLogConverter.java │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── DatabaseConfiguration.java │ │ │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ │ │ ├── EurekaWorkaroundConfiguration.java │ │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ │ ├── LiquibaseConfiguration.java │ │ │ │ │ ├── LocaleConfiguration.java │ │ │ │ │ ├── LoggingAspectConfiguration.java │ │ │ │ │ ├── LoggingConfiguration.java │ │ │ │ │ ├── ReactorConfiguration.java │ │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ │ ├── WebConfigurer.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── domain │ │ │ │ │ ├── AbstractAuditingEntity.java │ │ │ │ │ ├── Authority.java │ │ │ │ │ ├── User.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── repository │ │ │ │ │ ├── AuthorityRepository.java │ │ │ │ │ ├── EntityManager.java │ │ │ │ │ ├── UserRepository.java │ │ │ │ │ ├── UserSqlHelper.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── rowmapper │ │ │ │ │ │ ├── ColumnConverter.java │ │ │ │ │ │ └── UserRowMapper.java │ │ │ │ │ ├── security │ │ │ │ │ ├── AuthoritiesConstants.java │ │ │ │ │ ├── SecurityUtils.java │ │ │ │ │ ├── oauth2 │ │ │ │ │ │ ├── AudienceValidator.java │ │ │ │ │ │ ├── JwtGrantedAuthorityConverter.java │ │ │ │ │ │ └── OAuthIdpTokenResponseDTO.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── service │ │ │ │ │ ├── UserService.java │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── AdminUserDTO.java │ │ │ │ │ │ ├── UserDTO.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── mapper │ │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ │ │ └── web │ │ │ │ │ ├── filter │ │ │ │ │ ├── ModifyServersOpenApiFilter.java │ │ │ │ │ ├── OAuth2ReactiveRefreshTokensWebFilter.java │ │ │ │ │ └── SpaWebFilter.java │ │ │ │ │ └── rest │ │ │ │ │ ├── AccountResource.java │ │ │ │ │ ├── AuthInfoResource.java │ │ │ │ │ ├── GatewayResource.java │ │ │ │ │ ├── LogoutResource.java │ │ │ │ │ ├── PublicUserResource.java │ │ │ │ │ ├── errors │ │ │ │ │ ├── BadRequestAlertException.java │ │ │ │ │ ├── ErrorConstants.java │ │ │ │ │ ├── ExceptionTranslator.java │ │ │ │ │ ├── FieldErrorVM.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── vm │ │ │ │ │ ├── ManagedUserVM.java │ │ │ │ │ ├── RouteVM.java │ │ │ │ │ └── package-info.java │ │ │ ├── resources │ │ │ │ ├── .h2.server.properties │ │ │ │ ├── banner.txt │ │ │ │ ├── config │ │ │ │ │ ├── application-dev.yml │ │ │ │ │ ├── application-prod.yml │ │ │ │ │ ├── application-tls.yml │ │ │ │ │ ├── application.yml │ │ │ │ │ ├── bootstrap-prod.yml │ │ │ │ │ ├── bootstrap.yml │ │ │ │ │ ├── liquibase │ │ │ │ │ │ ├── changelog │ │ │ │ │ │ │ └── 00000000000000_initial_schema.xml │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ └── authority.csv │ │ │ │ │ │ └── master.xml │ │ │ │ │ └── tls │ │ │ │ │ │ └── keystore.p12 │ │ │ │ ├── i18n │ │ │ │ │ ├── messages.properties │ │ │ │ │ └── messages_en.properties │ │ │ │ ├── logback-spring.xml │ │ │ │ └── templates │ │ │ │ │ └── error.html │ │ │ └── webapp │ │ │ │ ├── 404.html │ │ │ │ ├── WEB-INF │ │ │ │ └── web.xml │ │ │ │ ├── app │ │ │ │ ├── account │ │ │ │ │ ├── account.service.ts │ │ │ │ │ └── login.service.ts │ │ │ │ ├── admin │ │ │ │ │ ├── configuration │ │ │ │ │ │ ├── configuration.component.ts │ │ │ │ │ │ ├── configuration.service.ts │ │ │ │ │ │ └── configuration.vue │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── docs.component.ts │ │ │ │ │ │ └── docs.vue │ │ │ │ │ ├── gateway │ │ │ │ │ │ ├── gateway.component.ts │ │ │ │ │ │ ├── gateway.service.ts │ │ │ │ │ │ └── gateway.vue │ │ │ │ │ ├── health │ │ │ │ │ │ ├── health-modal.component.ts │ │ │ │ │ │ ├── health-modal.vue │ │ │ │ │ │ ├── health.component.ts │ │ │ │ │ │ ├── health.service.ts │ │ │ │ │ │ └── health.vue │ │ │ │ │ ├── logs │ │ │ │ │ │ ├── logs.component.ts │ │ │ │ │ │ ├── logs.service.ts │ │ │ │ │ │ └── logs.vue │ │ │ │ │ └── metrics │ │ │ │ │ │ ├── metrics-modal.component.ts │ │ │ │ │ │ ├── metrics-modal.vue │ │ │ │ │ │ ├── metrics.component.ts │ │ │ │ │ │ ├── metrics.service.ts │ │ │ │ │ │ └── metrics.vue │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.vue │ │ │ │ ├── constants.ts │ │ │ │ ├── core │ │ │ │ │ ├── error │ │ │ │ │ │ ├── error.component.ts │ │ │ │ │ │ └── error.vue │ │ │ │ │ ├── home │ │ │ │ │ │ ├── home.component.ts │ │ │ │ │ │ └── home.vue │ │ │ │ │ ├── jhi-footer │ │ │ │ │ │ ├── jhi-footer.component.ts │ │ │ │ │ │ └── jhi-footer.vue │ │ │ │ │ ├── jhi-navbar │ │ │ │ │ │ ├── jhi-navbar.component.ts │ │ │ │ │ │ └── jhi-navbar.vue │ │ │ │ │ └── ribbon │ │ │ │ │ │ ├── ribbon.component.ts │ │ │ │ │ │ └── ribbon.vue │ │ │ │ ├── declarations.d.ts │ │ │ │ ├── entities │ │ │ │ │ ├── blog │ │ │ │ │ │ ├── blog │ │ │ │ │ │ │ ├── blog-details.component.ts │ │ │ │ │ │ │ ├── blog-details.vue │ │ │ │ │ │ │ ├── blog-update.component.ts │ │ │ │ │ │ │ ├── blog-update.vue │ │ │ │ │ │ │ ├── blog.component.ts │ │ │ │ │ │ │ ├── blog.service.ts │ │ │ │ │ │ │ └── blog.vue │ │ │ │ │ │ ├── post │ │ │ │ │ │ │ ├── post-details.component.ts │ │ │ │ │ │ │ ├── post-details.vue │ │ │ │ │ │ │ ├── post-update.component.ts │ │ │ │ │ │ │ ├── post-update.vue │ │ │ │ │ │ │ ├── post.component.ts │ │ │ │ │ │ │ ├── post.service.ts │ │ │ │ │ │ │ └── post.vue │ │ │ │ │ │ └── tag │ │ │ │ │ │ │ ├── tag-details.component.ts │ │ │ │ │ │ │ ├── tag-details.vue │ │ │ │ │ │ │ ├── tag-update.component.ts │ │ │ │ │ │ │ ├── tag-update.vue │ │ │ │ │ │ │ ├── tag.component.ts │ │ │ │ │ │ │ ├── tag.service.ts │ │ │ │ │ │ │ └── tag.vue │ │ │ │ │ ├── entities-menu.component.ts │ │ │ │ │ ├── entities-menu.vue │ │ │ │ │ ├── entities.component.ts │ │ │ │ │ ├── entities.vue │ │ │ │ │ ├── store │ │ │ │ │ │ └── product │ │ │ │ │ │ │ ├── product-details.component.ts │ │ │ │ │ │ │ ├── product-details.vue │ │ │ │ │ │ │ ├── product-update.component.ts │ │ │ │ │ │ │ ├── product-update.vue │ │ │ │ │ │ │ ├── product.component.ts │ │ │ │ │ │ │ ├── product.service.ts │ │ │ │ │ │ │ └── product.vue │ │ │ │ │ └── user │ │ │ │ │ │ └── user.service.ts │ │ │ │ ├── locale │ │ │ │ │ └── translation.service.ts │ │ │ │ ├── main.ts │ │ │ │ ├── router │ │ │ │ │ ├── admin.ts │ │ │ │ │ ├── entities.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── pages.ts │ │ │ │ ├── shared │ │ │ │ │ ├── alert │ │ │ │ │ │ └── alert.service.ts │ │ │ │ │ ├── config │ │ │ │ │ │ ├── axios-interceptor.ts │ │ │ │ │ │ ├── config-bootstrap-vue.ts │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── dayjs.ts │ │ │ │ │ │ ├── formatter.ts │ │ │ │ │ │ └── store │ │ │ │ │ │ │ ├── account-store.ts │ │ │ │ │ │ │ └── translation-store.ts │ │ │ │ │ ├── data │ │ │ │ │ │ └── data-utils.service.ts │ │ │ │ │ ├── date │ │ │ │ │ │ └── filters.ts │ │ │ │ │ ├── jhi-item-count.component.ts │ │ │ │ │ ├── jhi-item-count.vue │ │ │ │ │ ├── model │ │ │ │ │ │ ├── blog │ │ │ │ │ │ │ ├── blog.model.ts │ │ │ │ │ │ │ ├── post.model.ts │ │ │ │ │ │ │ └── tag.model.ts │ │ │ │ │ │ ├── store │ │ │ │ │ │ │ └── product.model.ts │ │ │ │ │ │ └── user.model.ts │ │ │ │ │ ├── security │ │ │ │ │ │ └── authority.ts │ │ │ │ │ └── sort │ │ │ │ │ │ ├── jhi-sort-indicator.component.ts │ │ │ │ │ │ ├── jhi-sort-indicator.vue │ │ │ │ │ │ └── sorts.ts │ │ │ │ └── shims-vue.d.ts │ │ │ │ ├── content │ │ │ │ ├── css │ │ │ │ │ └── loading.css │ │ │ │ ├── images │ │ │ │ │ ├── jhipster_family_member_0.svg │ │ │ │ │ ├── jhipster_family_member_0_head-192.png │ │ │ │ │ ├── jhipster_family_member_0_head-256.png │ │ │ │ │ ├── jhipster_family_member_0_head-384.png │ │ │ │ │ ├── jhipster_family_member_0_head-512.png │ │ │ │ │ ├── jhipster_family_member_1.svg │ │ │ │ │ ├── jhipster_family_member_1_head-192.png │ │ │ │ │ ├── jhipster_family_member_1_head-256.png │ │ │ │ │ ├── jhipster_family_member_1_head-384.png │ │ │ │ │ ├── jhipster_family_member_1_head-512.png │ │ │ │ │ ├── jhipster_family_member_2.svg │ │ │ │ │ ├── jhipster_family_member_2_head-192.png │ │ │ │ │ ├── jhipster_family_member_2_head-256.png │ │ │ │ │ ├── jhipster_family_member_2_head-384.png │ │ │ │ │ ├── jhipster_family_member_2_head-512.png │ │ │ │ │ ├── jhipster_family_member_3.svg │ │ │ │ │ ├── jhipster_family_member_3_head-192.png │ │ │ │ │ ├── jhipster_family_member_3_head-256.png │ │ │ │ │ ├── jhipster_family_member_3_head-384.png │ │ │ │ │ ├── jhipster_family_member_3_head-512.png │ │ │ │ │ └── logo-jhipster.png │ │ │ │ └── scss │ │ │ │ │ ├── _bootstrap-variables.scss │ │ │ │ │ ├── global.scss │ │ │ │ │ └── vendor.scss │ │ │ │ ├── favicon.ico │ │ │ │ ├── i18n │ │ │ │ └── en │ │ │ │ │ ├── activate.json │ │ │ │ │ ├── blogBlog.json │ │ │ │ │ ├── blogPost.json │ │ │ │ │ ├── blogTag.json │ │ │ │ │ ├── configuration.json │ │ │ │ │ ├── error.json │ │ │ │ │ ├── gateway.json │ │ │ │ │ ├── global.json │ │ │ │ │ ├── health.json │ │ │ │ │ ├── home.json │ │ │ │ │ ├── login.json │ │ │ │ │ ├── logs.json │ │ │ │ │ ├── metrics.json │ │ │ │ │ ├── password.json │ │ │ │ │ ├── register.json │ │ │ │ │ ├── reset.json │ │ │ │ │ ├── sessions.json │ │ │ │ │ ├── settings.json │ │ │ │ │ ├── storeProduct.json │ │ │ │ │ └── user-management.json │ │ │ │ ├── index.html │ │ │ │ ├── manifest.webapp │ │ │ │ ├── robots.txt │ │ │ │ └── swagger-ui │ │ │ │ ├── dist │ │ │ │ └── images │ │ │ │ │ └── throbber.gif │ │ │ │ └── index.html │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── okta │ │ │ │ └── developer │ │ │ │ └── gateway │ │ │ │ ├── IntegrationTest.java │ │ │ │ ├── TechnicalStructureTest.java │ │ │ │ ├── config │ │ │ │ ├── AsyncSyncConfiguration.java │ │ │ │ ├── EmbeddedSQL.java │ │ │ │ ├── JHipsterBlockHoundIntegration.java │ │ │ │ ├── PostgreSqlTestContainer.java │ │ │ │ ├── SpringBootTestClassOrderer.java │ │ │ │ ├── SqlTestContainer.java │ │ │ │ ├── TestContainersSpringContextCustomizerFactory.java │ │ │ │ └── TestSecurityConfiguration.java │ │ │ │ ├── security │ │ │ │ ├── SecurityUtilsUnitTest.java │ │ │ │ └── oauth2 │ │ │ │ │ └── AudienceValidatorTest.java │ │ │ │ ├── service │ │ │ │ ├── UserServiceIT.java │ │ │ │ └── mapper │ │ │ │ │ └── UserMapperTest.java │ │ │ │ ├── test │ │ │ │ └── util │ │ │ │ │ └── OAuth2TestUtil.java │ │ │ │ └── web │ │ │ │ ├── filter │ │ │ │ └── ModifyServersOpenApiFilterTest.java │ │ │ │ └── rest │ │ │ │ ├── AccountResourceIT.java │ │ │ │ ├── LogoutResourceIT.java │ │ │ │ ├── PublicUserResourceIT.java │ │ │ │ ├── TestUtil.java │ │ │ │ ├── UserResourceIT.java │ │ │ │ ├── WithUnauthenticatedMockUser.java │ │ │ │ └── errors │ │ │ │ ├── ExceptionTranslatorIT.java │ │ │ │ └── ExceptionTranslatorTestController.java │ │ │ ├── javascript │ │ │ ├── cypress │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── e2e │ │ │ │ │ ├── administration │ │ │ │ │ │ └── administration.cy.ts │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── blog.cy.ts │ │ │ │ │ │ ├── post.cy.ts │ │ │ │ │ │ ├── product.cy.ts │ │ │ │ │ │ └── tag.cy.ts │ │ │ │ │ └── lighthouse.audits.ts │ │ │ │ ├── fixtures │ │ │ │ │ └── integration-test.png │ │ │ │ ├── plugins │ │ │ │ │ └── index.ts │ │ │ │ ├── support │ │ │ │ │ ├── commands.ts │ │ │ │ │ ├── entity.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── management.ts │ │ │ │ │ ├── navbar.ts │ │ │ │ │ └── oauth2.ts │ │ │ │ └── tsconfig.json │ │ │ ├── jest.conf.js │ │ │ └── spec │ │ │ │ └── app │ │ │ │ ├── account │ │ │ │ ├── account.service.spec.ts │ │ │ │ └── login.service.spec.ts │ │ │ │ ├── admin │ │ │ │ ├── configuration │ │ │ │ │ └── configuration.component.spec.ts │ │ │ │ ├── gateway │ │ │ │ │ └── gateway.component.spec.ts │ │ │ │ ├── health │ │ │ │ │ ├── health-modal.component.spec.ts │ │ │ │ │ ├── health.component.spec.ts │ │ │ │ │ └── health.service.spec.ts │ │ │ │ ├── logs │ │ │ │ │ └── logs.component.spec.ts │ │ │ │ └── metrics │ │ │ │ │ ├── metrics-modal.component.spec.ts │ │ │ │ │ └── metrics.component.spec.ts │ │ │ │ ├── core │ │ │ │ ├── error │ │ │ │ │ └── error.component.spec.ts │ │ │ │ ├── home │ │ │ │ │ └── home.component.spec.ts │ │ │ │ ├── jhi-navbar │ │ │ │ │ └── jhi-navbar.component.spec.ts │ │ │ │ └── ribbon │ │ │ │ │ └── ribbon.component.spec.ts │ │ │ │ ├── entities │ │ │ │ ├── blog │ │ │ │ │ ├── blog │ │ │ │ │ │ ├── blog-details.component.spec.ts │ │ │ │ │ │ ├── blog-update.component.spec.ts │ │ │ │ │ │ ├── blog.component.spec.ts │ │ │ │ │ │ └── blog.service.spec.ts │ │ │ │ │ ├── post │ │ │ │ │ │ ├── post-details.component.spec.ts │ │ │ │ │ │ ├── post-update.component.spec.ts │ │ │ │ │ │ ├── post.component.spec.ts │ │ │ │ │ │ └── post.service.spec.ts │ │ │ │ │ └── tag │ │ │ │ │ │ ├── tag-details.component.spec.ts │ │ │ │ │ │ ├── tag-update.component.spec.ts │ │ │ │ │ │ ├── tag.component.spec.ts │ │ │ │ │ │ └── tag.service.spec.ts │ │ │ │ └── store │ │ │ │ │ └── product │ │ │ │ │ ├── product-details.component.spec.ts │ │ │ │ │ ├── product-update.component.spec.ts │ │ │ │ │ ├── product.component.spec.ts │ │ │ │ │ └── product.service.spec.ts │ │ │ │ └── shared │ │ │ │ ├── alert │ │ │ │ └── alert.service.spec.ts │ │ │ │ ├── config │ │ │ │ ├── axios-interceptor.spec.ts │ │ │ │ └── formatter.spec.ts │ │ │ │ ├── data │ │ │ │ └── data-utils.service.spec.ts │ │ │ │ └── sort │ │ │ │ └── sorts.spec.ts │ │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── services │ │ │ │ └── reactor.blockhound.integration.BlockHoundIntegration │ │ │ └── spring.factories │ │ │ ├── config │ │ │ ├── application-testdev.yml │ │ │ ├── application.yml │ │ │ └── bootstrap.yml │ │ │ ├── junit-platform.properties │ │ │ └── logback.xml │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── webpack │ │ ├── config.js │ │ ├── vue.utils.js │ │ ├── webpack.common.js │ │ ├── webpack.dev.js │ │ └── webpack.prod.js ├── reactive-mf.jdl ├── reactive-ms.jdl └── store │ ├── .devcontainer │ ├── Dockerfile │ └── devcontainer.json │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .jhipster │ └── Product.json │ ├── .prettierignore │ ├── .prettierrc │ ├── .yo-rc.json │ ├── README.md │ ├── build.gradle │ ├── checkstyle.xml │ ├── gradle.properties │ ├── gradle │ ├── docker.gradle │ ├── profile_dev.gradle │ ├── profile_prod.gradle │ ├── sonar.gradle │ ├── war.gradle │ ├── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ └── zipkin.gradle │ ├── gradlew │ ├── gradlew.bat │ ├── package.json │ ├── settings.gradle │ ├── sonar-project.properties │ └── src │ ├── main │ ├── docker │ │ ├── app.yml │ │ ├── central-server-config │ │ │ ├── README.md │ │ │ ├── docker-config │ │ │ │ └── application.yml │ │ │ └── localhost-config │ │ │ │ └── application.yml │ │ ├── grafana │ │ │ └── provisioning │ │ │ │ ├── dashboards │ │ │ │ ├── JVM.json │ │ │ │ └── dashboard.yml │ │ │ │ └── datasources │ │ │ │ └── datasource.yml │ │ ├── jhipster-control-center.yml │ │ ├── jhipster-registry.yml │ │ ├── jib │ │ │ └── entrypoint.sh │ │ ├── keycloak.yml │ │ ├── mongodb-cluster.yml │ │ ├── mongodb.yml │ │ ├── mongodb │ │ │ ├── MongoDB.Dockerfile │ │ │ └── scripts │ │ │ │ └── init_replicaset.js │ │ ├── monitoring.yml │ │ ├── prometheus │ │ │ └── prometheus.yml │ │ ├── realm-config │ │ │ └── jhipster-realm.json │ │ ├── services.yml │ │ ├── sonar.yml │ │ └── zipkin.yml │ ├── java │ │ └── com │ │ │ └── okta │ │ │ └── developer │ │ │ └── store │ │ │ ├── GeneratedByJHipster.java │ │ │ ├── StoreApp.java │ │ │ ├── aop │ │ │ └── logging │ │ │ │ └── LoggingAspect.java │ │ │ ├── config │ │ │ ├── ApplicationProperties.java │ │ │ ├── AsyncConfiguration.java │ │ │ ├── CRLFLogConverter.java │ │ │ ├── Constants.java │ │ │ ├── DatabaseConfiguration.java │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ ├── EurekaWorkaroundConfiguration.java │ │ │ ├── JacksonConfiguration.java │ │ │ ├── LocaleConfiguration.java │ │ │ ├── LoggingAspectConfiguration.java │ │ │ ├── LoggingConfiguration.java │ │ │ ├── ReactorConfiguration.java │ │ │ ├── SecurityConfiguration.java │ │ │ ├── WebConfigurer.java │ │ │ ├── dbmigrations │ │ │ │ ├── InitialSetupMigration.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── domain │ │ │ ├── AbstractAuditingEntity.java │ │ │ ├── Authority.java │ │ │ ├── Product.java │ │ │ ├── User.java │ │ │ └── package-info.java │ │ │ ├── repository │ │ │ ├── AuthorityRepository.java │ │ │ ├── ProductRepository.java │ │ │ ├── UserRepository.java │ │ │ └── package-info.java │ │ │ ├── security │ │ │ ├── AuthoritiesConstants.java │ │ │ ├── SecurityUtils.java │ │ │ ├── oauth2 │ │ │ │ ├── AudienceValidator.java │ │ │ │ ├── JwtGrantedAuthorityConverter.java │ │ │ │ └── OAuthIdpTokenResponseDTO.java │ │ │ └── package-info.java │ │ │ ├── service │ │ │ ├── UserService.java │ │ │ ├── dto │ │ │ │ ├── AdminUserDTO.java │ │ │ │ ├── UserDTO.java │ │ │ │ └── package-info.java │ │ │ ├── mapper │ │ │ │ ├── UserMapper.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── ProductResource.java │ │ │ ├── PublicUserResource.java │ │ │ ├── errors │ │ │ ├── BadRequestAlertException.java │ │ │ ├── ErrorConstants.java │ │ │ ├── ExceptionTranslator.java │ │ │ ├── FieldErrorVM.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── vm │ │ │ ├── ManagedUserVM.java │ │ │ └── package-info.java │ └── resources │ │ ├── banner.txt │ │ ├── config │ │ ├── application-dev.yml │ │ ├── application-prod.yml │ │ ├── application-tls.yml │ │ ├── application.yml │ │ ├── bootstrap-prod.yml │ │ ├── bootstrap.yml │ │ └── tls │ │ │ └── keystore.p12 │ │ ├── i18n │ │ ├── messages.properties │ │ └── messages_en.properties │ │ ├── logback-spring.xml │ │ ├── static │ │ └── index.html │ │ └── templates │ │ └── error.html │ └── test │ ├── java │ └── com │ │ └── okta │ │ └── developer │ │ └── store │ │ ├── IntegrationTest.java │ │ ├── TechnicalStructureTest.java │ │ ├── config │ │ ├── AsyncSyncConfiguration.java │ │ ├── EmbeddedMongo.java │ │ ├── JHipsterBlockHoundIntegration.java │ │ ├── MongoDbTestContainer.java │ │ ├── SpringBootTestClassOrderer.java │ │ ├── TestContainersSpringContextCustomizerFactory.java │ │ └── TestSecurityConfiguration.java │ │ ├── domain │ │ └── ProductTest.java │ │ ├── security │ │ ├── SecurityUtilsUnitTest.java │ │ └── oauth2 │ │ │ └── AudienceValidatorTest.java │ │ ├── service │ │ ├── UserServiceIT.java │ │ └── mapper │ │ │ └── UserMapperTest.java │ │ └── web │ │ └── rest │ │ ├── ProductResourceIT.java │ │ ├── PublicUserResourceIT.java │ │ ├── TestUtil.java │ │ ├── UserResourceIT.java │ │ ├── WithUnauthenticatedMockUser.java │ │ └── errors │ │ ├── ExceptionTranslatorIT.java │ │ └── ExceptionTranslatorTestController.java │ └── resources │ ├── META-INF │ ├── services │ │ └── reactor.blockhound.integration.BlockHoundIntegration │ └── spring.factories │ ├── config │ ├── application.yml │ └── bootstrap.yml │ ├── junit-platform.properties │ └── logback.xml ├── spring-boot-gateway-mvc ├── .gitignore ├── LICENSE ├── README.md ├── api-gateway │ ├── .env.example │ ├── .gitignore │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── apigateway │ │ │ │ ├── ApiGatewayApplication.java │ │ │ │ ├── config │ │ │ │ └── SecurityConfiguration.java │ │ │ │ └── web │ │ │ │ └── HomeController.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── apigateway │ │ └── ApiGatewayApplicationTests.java ├── car-service │ ├── .env.example │ ├── .gitignore │ ├── build.gradle │ ├── compose.yaml │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── carservice │ │ │ │ ├── CarServiceApplication.java │ │ │ │ ├── data │ │ │ │ ├── Car.java │ │ │ │ └── CarRepository.java │ │ │ │ └── web │ │ │ │ └── HomeController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── carservice │ │ └── CarServiceApplicationTests.java ├── demo.adoc └── discovery-service │ ├── .gitignore │ ├── build.gradle │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── discoveryservice │ │ │ └── EurekaServiceApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── example │ └── discoveryservice │ └── EurekaServiceApplicationTests.java ├── spring-boot-gateway-webflux ├── .gitignore ├── LICENSE ├── README.md ├── api-gateway │ ├── .env.example │ ├── .gitignore │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── apigateway │ │ │ │ ├── ApiGatewayApplication.java │ │ │ │ ├── config │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ └── WebClientConfiguration.java │ │ │ │ └── web │ │ │ │ ├── CoolCarController.java │ │ │ │ └── HomeController.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── apigateway │ │ └── ApiGatewayApplicationTests.java ├── car-service │ ├── .env.example │ ├── .gitignore │ ├── build.gradle │ ├── compose.yaml │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── carservice │ │ │ │ ├── CarServiceApplication.java │ │ │ │ ├── data │ │ │ │ ├── Car.java │ │ │ │ └── CarRepository.java │ │ │ │ └── web │ │ │ │ ├── CarController.java │ │ │ │ └── HomeController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── carservice │ │ └── CarServiceApplicationTests.java ├── demo.adoc └── discovery-service │ ├── .gitignore │ ├── build.gradle │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── discoveryservice │ │ │ └── EurekaServiceApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── example │ └── discoveryservice │ └── EurekaServiceApplicationTests.java └── static └── java-microservices.webp /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/README.md -------------------------------------------------------------------------------- /reactive-jhipster/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/.idea/.gitignore -------------------------------------------------------------------------------- /reactive-jhipster/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/.idea/misc.xml -------------------------------------------------------------------------------- /reactive-jhipster/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/.idea/modules.xml -------------------------------------------------------------------------------- /reactive-jhipster/.idea/reactive-jhipster.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/.idea/reactive-jhipster.iml -------------------------------------------------------------------------------- /reactive-jhipster/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/.idea/vcs.xml -------------------------------------------------------------------------------- /reactive-jhipster/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/LICENSE -------------------------------------------------------------------------------- /reactive-jhipster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/README.md -------------------------------------------------------------------------------- /reactive-jhipster/blog/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /reactive-jhipster/blog/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /reactive-jhipster/blog/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/.editorconfig -------------------------------------------------------------------------------- /reactive-jhipster/blog/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/.gitattributes -------------------------------------------------------------------------------- /reactive-jhipster/blog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/.gitignore -------------------------------------------------------------------------------- /reactive-jhipster/blog/.jhipster/Blog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/.jhipster/Blog.json -------------------------------------------------------------------------------- /reactive-jhipster/blog/.jhipster/Post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/.jhipster/Post.json -------------------------------------------------------------------------------- /reactive-jhipster/blog/.jhipster/Tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/.jhipster/Tag.json -------------------------------------------------------------------------------- /reactive-jhipster/blog/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/.prettierignore -------------------------------------------------------------------------------- /reactive-jhipster/blog/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/.prettierrc -------------------------------------------------------------------------------- /reactive-jhipster/blog/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/.yo-rc.json -------------------------------------------------------------------------------- /reactive-jhipster/blog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/README.md -------------------------------------------------------------------------------- /reactive-jhipster/blog/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/build.gradle -------------------------------------------------------------------------------- /reactive-jhipster/blog/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/checkstyle.xml -------------------------------------------------------------------------------- /reactive-jhipster/blog/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/gradle.properties -------------------------------------------------------------------------------- /reactive-jhipster/blog/gradle/docker.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/gradle/docker.gradle -------------------------------------------------------------------------------- /reactive-jhipster/blog/gradle/profile_dev.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/gradle/profile_dev.gradle -------------------------------------------------------------------------------- /reactive-jhipster/blog/gradle/profile_prod.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/gradle/profile_prod.gradle -------------------------------------------------------------------------------- /reactive-jhipster/blog/gradle/sonar.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/gradle/sonar.gradle -------------------------------------------------------------------------------- /reactive-jhipster/blog/gradle/war.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/gradle/war.gradle -------------------------------------------------------------------------------- /reactive-jhipster/blog/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /reactive-jhipster/blog/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /reactive-jhipster/blog/gradle/zipkin.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/gradle/zipkin.gradle -------------------------------------------------------------------------------- /reactive-jhipster/blog/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/gradlew -------------------------------------------------------------------------------- /reactive-jhipster/blog/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/gradlew.bat -------------------------------------------------------------------------------- /reactive-jhipster/blog/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/package.json -------------------------------------------------------------------------------- /reactive-jhipster/blog/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/settings.gradle -------------------------------------------------------------------------------- /reactive-jhipster/blog/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/sonar-project.properties -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/app.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/central-server-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/central-server-config/README.md -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/central-server-config/docker-config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/central-server-config/docker-config/application.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/central-server-config/localhost-config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/central-server-config/localhost-config/application.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/grafana/provisioning/dashboards/JVM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/grafana/provisioning/dashboards/JVM.json -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/grafana/provisioning/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/grafana/provisioning/dashboards/dashboard.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/grafana/provisioning/datasources/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/grafana/provisioning/datasources/datasource.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/jhipster-control-center.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/jhipster-control-center.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/jhipster-registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/jhipster-registry.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/jib/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/jib/entrypoint.sh -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/keycloak.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/keycloak.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/monitoring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/monitoring.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/neo4j.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/neo4j.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/prometheus/prometheus.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/realm-config/jhipster-realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/realm-config/jhipster-realm.json -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/services.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/docker/zipkin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/docker/zipkin.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/BlogApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/BlogApp.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/GeneratedByJHipster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/GeneratedByJHipster.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/aop/logging/LoggingAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/aop/logging/LoggingAspect.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/ApplicationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/ApplicationProperties.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/AsyncConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/AsyncConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/CRLFLogConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/CRLFLogConverter.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/Constants.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/DatabaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/DatabaseConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/JacksonConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/JacksonConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/LocaleConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/LocaleConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/LoggingConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/LoggingConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/ReactorConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/ReactorConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/SecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/SecurityConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/WebConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/WebConfigurer.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/neo4j/Neo4jMigrations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/neo4j/Neo4jMigrations.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/neo4j/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/neo4j/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/config/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/domain/AbstractAuditingEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/domain/AbstractAuditingEntity.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/domain/Authority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/domain/Authority.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/domain/Blog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/domain/Blog.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/domain/Post.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/domain/Post.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/domain/Tag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/domain/Tag.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/domain/User.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/domain/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/domain/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/repository/AuthorityRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/repository/AuthorityRepository.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/repository/BlogRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/repository/BlogRepository.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/repository/PostRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/repository/PostRepository.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/repository/TagRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/repository/TagRepository.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/repository/UserRepository.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/repository/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/repository/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/security/AuthoritiesConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/security/AuthoritiesConstants.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/security/SecurityUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/security/SecurityUtils.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/security/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/security/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/service/UserService.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/service/dto/AdminUserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/service/dto/AdminUserDTO.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/service/dto/UserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/service/dto/UserDTO.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/service/dto/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/service/dto/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/service/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/service/mapper/UserMapper.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/service/mapper/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/service/mapper/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/service/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/service/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/BlogResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/BlogResource.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/PostResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/PostResource.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/PublicUserResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/PublicUserResource.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/TagResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/TagResource.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/errors/ErrorConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/errors/ErrorConstants.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/errors/FieldErrorVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/errors/FieldErrorVM.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/errors/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/errors/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/vm/ManagedUserVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/vm/ManagedUserVM.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/vm/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/java/com/okta/developer/blog/web/rest/vm/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/resources/banner.txt -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/resources/config/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/resources/config/application-dev.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/resources/config/application-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/resources/config/application-prod.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/resources/config/application-tls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/resources/config/application-tls.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/resources/config/bootstrap-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/resources/config/bootstrap-prod.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/resources/config/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/resources/config/bootstrap.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/resources/config/neo4j/migrations/user__admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/resources/config/neo4j/migrations/user__admin.json -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/resources/config/neo4j/migrations/user__user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/resources/config/neo4j/migrations/user__user.json -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/resources/config/tls/keystore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/resources/config/tls/keystore.p12 -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/resources/i18n/messages.properties -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/resources/i18n/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/resources/i18n/messages_en.properties -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/resources/static/index.html -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/IntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/IntegrationTest.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/TechnicalStructureTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/TechnicalStructureTest.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/config/AsyncSyncConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/config/AsyncSyncConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/config/EmbeddedNeo4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/config/EmbeddedNeo4j.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/config/Neo4jTestContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/config/Neo4jTestContainer.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/config/TestSecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/config/TestSecurityConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/domain/BlogTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/domain/BlogTest.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/domain/PostTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/domain/PostTest.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/domain/TagTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/domain/TagTest.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/security/SecurityUtilsUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/security/SecurityUtilsUnitTest.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/service/UserServiceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/service/UserServiceIT.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/service/mapper/UserMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/service/mapper/UserMapperTest.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/web/rest/BlogResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/web/rest/BlogResourceIT.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/web/rest/PostResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/web/rest/PostResourceIT.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/web/rest/PublicUserResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/web/rest/PublicUserResourceIT.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/web/rest/TagResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/web/rest/TagResourceIT.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/web/rest/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/web/rest/TestUtil.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/java/com/okta/developer/blog/web/rest/UserResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/java/com/okta/developer/blog/web/rest/UserResourceIT.java -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/resources/config/application.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/resources/config/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/resources/config/bootstrap.yml -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/resources/junit-platform.properties -------------------------------------------------------------------------------- /reactive-jhipster/blog/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/blog/src/test/resources/logback.xml -------------------------------------------------------------------------------- /reactive-jhipster/demo.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/demo.adoc -------------------------------------------------------------------------------- /reactive-jhipster/docker-compose/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/docker-compose/.yo-rc.json -------------------------------------------------------------------------------- /reactive-jhipster/docker-compose/README-DOCKER-COMPOSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/docker-compose/README-DOCKER-COMPOSE.md -------------------------------------------------------------------------------- /reactive-jhipster/docker-compose/central-server-config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/docker-compose/central-server-config/application.yml -------------------------------------------------------------------------------- /reactive-jhipster/docker-compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/docker-compose/docker-compose.yml -------------------------------------------------------------------------------- /reactive-jhipster/docker-compose/realm-config/jhipster-realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/docker-compose/realm-config/jhipster-realm.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /reactive-jhipster/gateway/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/.editorconfig -------------------------------------------------------------------------------- /reactive-jhipster/gateway/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/.eslintignore -------------------------------------------------------------------------------- /reactive-jhipster/gateway/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/.eslintrc.js -------------------------------------------------------------------------------- /reactive-jhipster/gateway/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/.gitattributes -------------------------------------------------------------------------------- /reactive-jhipster/gateway/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/.gitignore -------------------------------------------------------------------------------- /reactive-jhipster/gateway/.jhipster/Blog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/.jhipster/Blog.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/.jhipster/Post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/.jhipster/Post.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/.jhipster/Product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/.jhipster/Product.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/.jhipster/Tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/.jhipster/Tag.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/.postcssrc.js -------------------------------------------------------------------------------- /reactive-jhipster/gateway/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/.prettierignore -------------------------------------------------------------------------------- /reactive-jhipster/gateway/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/.prettierrc -------------------------------------------------------------------------------- /reactive-jhipster/gateway/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/.yo-rc.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/README.md -------------------------------------------------------------------------------- /reactive-jhipster/gateway/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/build.gradle -------------------------------------------------------------------------------- /reactive-jhipster/gateway/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/checkstyle.xml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/cypress-audits.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/cypress-audits.config.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/cypress.config.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/gradle.properties -------------------------------------------------------------------------------- /reactive-jhipster/gateway/gradle/docker.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/gradle/docker.gradle -------------------------------------------------------------------------------- /reactive-jhipster/gateway/gradle/profile_dev.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/gradle/profile_dev.gradle -------------------------------------------------------------------------------- /reactive-jhipster/gateway/gradle/profile_prod.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/gradle/profile_prod.gradle -------------------------------------------------------------------------------- /reactive-jhipster/gateway/gradle/sonar.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/gradle/sonar.gradle -------------------------------------------------------------------------------- /reactive-jhipster/gateway/gradle/war.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/gradle/war.gradle -------------------------------------------------------------------------------- /reactive-jhipster/gateway/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /reactive-jhipster/gateway/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /reactive-jhipster/gateway/gradle/zipkin.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/gradle/zipkin.gradle -------------------------------------------------------------------------------- /reactive-jhipster/gateway/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/gradlew -------------------------------------------------------------------------------- /reactive-jhipster/gateway/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/gradlew.bat -------------------------------------------------------------------------------- /reactive-jhipster/gateway/npmw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/npmw -------------------------------------------------------------------------------- /reactive-jhipster/gateway/npmw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/npmw.cmd -------------------------------------------------------------------------------- /reactive-jhipster/gateway/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/package.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/settings.gradle -------------------------------------------------------------------------------- /reactive-jhipster/gateway/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/sonar-project.properties -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/app.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/central-server-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/central-server-config/README.md -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/central-server-config/docker-config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/central-server-config/docker-config/application.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/central-server-config/localhost-config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/central-server-config/localhost-config/application.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/grafana/provisioning/dashboards/JVM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/grafana/provisioning/dashboards/JVM.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/grafana/provisioning/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/grafana/provisioning/dashboards/dashboard.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/grafana/provisioning/datasources/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/grafana/provisioning/datasources/datasource.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/jhipster-control-center.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/jhipster-control-center.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/jhipster-registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/jhipster-registry.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/jib/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/jib/entrypoint.sh -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/keycloak.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/keycloak.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/monitoring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/monitoring.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/postgresql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/postgresql.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/prometheus/prometheus.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/realm-config/jhipster-realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/realm-config/jhipster-realm.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/services.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/docker/zipkin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/docker/zipkin.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/GatewayApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/GatewayApp.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/GeneratedByJHipster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/GeneratedByJHipster.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/aop/logging/LoggingAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/aop/logging/LoggingAspect.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/config/AsyncConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/config/AsyncConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/config/CRLFLogConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/config/CRLFLogConverter.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/config/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/config/Constants.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/config/LocaleConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/config/LocaleConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/config/WebConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/config/WebConfigurer.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/config/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/config/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/domain/Authority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/domain/Authority.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/domain/User.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/domain/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/domain/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/repository/EntityManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/repository/EntityManager.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/repository/UserRepository.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/repository/UserSqlHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/repository/UserSqlHelper.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/repository/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/repository/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/security/SecurityUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/security/SecurityUtils.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/security/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/security/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/service/UserService.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/service/dto/AdminUserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/service/dto/AdminUserDTO.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/service/dto/UserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/service/dto/UserDTO.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/service/dto/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/service/dto/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/service/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/service/mapper/UserMapper.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/service/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/service/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/filter/SpaWebFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/filter/SpaWebFilter.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/AccountResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/AccountResource.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/AuthInfoResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/AuthInfoResource.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/GatewayResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/GatewayResource.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/LogoutResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/LogoutResource.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/vm/ManagedUserVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/vm/ManagedUserVM.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/vm/RouteVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/vm/RouteVM.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/vm/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/java/com/okta/developer/gateway/web/rest/vm/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/resources/.h2.server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/resources/.h2.server.properties -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/resources/banner.txt -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/resources/config/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/resources/config/application-dev.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/resources/config/application-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/resources/config/application-prod.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/resources/config/application-tls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/resources/config/application-tls.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/resources/config/bootstrap-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/resources/config/bootstrap-prod.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/resources/config/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/resources/config/bootstrap.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/resources/config/liquibase/data/authority.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/resources/config/liquibase/data/authority.csv -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/resources/config/liquibase/master.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/resources/config/liquibase/master.xml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/resources/config/tls/keystore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/resources/config/tls/keystore.p12 -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/resources/i18n/messages.properties -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/resources/i18n/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/resources/i18n/messages_en.properties -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/404.html -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/account/account.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/account/account.service.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/account/login.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/account/login.service.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/configuration/configuration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/configuration/configuration.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/configuration/configuration.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/configuration/configuration.service.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/configuration/configuration.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/configuration/configuration.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/docs/docs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/docs/docs.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/docs/docs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/docs/docs.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/gateway/gateway.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/gateway/gateway.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/gateway/gateway.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/gateway/gateway.service.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/gateway/gateway.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/gateway/gateway.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/health/health-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/health/health-modal.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/health/health-modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/health/health-modal.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/health/health.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/health/health.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/health/health.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/health/health.service.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/health/health.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/health/health.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/logs/logs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/logs/logs.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/logs/logs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/logs/logs.service.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/logs/logs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/logs/logs.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/metrics/metrics-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/metrics/metrics-modal.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/metrics/metrics-modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/metrics/metrics-modal.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/metrics/metrics.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/metrics/metrics.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/metrics/metrics.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/metrics/metrics.service.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/admin/metrics/metrics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/admin/metrics/metrics.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/app.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/app.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/constants.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/core/error/error.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/core/error/error.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/core/error/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/core/error/error.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/core/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/core/home/home.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/core/home/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/core/home/home.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/core/jhi-footer/jhi-footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/core/jhi-footer/jhi-footer.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/core/jhi-footer/jhi-footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/core/jhi-footer/jhi-footer.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/core/jhi-navbar/jhi-navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/core/jhi-navbar/jhi-navbar.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/core/jhi-navbar/jhi-navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/core/jhi-navbar/jhi-navbar.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/core/ribbon/ribbon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/core/ribbon/ribbon.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/core/ribbon/ribbon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/core/ribbon/ribbon.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/declarations.d.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/blog/blog-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/blog/blog-details.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/blog/blog-details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/blog/blog-details.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/blog/blog-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/blog/blog-update.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/blog/blog-update.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/blog/blog-update.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/blog/blog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/blog/blog.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/blog/blog.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/blog/blog.service.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/blog/blog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/blog/blog.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/post/post-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/post/post-details.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/post/post-details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/post/post-details.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/post/post-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/post/post-update.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/post/post-update.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/post/post-update.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/post/post.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/post/post.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/post/post.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/post/post.service.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/post/post.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/post/post.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/tag/tag-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/tag/tag-details.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/tag/tag-details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/tag/tag-details.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/tag/tag-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/tag/tag-update.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/tag/tag-update.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/tag/tag-update.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/tag/tag.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/tag/tag.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/tag/tag.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/tag/tag.service.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/blog/tag/tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/blog/tag/tag.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/entities-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/entities-menu.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/entities-menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/entities-menu.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/entities.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/entities.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/entities.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/entities.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/store/product/product-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/store/product/product-details.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/store/product/product-details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/store/product/product-details.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/store/product/product-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/store/product/product-update.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/store/product/product-update.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/store/product/product-update.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/store/product/product.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/store/product/product.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/store/product/product.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/store/product/product.service.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/store/product/product.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/store/product/product.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/entities/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/entities/user/user.service.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/locale/translation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/locale/translation.service.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/main.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/router/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/router/admin.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/router/entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/router/entities.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/router/index.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/router/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/router/pages.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/alert/alert.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/alert/alert.service.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/config/axios-interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/config/axios-interceptor.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/config/config-bootstrap-vue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/config/config-bootstrap-vue.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/config/config.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/config/dayjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/config/dayjs.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/config/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/config/formatter.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/config/store/account-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/config/store/account-store.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/config/store/translation-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/config/store/translation-store.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/data/data-utils.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/data/data-utils.service.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/date/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/date/filters.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/jhi-item-count.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/jhi-item-count.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/jhi-item-count.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/jhi-item-count.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/model/blog/blog.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/model/blog/blog.model.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/model/blog/post.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/model/blog/post.model.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/model/blog/tag.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/model/blog/tag.model.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/model/store/product.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/model/store/product.model.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/model/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/model/user.model.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/security/authority.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/security/authority.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/sort/jhi-sort-indicator.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/sort/jhi-sort-indicator.component.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/sort/jhi-sort-indicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/sort/jhi-sort-indicator.vue -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shared/sort/sorts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shared/sort/sorts.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/app/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/app/shims-vue.d.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/css/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/css/loading.css -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_0.svg -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_0_head-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_0_head-192.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_0_head-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_0_head-256.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_0_head-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_0_head-384.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_0_head-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_0_head-512.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_1.svg -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_1_head-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_1_head-192.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_1_head-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_1_head-256.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_1_head-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_1_head-384.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_1_head-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_1_head-512.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_2.svg -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_2_head-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_2_head-192.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_2_head-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_2_head-256.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_2_head-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_2_head-384.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_2_head-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_2_head-512.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_3.svg -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_3_head-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_3_head-192.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_3_head-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_3_head-256.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_3_head-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_3_head-384.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_3_head-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/jhipster_family_member_3_head-512.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/images/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/images/logo-jhipster.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/scss/_bootstrap-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/scss/_bootstrap-variables.scss -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/scss/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/scss/global.scss -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/content/scss/vendor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/content/scss/vendor.scss -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/activate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/activate.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/blogBlog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/blogBlog.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/blogPost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/blogPost.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/blogTag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/blogTag.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/configuration.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/error.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/gateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/gateway.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/global.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/health.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/home.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/login.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/logs.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/metrics.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/password.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/password.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/register.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/reset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/reset.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/sessions.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/settings.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/storeProduct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/storeProduct.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/i18n/en/user-management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/i18n/en/user-management.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/index.html -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/manifest.webapp -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/swagger-ui/dist/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/swagger-ui/dist/images/throbber.gif -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/main/webapp/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/main/webapp/swagger-ui/index.html -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/IntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/IntegrationTest.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/TechnicalStructureTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/TechnicalStructureTest.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/config/EmbeddedSQL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/config/EmbeddedSQL.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/config/SqlTestContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/config/SqlTestContainer.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/service/UserServiceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/service/UserServiceIT.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/test/util/OAuth2TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/test/util/OAuth2TestUtil.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/web/rest/AccountResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/web/rest/AccountResourceIT.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/web/rest/LogoutResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/web/rest/LogoutResourceIT.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/web/rest/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/web/rest/TestUtil.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/web/rest/UserResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/java/com/okta/developer/gateway/web/rest/UserResourceIT.java -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/.eslintrc.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/e2e/administration/administration.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/e2e/administration/administration.cy.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/e2e/entity/blog.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/e2e/entity/blog.cy.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/e2e/entity/post.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/e2e/entity/post.cy.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/e2e/entity/product.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/e2e/entity/product.cy.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/e2e/entity/tag.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/e2e/entity/tag.cy.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/e2e/lighthouse.audits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/e2e/lighthouse.audits.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/fixtures/integration-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/fixtures/integration-test.png -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/plugins/index.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/support/commands.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/support/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/support/entity.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/support/index.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/support/management.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/support/management.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/support/navbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/support/navbar.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/support/oauth2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/support/oauth2.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/cypress/tsconfig.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/jest.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/jest.conf.js -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/account/account.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/account/account.service.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/account/login.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/account/login.service.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/admin/gateway/gateway.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/admin/gateway/gateway.component.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/admin/health/health-modal.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/admin/health/health-modal.component.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/admin/health/health.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/admin/health/health.component.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/admin/health/health.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/admin/health/health.service.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/admin/logs/logs.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/admin/logs/logs.component.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/admin/metrics/metrics.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/admin/metrics/metrics.component.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/core/error/error.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/core/error/error.component.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/core/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/core/home/home.component.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/core/ribbon/ribbon.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/core/ribbon/ribbon.component.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/entities/blog/blog/blog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/entities/blog/blog/blog.component.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/entities/blog/blog/blog.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/entities/blog/blog/blog.service.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/entities/blog/post/post.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/entities/blog/post/post.component.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/entities/blog/post/post.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/entities/blog/post/post.service.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/entities/blog/tag/tag.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/entities/blog/tag/tag.component.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/entities/blog/tag/tag.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/entities/blog/tag/tag.service.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/shared/alert/alert.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/shared/alert/alert.service.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/shared/config/axios-interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/shared/config/axios-interceptor.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/shared/config/formatter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/shared/config/formatter.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/shared/data/data-utils.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/shared/data/data-utils.service.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/javascript/spec/app/shared/sort/sorts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/javascript/spec/app/shared/sort/sorts.spec.ts -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/resources/config/application-testdev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/resources/config/application-testdev.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/resources/config/application.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/resources/config/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/resources/config/bootstrap.yml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/resources/junit-platform.properties -------------------------------------------------------------------------------- /reactive-jhipster/gateway/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/src/test/resources/logback.xml -------------------------------------------------------------------------------- /reactive-jhipster/gateway/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/tsconfig.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/tsconfig.spec.json -------------------------------------------------------------------------------- /reactive-jhipster/gateway/webpack/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/webpack/config.js -------------------------------------------------------------------------------- /reactive-jhipster/gateway/webpack/vue.utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/webpack/vue.utils.js -------------------------------------------------------------------------------- /reactive-jhipster/gateway/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/webpack/webpack.common.js -------------------------------------------------------------------------------- /reactive-jhipster/gateway/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/webpack/webpack.dev.js -------------------------------------------------------------------------------- /reactive-jhipster/gateway/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/gateway/webpack/webpack.prod.js -------------------------------------------------------------------------------- /reactive-jhipster/reactive-mf.jdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/reactive-mf.jdl -------------------------------------------------------------------------------- /reactive-jhipster/reactive-ms.jdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/reactive-ms.jdl -------------------------------------------------------------------------------- /reactive-jhipster/store/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /reactive-jhipster/store/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /reactive-jhipster/store/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/.editorconfig -------------------------------------------------------------------------------- /reactive-jhipster/store/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/.gitattributes -------------------------------------------------------------------------------- /reactive-jhipster/store/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/.gitignore -------------------------------------------------------------------------------- /reactive-jhipster/store/.jhipster/Product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/.jhipster/Product.json -------------------------------------------------------------------------------- /reactive-jhipster/store/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/.prettierignore -------------------------------------------------------------------------------- /reactive-jhipster/store/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/.prettierrc -------------------------------------------------------------------------------- /reactive-jhipster/store/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/.yo-rc.json -------------------------------------------------------------------------------- /reactive-jhipster/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/README.md -------------------------------------------------------------------------------- /reactive-jhipster/store/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/build.gradle -------------------------------------------------------------------------------- /reactive-jhipster/store/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/checkstyle.xml -------------------------------------------------------------------------------- /reactive-jhipster/store/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/gradle.properties -------------------------------------------------------------------------------- /reactive-jhipster/store/gradle/docker.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/gradle/docker.gradle -------------------------------------------------------------------------------- /reactive-jhipster/store/gradle/profile_dev.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/gradle/profile_dev.gradle -------------------------------------------------------------------------------- /reactive-jhipster/store/gradle/profile_prod.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/gradle/profile_prod.gradle -------------------------------------------------------------------------------- /reactive-jhipster/store/gradle/sonar.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/gradle/sonar.gradle -------------------------------------------------------------------------------- /reactive-jhipster/store/gradle/war.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/gradle/war.gradle -------------------------------------------------------------------------------- /reactive-jhipster/store/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /reactive-jhipster/store/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /reactive-jhipster/store/gradle/zipkin.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/gradle/zipkin.gradle -------------------------------------------------------------------------------- /reactive-jhipster/store/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/gradlew -------------------------------------------------------------------------------- /reactive-jhipster/store/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/gradlew.bat -------------------------------------------------------------------------------- /reactive-jhipster/store/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/package.json -------------------------------------------------------------------------------- /reactive-jhipster/store/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/settings.gradle -------------------------------------------------------------------------------- /reactive-jhipster/store/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/sonar-project.properties -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/app.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/central-server-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/central-server-config/README.md -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/central-server-config/docker-config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/central-server-config/docker-config/application.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/central-server-config/localhost-config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/central-server-config/localhost-config/application.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/grafana/provisioning/dashboards/JVM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/grafana/provisioning/dashboards/JVM.json -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/grafana/provisioning/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/grafana/provisioning/dashboards/dashboard.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/grafana/provisioning/datasources/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/grafana/provisioning/datasources/datasource.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/jhipster-control-center.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/jhipster-control-center.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/jhipster-registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/jhipster-registry.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/jib/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/jib/entrypoint.sh -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/keycloak.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/keycloak.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/mongodb-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/mongodb-cluster.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/mongodb.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/mongodb/MongoDB.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/mongodb/MongoDB.Dockerfile -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/mongodb/scripts/init_replicaset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/mongodb/scripts/init_replicaset.js -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/monitoring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/monitoring.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/prometheus/prometheus.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/realm-config/jhipster-realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/realm-config/jhipster-realm.json -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/services.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/docker/zipkin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/docker/zipkin.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/GeneratedByJHipster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/GeneratedByJHipster.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/StoreApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/StoreApp.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/aop/logging/LoggingAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/aop/logging/LoggingAspect.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/config/ApplicationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/config/ApplicationProperties.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/config/AsyncConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/config/AsyncConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/config/CRLFLogConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/config/CRLFLogConverter.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/config/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/config/Constants.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/config/DatabaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/config/DatabaseConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/config/JacksonConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/config/JacksonConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/config/LocaleConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/config/LocaleConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/config/LoggingConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/config/LoggingConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/config/ReactorConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/config/ReactorConfiguration.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/config/WebConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/config/WebConfigurer.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/config/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/config/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/domain/Authority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/domain/Authority.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/domain/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/domain/Product.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/domain/User.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/domain/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/domain/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/repository/UserRepository.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/repository/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/repository/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/security/SecurityUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/security/SecurityUtils.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/security/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/security/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/service/UserService.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/service/dto/AdminUserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/service/dto/AdminUserDTO.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/service/dto/UserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/service/dto/UserDTO.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/service/dto/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/service/dto/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/service/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/service/mapper/UserMapper.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/service/mapper/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/service/mapper/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/service/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/service/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/web/rest/ProductResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/web/rest/ProductResource.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/web/rest/PublicUserResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/web/rest/PublicUserResource.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/web/rest/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/web/rest/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/web/rest/vm/ManagedUserVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/web/rest/vm/ManagedUserVM.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/java/com/okta/developer/store/web/rest/vm/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/java/com/okta/developer/store/web/rest/vm/package-info.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/resources/banner.txt -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/resources/config/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/resources/config/application-dev.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/resources/config/application-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/resources/config/application-prod.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/resources/config/application-tls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/resources/config/application-tls.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/resources/config/bootstrap-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/resources/config/bootstrap-prod.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/resources/config/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/resources/config/bootstrap.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/resources/config/tls/keystore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/resources/config/tls/keystore.p12 -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/resources/i18n/messages.properties -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/resources/i18n/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/resources/i18n/messages_en.properties -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/resources/static/index.html -------------------------------------------------------------------------------- /reactive-jhipster/store/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /reactive-jhipster/store/src/test/java/com/okta/developer/store/IntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/test/java/com/okta/developer/store/IntegrationTest.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/test/java/com/okta/developer/store/TechnicalStructureTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/test/java/com/okta/developer/store/TechnicalStructureTest.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/test/java/com/okta/developer/store/config/EmbeddedMongo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/test/java/com/okta/developer/store/config/EmbeddedMongo.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/test/java/com/okta/developer/store/config/MongoDbTestContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/test/java/com/okta/developer/store/config/MongoDbTestContainer.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/test/java/com/okta/developer/store/domain/ProductTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/test/java/com/okta/developer/store/domain/ProductTest.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/test/java/com/okta/developer/store/service/UserServiceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/test/java/com/okta/developer/store/service/UserServiceIT.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/test/java/com/okta/developer/store/web/rest/ProductResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/test/java/com/okta/developer/store/web/rest/ProductResourceIT.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/test/java/com/okta/developer/store/web/rest/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/test/java/com/okta/developer/store/web/rest/TestUtil.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/test/java/com/okta/developer/store/web/rest/UserResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/test/java/com/okta/developer/store/web/rest/UserResourceIT.java -------------------------------------------------------------------------------- /reactive-jhipster/store/src/test/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/test/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /reactive-jhipster/store/src/test/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/test/resources/config/application.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/test/resources/config/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/test/resources/config/bootstrap.yml -------------------------------------------------------------------------------- /reactive-jhipster/store/src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/test/resources/junit-platform.properties -------------------------------------------------------------------------------- /reactive-jhipster/store/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/reactive-jhipster/store/src/test/resources/logback.xml -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.env 3 | -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/LICENSE -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/README.md -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/api-gateway/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/api-gateway/.env.example -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/api-gateway/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/api-gateway/.gitignore -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/api-gateway/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/api-gateway/build.gradle -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/api-gateway/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/api-gateway/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/api-gateway/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/api-gateway/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/api-gateway/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/api-gateway/gradlew -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/api-gateway/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/api-gateway/gradlew.bat -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/api-gateway/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'api-gateway' 2 | -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/api-gateway/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/api-gateway/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/api-gateway/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/api-gateway/src/main/resources/application.yml -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/car-service/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/car-service/.env.example -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/car-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/car-service/.gitignore -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/car-service/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/car-service/build.gradle -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/car-service/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/car-service/compose.yaml -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/car-service/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/car-service/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/car-service/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/car-service/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/car-service/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/car-service/gradlew -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/car-service/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/car-service/gradlew.bat -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/car-service/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'car-service' 2 | -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/car-service/src/main/java/com/example/carservice/data/Car.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/car-service/src/main/java/com/example/carservice/data/Car.java -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/car-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/car-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/demo.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/demo.adoc -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/discovery-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/discovery-service/.gitignore -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/discovery-service/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/discovery-service/build.gradle -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/discovery-service/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/discovery-service/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/discovery-service/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/discovery-service/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/discovery-service/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/discovery-service/gradlew -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/discovery-service/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/discovery-service/gradlew.bat -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/discovery-service/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'discovery-service' 2 | -------------------------------------------------------------------------------- /spring-boot-gateway-mvc/discovery-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-mvc/discovery-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.env 3 | -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/LICENSE -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/README.md -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/api-gateway/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/api-gateway/.env.example -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/api-gateway/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/api-gateway/.gitignore -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/api-gateway/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/api-gateway/build.gradle -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/api-gateway/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/api-gateway/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/api-gateway/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/api-gateway/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/api-gateway/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/api-gateway/gradlew -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/api-gateway/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/api-gateway/gradlew.bat -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/api-gateway/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'api-gateway' 2 | -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/api-gateway/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/api-gateway/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/api-gateway/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/api-gateway/src/main/resources/application.yml -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/car-service/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/car-service/.env.example -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/car-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/car-service/.gitignore -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/car-service/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/car-service/build.gradle -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/car-service/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/car-service/compose.yaml -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/car-service/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/car-service/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/car-service/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/car-service/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/car-service/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/car-service/gradlew -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/car-service/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/car-service/gradlew.bat -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/car-service/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'car-service' 2 | -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/car-service/src/main/java/com/example/carservice/data/Car.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/car-service/src/main/java/com/example/carservice/data/Car.java -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/car-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/car-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/demo.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/demo.adoc -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/discovery-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/discovery-service/.gitignore -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/discovery-service/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/discovery-service/build.gradle -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/discovery-service/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/discovery-service/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/discovery-service/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/discovery-service/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/discovery-service/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/discovery-service/gradlew -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/discovery-service/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/discovery-service/gradlew.bat -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/discovery-service/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'discovery-service' 2 | -------------------------------------------------------------------------------- /spring-boot-gateway-webflux/discovery-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/spring-boot-gateway-webflux/discovery-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /static/java-microservices.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/auth0-java-microservices-examples/HEAD/static/java-microservices.webp --------------------------------------------------------------------------------