├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .huskyrc ├── .jhipster ├── CustomerDetails.json ├── Product.json ├── ProductCategory.json ├── ProductOrder.json └── ShoppingCart.json ├── .lintstagedrc.js ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .yo-rc.json ├── LICENSE ├── Procfile ├── README.md ├── app.jdl ├── app.png ├── checkstyle.xml ├── e-commerce-app-blog.md ├── gradle.properties ├── gradle ├── docker.gradle ├── heroku.gradle ├── profile_dev.gradle ├── profile_prod.gradle ├── sonar.gradle ├── war.gradle ├── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties └── zipkin.gradle ├── gradlew ├── gradlew.bat ├── jest.conf.js ├── package.json ├── postcss.config.js ├── settings.gradle ├── sonar-project.properties ├── src ├── main │ ├── docker │ │ ├── app.yml │ │ ├── grafana │ │ │ └── provisioning │ │ │ │ ├── dashboards │ │ │ │ ├── JVM.json │ │ │ │ └── dashboard.yml │ │ │ │ └── datasources │ │ │ │ └── datasource.yml │ │ ├── jhipster-control-center.yml │ │ ├── jib │ │ │ └── entrypoint.sh │ │ ├── monitoring.yml │ │ ├── mysql.yml │ │ ├── prometheus │ │ │ └── prometheus.yml │ │ └── sonar.yml │ ├── java │ │ └── com │ │ │ └── adyen │ │ │ └── demo │ │ │ └── store │ │ │ ├── ApplicationWebXml.java │ │ │ ├── GeneratedByJHipster.java │ │ │ ├── StoreApp.java │ │ │ ├── aop │ │ │ └── logging │ │ │ │ └── LoggingAspect.java │ │ │ ├── config │ │ │ ├── ApplicationProperties.java │ │ │ ├── AsyncConfiguration.java │ │ │ ├── CacheConfiguration.java │ │ │ ├── Constants.java │ │ │ ├── DatabaseConfiguration.java │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ ├── JacksonConfiguration.java │ │ │ ├── LiquibaseConfiguration.java │ │ │ ├── LocaleConfiguration.java │ │ │ ├── LoggingAspectConfiguration.java │ │ │ ├── LoggingConfiguration.java │ │ │ ├── SecurityConfiguration.java │ │ │ ├── StaticResourcesWebConfiguration.java │ │ │ ├── WebConfigurer.java │ │ │ └── package-info.java │ │ │ ├── domain │ │ │ ├── AbstractAuditingEntity.java │ │ │ ├── Authority.java │ │ │ ├── CustomerDetails.java │ │ │ ├── Product.java │ │ │ ├── ProductCategory.java │ │ │ ├── ProductOrder.java │ │ │ ├── ShoppingCart.java │ │ │ ├── User.java │ │ │ ├── enumeration │ │ │ │ ├── Gender.java │ │ │ │ ├── OrderStatus.java │ │ │ │ ├── PaymentMethod.java │ │ │ │ └── Size.java │ │ │ └── package-info.java │ │ │ ├── repository │ │ │ ├── AuthorityRepository.java │ │ │ ├── CustomerDetailsRepository.java │ │ │ ├── ProductCategoryRepository.java │ │ │ ├── ProductOrderRepository.java │ │ │ ├── ProductRepository.java │ │ │ ├── ShoppingCartRepository.java │ │ │ ├── UserRepository.java │ │ │ └── package-info.java │ │ │ ├── security │ │ │ ├── AuthoritiesConstants.java │ │ │ ├── DomainUserDetailsService.java │ │ │ ├── SecurityUtils.java │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ ├── UserNotActivatedException.java │ │ │ ├── jwt │ │ │ │ ├── JWTConfigurer.java │ │ │ │ ├── JWTFilter.java │ │ │ │ └── TokenProvider.java │ │ │ └── package-info.java │ │ │ ├── service │ │ │ ├── CustomerDetailsService.java │ │ │ ├── EmailAlreadyUsedException.java │ │ │ ├── InvalidPasswordException.java │ │ │ ├── MailService.java │ │ │ ├── ProductCategoryService.java │ │ │ ├── ProductOrderService.java │ │ │ ├── ProductService.java │ │ │ ├── ShoppingCartService.java │ │ │ ├── UserService.java │ │ │ ├── UsernameAlreadyUsedException.java │ │ │ ├── dto │ │ │ │ ├── AdminUserDTO.java │ │ │ │ ├── PasswordChangeDTO.java │ │ │ │ ├── UserDTO.java │ │ │ │ └── package-info.java │ │ │ ├── mapper │ │ │ │ ├── UserMapper.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── AccountResource.java │ │ │ ├── CheckoutResource.java │ │ │ ├── ClientForwardController.java │ │ │ ├── CustomerDetailsResource.java │ │ │ ├── ProductCategoryResource.java │ │ │ ├── ProductOrderResource.java │ │ │ ├── ProductResource.java │ │ │ ├── PublicUserResource.java │ │ │ ├── ShoppingCartResource.java │ │ │ ├── UserJWTController.java │ │ │ ├── UserResource.java │ │ │ ├── WebhookResource.java │ │ │ ├── errors │ │ │ ├── BadRequestAlertException.java │ │ │ ├── EmailAlreadyUsedException.java │ │ │ ├── EntityNotFoundException.java │ │ │ ├── ErrorConstants.java │ │ │ ├── ExceptionTranslator.java │ │ │ ├── FieldErrorVM.java │ │ │ ├── InvalidPasswordException.java │ │ │ ├── LoginAlreadyUsedException.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── vm │ │ │ ├── KeyAndPasswordVM.java │ │ │ ├── LoginVM.java │ │ │ ├── ManagedUserVM.java │ │ │ ├── PaymentRedirectVM.java │ │ │ └── package-info.java │ ├── resources │ │ ├── .h2.server.properties │ │ ├── banner.txt │ │ ├── config │ │ │ ├── application-dev.yml │ │ │ ├── application-heroku.yml │ │ │ ├── application-prod.yml │ │ │ ├── application-tls.yml │ │ │ ├── application.yml │ │ │ ├── bootstrap-heroku.yml │ │ │ ├── liquibase │ │ │ │ ├── changelog │ │ │ │ │ ├── 00000000000000_initial_schema.xml │ │ │ │ │ ├── 20200424080100_added_entity_Product.xml │ │ │ │ │ ├── 20200424080100_added_entity_constraints_Product.xml │ │ │ │ │ ├── 20200424080200_added_entity_ProductCategory.xml │ │ │ │ │ ├── 20200424080300_added_entity_CustomerDetails.xml │ │ │ │ │ ├── 20200424080300_added_entity_constraints_CustomerDetails.xml │ │ │ │ │ ├── 20200424080400_added_entity_ShoppingCart.xml │ │ │ │ │ ├── 20200424080400_added_entity_constraints_ShoppingCart.xml │ │ │ │ │ ├── 20200424080500_added_entity_ProductOrder.xml │ │ │ │ │ └── 20200424080500_added_entity_constraints_ProductOrder.xml │ │ │ │ ├── data │ │ │ │ │ ├── authority.csv │ │ │ │ │ ├── user.csv │ │ │ │ │ └── user_authority.csv │ │ │ │ ├── fake-data │ │ │ │ │ ├── blob │ │ │ │ │ │ ├── shirt1.jpg │ │ │ │ │ │ ├── shirt2.jpg │ │ │ │ │ │ └── shirt3.jpg │ │ │ │ │ ├── customer_details.csv │ │ │ │ │ ├── product.csv │ │ │ │ │ └── product_category.csv │ │ │ │ └── master.xml │ │ │ └── tls │ │ │ │ └── keystore.p12 │ │ ├── i18n │ │ │ └── messages.properties │ │ ├── logback-spring.xml │ │ └── templates │ │ │ ├── error.html │ │ │ └── mail │ │ │ ├── activationEmail.html │ │ │ ├── creationEmail.html │ │ │ └── passwordResetEmail.html │ └── webapp │ │ ├── 404.html │ │ ├── WEB-INF │ │ └── web.xml │ │ ├── app │ │ ├── _bootstrap-variables.scss │ │ ├── app.scss │ │ ├── app.tsx │ │ ├── config │ │ │ ├── axios-interceptor.spec.ts │ │ │ ├── axios-interceptor.ts │ │ │ ├── constants.ts │ │ │ ├── dayjs.ts │ │ │ ├── devtools.tsx │ │ │ ├── error-middleware.ts │ │ │ ├── icon-loader.ts │ │ │ ├── logger-middleware.ts │ │ │ ├── notification-middleware.spec.ts │ │ │ ├── notification-middleware.ts │ │ │ └── store.ts │ │ ├── entities │ │ │ ├── customer-details │ │ │ │ ├── customer-details-delete-dialog.tsx │ │ │ │ ├── customer-details-detail.tsx │ │ │ │ ├── customer-details-reducer.spec.ts │ │ │ │ ├── customer-details-update.tsx │ │ │ │ ├── customer-details.reducer.ts │ │ │ │ ├── customer-details.tsx │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── product-category │ │ │ │ ├── index.tsx │ │ │ │ ├── product-category-delete-dialog.tsx │ │ │ │ ├── product-category-detail.tsx │ │ │ │ ├── product-category-reducer.spec.ts │ │ │ │ ├── product-category-update.tsx │ │ │ │ ├── product-category.reducer.ts │ │ │ │ └── product-category.tsx │ │ │ ├── product-order │ │ │ │ ├── index.tsx │ │ │ │ ├── product-order-delete-dialog.tsx │ │ │ │ ├── product-order-detail.tsx │ │ │ │ ├── product-order-reducer.spec.ts │ │ │ │ ├── product-order-update.tsx │ │ │ │ ├── product-order.reducer.ts │ │ │ │ └── product-order.tsx │ │ │ ├── product │ │ │ │ ├── index.tsx │ │ │ │ ├── product-delete-dialog.tsx │ │ │ │ ├── product-detail.tsx │ │ │ │ ├── product-reducer.spec.ts │ │ │ │ ├── product-update.tsx │ │ │ │ ├── product.reducer.ts │ │ │ │ └── product.tsx │ │ │ └── shopping-cart │ │ │ │ ├── index.tsx │ │ │ │ ├── shopping-cart-delete-dialog.tsx │ │ │ │ ├── shopping-cart-detail.tsx │ │ │ │ ├── shopping-cart-reducer.spec.ts │ │ │ │ ├── shopping-cart-update.tsx │ │ │ │ ├── shopping-cart.reducer.ts │ │ │ │ └── shopping-cart.tsx │ │ ├── index.tsx │ │ ├── modules │ │ │ ├── account │ │ │ │ ├── activate │ │ │ │ │ ├── activate.reducer.spec.ts │ │ │ │ │ ├── activate.reducer.ts │ │ │ │ │ └── activate.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ └── password-reset-finish.tsx │ │ │ │ │ ├── init │ │ │ │ │ │ └── password-reset-init.tsx │ │ │ │ │ └── password-reset.reducer.ts │ │ │ │ ├── password │ │ │ │ │ ├── password.reducer.spec.ts │ │ │ │ │ ├── password.reducer.ts │ │ │ │ │ └── password.tsx │ │ │ │ ├── register │ │ │ │ │ ├── register.reducer.spec.ts │ │ │ │ │ ├── register.reducer.ts │ │ │ │ │ └── register.tsx │ │ │ │ └── settings │ │ │ │ │ ├── settings.reducer.spec.ts │ │ │ │ │ ├── settings.reducer.ts │ │ │ │ │ └── settings.tsx │ │ │ ├── administration │ │ │ │ ├── administration.reducer.spec.ts │ │ │ │ ├── administration.reducer.ts │ │ │ │ ├── configuration │ │ │ │ │ └── configuration.tsx │ │ │ │ ├── docs │ │ │ │ │ ├── docs.scss │ │ │ │ │ └── docs.tsx │ │ │ │ ├── health │ │ │ │ │ ├── health-modal.tsx │ │ │ │ │ └── health.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── logs │ │ │ │ │ └── logs.tsx │ │ │ │ ├── metrics │ │ │ │ │ └── metrics.tsx │ │ │ │ └── user-management │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── user-management-delete-dialog.tsx │ │ │ │ │ ├── user-management-detail.tsx │ │ │ │ │ ├── user-management-update.tsx │ │ │ │ │ ├── user-management.reducer.spec.ts │ │ │ │ │ ├── user-management.reducer.ts │ │ │ │ │ └── user-management.tsx │ │ │ ├── cart │ │ │ │ └── cart.tsx │ │ │ ├── checkout │ │ │ │ ├── checkout-status.tsx │ │ │ │ ├── checkout.reducer.ts │ │ │ │ ├── checkout.scss │ │ │ │ └── checkout.tsx │ │ │ ├── home │ │ │ │ ├── home.scss │ │ │ │ └── home.tsx │ │ │ ├── login │ │ │ │ ├── login-modal.tsx │ │ │ │ ├── login.tsx │ │ │ │ └── logout.tsx │ │ │ └── orders │ │ │ │ └── orders.tsx │ │ ├── routes.tsx │ │ ├── setup-tests.ts │ │ ├── shared │ │ │ ├── DurationFormat.tsx │ │ │ ├── auth │ │ │ │ ├── private-route.spec.tsx │ │ │ │ └── private-route.tsx │ │ │ ├── error │ │ │ │ ├── error-boundary-route.spec.tsx │ │ │ │ ├── error-boundary-route.tsx │ │ │ │ ├── error-boundary.spec.tsx │ │ │ │ ├── error-boundary.tsx │ │ │ │ └── page-not-found.tsx │ │ │ ├── layout │ │ │ │ ├── footer │ │ │ │ │ ├── footer.scss │ │ │ │ │ └── footer.tsx │ │ │ │ ├── header │ │ │ │ │ ├── header-components.tsx │ │ │ │ │ ├── header.scss │ │ │ │ │ ├── header.spec.tsx │ │ │ │ │ └── header.tsx │ │ │ │ ├── menus │ │ │ │ │ ├── account.spec.tsx │ │ │ │ │ ├── account.tsx │ │ │ │ │ ├── admin.tsx │ │ │ │ │ ├── entities.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── menu-components.tsx │ │ │ │ │ └── menu-item.tsx │ │ │ │ └── password │ │ │ │ │ ├── password-strength-bar.scss │ │ │ │ │ └── password-strength-bar.tsx │ │ │ ├── model │ │ │ │ ├── customer-details.model.ts │ │ │ │ ├── enumerations │ │ │ │ │ ├── gender.model.ts │ │ │ │ │ ├── order-status.model.ts │ │ │ │ │ ├── payment-method.model.ts │ │ │ │ │ └── size.model.ts │ │ │ │ ├── product-category.model.ts │ │ │ │ ├── product-order.model.ts │ │ │ │ ├── product.model.ts │ │ │ │ ├── shopping-cart.model.ts │ │ │ │ └── user.model.ts │ │ │ ├── reducers │ │ │ │ ├── action-type.util.ts │ │ │ │ ├── application-profile.spec.ts │ │ │ │ ├── application-profile.ts │ │ │ │ ├── authentication.spec.ts │ │ │ │ ├── authentication.ts │ │ │ │ └── index.ts │ │ │ └── util │ │ │ │ ├── date-utils.ts │ │ │ │ ├── entity-utils.spec.ts │ │ │ │ ├── entity-utils.ts │ │ │ │ └── pagination.constants.ts │ │ └── typings.d.ts │ │ ├── content │ │ ├── css │ │ │ └── loading.css │ │ └── images │ │ │ ├── failed.svg │ │ │ ├── logo-jhipster.png │ │ │ ├── logo.svg │ │ │ ├── success.svg │ │ │ └── thank-you.svg │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── manifest.webapp │ │ ├── robots.txt │ │ └── swagger-ui │ │ ├── dist │ │ └── images │ │ │ └── throbber.gif │ │ └── index.html └── test │ ├── java │ └── com │ │ └── adyen │ │ └── demo │ │ └── store │ │ ├── ArchTest.java │ │ ├── IntegrationTest.java │ │ ├── config │ │ ├── NoOpMailConfiguration.java │ │ ├── StaticResourcesWebConfigurerTest.java │ │ ├── WebConfigurerTest.java │ │ ├── WebConfigurerTestController.java │ │ └── timezone │ │ │ └── HibernateTimeZoneIT.java │ │ ├── domain │ │ ├── CustomerDetailsTest.java │ │ ├── ProductCategoryTest.java │ │ ├── ProductOrderTest.java │ │ ├── ProductTest.java │ │ └── ShoppingCartTest.java │ │ ├── repository │ │ └── timezone │ │ │ ├── DateTimeWrapper.java │ │ │ └── DateTimeWrapperRepository.java │ │ ├── security │ │ ├── DomainUserDetailsServiceIT.java │ │ ├── SecurityUtilsUnitTest.java │ │ └── jwt │ │ │ ├── JWTFilterTest.java │ │ │ └── TokenProviderTest.java │ │ ├── service │ │ ├── MailServiceIT.java │ │ ├── UserServiceIT.java │ │ └── mapper │ │ │ └── UserMapperTest.java │ │ └── web │ │ └── rest │ │ ├── AccountResourceIT.java │ │ ├── ClientForwardControllerTest.java │ │ ├── CustomerDetailsResourceIT.java │ │ ├── ProductCategoryResourceIT.java │ │ ├── ProductOrderResourceIT.java │ │ ├── ProductResourceIT.java │ │ ├── PublicUserResourceIT.java │ │ ├── ShoppingCartResourceIT.java │ │ ├── TestUtil.java │ │ ├── UserJWTControllerIT.java │ │ ├── UserResourceIT.java │ │ ├── WithUnauthenticatedMockUser.java │ │ └── errors │ │ ├── ExceptionTranslatorIT.java │ │ └── ExceptionTranslatorTestController.java │ └── resources │ ├── config │ ├── application-testcontainers.yml │ └── application.yml │ ├── i18n │ └── messages_en.properties │ ├── logback.xml │ └── templates │ └── mail │ └── testEmail.html ├── system.properties ├── tsconfig.json ├── tsconfig.test.json └── webpack ├── logo-jhipster.png ├── utils.js ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.huskyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.huskyrc -------------------------------------------------------------------------------- /.jhipster/CustomerDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.jhipster/CustomerDetails.json -------------------------------------------------------------------------------- /.jhipster/Product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.jhipster/Product.json -------------------------------------------------------------------------------- /.jhipster/ProductCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.jhipster/ProductCategory.json -------------------------------------------------------------------------------- /.jhipster/ProductOrder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.jhipster/ProductOrder.json -------------------------------------------------------------------------------- /.jhipster/ShoppingCart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.jhipster/ShoppingCart.json -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps = true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/README.md -------------------------------------------------------------------------------- /app.jdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/app.jdl -------------------------------------------------------------------------------- /app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/app.png -------------------------------------------------------------------------------- /checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/checkstyle.xml -------------------------------------------------------------------------------- /e-commerce-app-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/e-commerce-app-blog.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/docker.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/gradle/docker.gradle -------------------------------------------------------------------------------- /gradle/heroku.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/gradle/heroku.gradle -------------------------------------------------------------------------------- /gradle/profile_dev.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/gradle/profile_dev.gradle -------------------------------------------------------------------------------- /gradle/profile_prod.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/gradle/profile_prod.gradle -------------------------------------------------------------------------------- /gradle/sonar.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/gradle/sonar.gradle -------------------------------------------------------------------------------- /gradle/war.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/gradle/war.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradle/zipkin.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/gradle/zipkin.gradle -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jest.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/jest.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [require('autoprefixer')], 3 | }; 4 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/settings.gradle -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/docker/app.yml -------------------------------------------------------------------------------- /src/main/docker/grafana/provisioning/dashboards/JVM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/docker/grafana/provisioning/dashboards/JVM.json -------------------------------------------------------------------------------- /src/main/docker/grafana/provisioning/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/docker/grafana/provisioning/dashboards/dashboard.yml -------------------------------------------------------------------------------- /src/main/docker/grafana/provisioning/datasources/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/docker/grafana/provisioning/datasources/datasource.yml -------------------------------------------------------------------------------- /src/main/docker/jhipster-control-center.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/docker/jhipster-control-center.yml -------------------------------------------------------------------------------- /src/main/docker/jib/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/docker/jib/entrypoint.sh -------------------------------------------------------------------------------- /src/main/docker/monitoring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/docker/monitoring.yml -------------------------------------------------------------------------------- /src/main/docker/mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/docker/mysql.yml -------------------------------------------------------------------------------- /src/main/docker/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/docker/prometheus/prometheus.yml -------------------------------------------------------------------------------- /src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/ApplicationWebXml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/ApplicationWebXml.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/GeneratedByJHipster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/GeneratedByJHipster.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/StoreApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/StoreApp.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/aop/logging/LoggingAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/aop/logging/LoggingAspect.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/config/ApplicationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/config/ApplicationProperties.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/config/AsyncConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/config/AsyncConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/config/CacheConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/config/CacheConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/config/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/config/Constants.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/config/DatabaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/config/DatabaseConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/config/DateTimeFormatConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/config/DateTimeFormatConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/config/JacksonConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/config/JacksonConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/config/LiquibaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/config/LiquibaseConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/config/LocaleConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/config/LocaleConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/config/LoggingAspectConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/config/LoggingAspectConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/config/LoggingConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/config/LoggingConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/config/SecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/config/SecurityConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/config/StaticResourcesWebConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/config/StaticResourcesWebConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/config/WebConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/config/WebConfigurer.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/config/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/config/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/domain/AbstractAuditingEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/domain/AbstractAuditingEntity.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/domain/Authority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/domain/Authority.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/domain/CustomerDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/domain/CustomerDetails.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/domain/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/domain/Product.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/domain/ProductCategory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/domain/ProductCategory.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/domain/ProductOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/domain/ProductOrder.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/domain/ShoppingCart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/domain/ShoppingCart.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/domain/User.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/domain/enumeration/Gender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/domain/enumeration/Gender.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/domain/enumeration/OrderStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/domain/enumeration/OrderStatus.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/domain/enumeration/PaymentMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/domain/enumeration/PaymentMethod.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/domain/enumeration/Size.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/domain/enumeration/Size.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/domain/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/domain/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/repository/AuthorityRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/repository/AuthorityRepository.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/repository/CustomerDetailsRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/repository/CustomerDetailsRepository.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/repository/ProductCategoryRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/repository/ProductCategoryRepository.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/repository/ProductOrderRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/repository/ProductOrderRepository.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/repository/ProductRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/repository/ProductRepository.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/repository/ShoppingCartRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/repository/ShoppingCartRepository.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/repository/UserRepository.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/repository/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/repository/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/security/AuthoritiesConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/security/AuthoritiesConstants.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/security/DomainUserDetailsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/security/DomainUserDetailsService.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/security/SecurityUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/security/SecurityUtils.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/security/SpringSecurityAuditorAware.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/security/SpringSecurityAuditorAware.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/security/UserNotActivatedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/security/UserNotActivatedException.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/security/jwt/JWTConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/security/jwt/JWTConfigurer.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/security/jwt/JWTFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/security/jwt/JWTFilter.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/security/jwt/TokenProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/security/jwt/TokenProvider.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/security/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/security/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/CustomerDetailsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/CustomerDetailsService.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/EmailAlreadyUsedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/EmailAlreadyUsedException.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/InvalidPasswordException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/InvalidPasswordException.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/MailService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/MailService.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/ProductCategoryService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/ProductCategoryService.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/ProductOrderService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/ProductOrderService.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/ProductService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/ProductService.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/ShoppingCartService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/ShoppingCartService.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/UserService.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/UsernameAlreadyUsedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/UsernameAlreadyUsedException.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/dto/AdminUserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/dto/AdminUserDTO.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/dto/PasswordChangeDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/dto/PasswordChangeDTO.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/dto/UserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/dto/UserDTO.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/dto/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Data Transfer Objects. 3 | */ 4 | package com.adyen.demo.store.service.dto; 5 | -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/mapper/UserMapper.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/mapper/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/mapper/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/service/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/service/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/AccountResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/AccountResource.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/CheckoutResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/CheckoutResource.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/ClientForwardController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/ClientForwardController.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/CustomerDetailsResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/CustomerDetailsResource.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/ProductCategoryResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/ProductCategoryResource.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/ProductOrderResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/ProductOrderResource.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/ProductResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/ProductResource.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/PublicUserResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/PublicUserResource.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/ShoppingCartResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/ShoppingCartResource.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/UserJWTController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/UserJWTController.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/UserResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/UserResource.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/WebhookResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/WebhookResource.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/errors/BadRequestAlertException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/errors/BadRequestAlertException.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/errors/EmailAlreadyUsedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/errors/EmailAlreadyUsedException.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/errors/EntityNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/errors/EntityNotFoundException.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/errors/ErrorConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/errors/ErrorConstants.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/errors/ExceptionTranslator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/errors/ExceptionTranslator.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/errors/FieldErrorVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/errors/FieldErrorVM.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/errors/InvalidPasswordException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/errors/InvalidPasswordException.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/errors/LoginAlreadyUsedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/errors/LoginAlreadyUsedException.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/errors/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/errors/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/vm/KeyAndPasswordVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/vm/KeyAndPasswordVM.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/vm/LoginVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/vm/LoginVM.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/vm/ManagedUserVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/vm/ManagedUserVM.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/vm/PaymentRedirectVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/vm/PaymentRedirectVM.java -------------------------------------------------------------------------------- /src/main/java/com/adyen/demo/store/web/rest/vm/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/java/com/adyen/demo/store/web/rest/vm/package-info.java -------------------------------------------------------------------------------- /src/main/resources/.h2.server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/.h2.server.properties -------------------------------------------------------------------------------- /src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/banner.txt -------------------------------------------------------------------------------- /src/main/resources/config/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/application-dev.yml -------------------------------------------------------------------------------- /src/main/resources/config/application-heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/application-heroku.yml -------------------------------------------------------------------------------- /src/main/resources/config/application-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/application-prod.yml -------------------------------------------------------------------------------- /src/main/resources/config/application-tls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/application-tls.yml -------------------------------------------------------------------------------- /src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /src/main/resources/config/bootstrap-heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/bootstrap-heroku.yml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/00000000000000_initial_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/changelog/00000000000000_initial_schema.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/20200424080100_added_entity_Product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/changelog/20200424080100_added_entity_Product.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/20200424080100_added_entity_constraints_Product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/changelog/20200424080100_added_entity_constraints_Product.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/20200424080200_added_entity_ProductCategory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/changelog/20200424080200_added_entity_ProductCategory.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/20200424080300_added_entity_CustomerDetails.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/changelog/20200424080300_added_entity_CustomerDetails.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/20200424080300_added_entity_constraints_CustomerDetails.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/changelog/20200424080300_added_entity_constraints_CustomerDetails.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/20200424080400_added_entity_ShoppingCart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/changelog/20200424080400_added_entity_ShoppingCart.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/20200424080400_added_entity_constraints_ShoppingCart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/changelog/20200424080400_added_entity_constraints_ShoppingCart.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/20200424080500_added_entity_ProductOrder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/changelog/20200424080500_added_entity_ProductOrder.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/20200424080500_added_entity_constraints_ProductOrder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/changelog/20200424080500_added_entity_constraints_ProductOrder.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/data/authority.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/data/authority.csv -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/data/user.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/data/user.csv -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/data/user_authority.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/data/user_authority.csv -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/fake-data/blob/shirt1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/fake-data/blob/shirt1.jpg -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/fake-data/blob/shirt2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/fake-data/blob/shirt2.jpg -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/fake-data/blob/shirt3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/fake-data/blob/shirt3.jpg -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/fake-data/customer_details.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/fake-data/customer_details.csv -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/fake-data/product.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/fake-data/product.csv -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/fake-data/product_category.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/fake-data/product_category.csv -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/master.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/liquibase/master.xml -------------------------------------------------------------------------------- /src/main/resources/config/tls/keystore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/config/tls/keystore.p12 -------------------------------------------------------------------------------- /src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/i18n/messages.properties -------------------------------------------------------------------------------- /src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /src/main/resources/templates/mail/activationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/templates/mail/activationEmail.html -------------------------------------------------------------------------------- /src/main/resources/templates/mail/creationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/templates/mail/creationEmail.html -------------------------------------------------------------------------------- /src/main/resources/templates/mail/passwordResetEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/resources/templates/mail/passwordResetEmail.html -------------------------------------------------------------------------------- /src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/404.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/app/_bootstrap-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/_bootstrap-variables.scss -------------------------------------------------------------------------------- /src/main/webapp/app/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/app.scss -------------------------------------------------------------------------------- /src/main/webapp/app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/app.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/config/axios-interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/config/axios-interceptor.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/axios-interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/config/axios-interceptor.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/config/constants.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/dayjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/config/dayjs.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/devtools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/config/devtools.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/config/error-middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/config/error-middleware.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/icon-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/config/icon-loader.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/logger-middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/config/logger-middleware.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/notification-middleware.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/config/notification-middleware.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/notification-middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/config/notification-middleware.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/config/store.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/customer-details/customer-details-delete-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/customer-details/customer-details-delete-dialog.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/customer-details/customer-details-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/customer-details/customer-details-detail.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/customer-details/customer-details-reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/customer-details/customer-details-reducer.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/customer-details/customer-details-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/customer-details/customer-details-update.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/customer-details/customer-details.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/customer-details/customer-details.reducer.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/customer-details/customer-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/customer-details/customer-details.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/customer-details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/customer-details/index.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/index.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product-category/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product-category/index.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product-category/product-category-delete-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product-category/product-category-delete-dialog.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product-category/product-category-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product-category/product-category-detail.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product-category/product-category-reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product-category/product-category-reducer.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product-category/product-category-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product-category/product-category-update.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product-category/product-category.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product-category/product-category.reducer.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product-category/product-category.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product-category/product-category.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product-order/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product-order/index.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product-order/product-order-delete-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product-order/product-order-delete-dialog.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product-order/product-order-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product-order/product-order-detail.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product-order/product-order-reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product-order/product-order-reducer.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product-order/product-order-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product-order/product-order-update.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product-order/product-order.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product-order/product-order.reducer.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product-order/product-order.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product-order/product-order.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product/index.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product/product-delete-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product/product-delete-dialog.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product/product-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product/product-detail.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product/product-reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product/product-reducer.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product/product-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product/product-update.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product/product.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product/product.reducer.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/product/product.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/product/product.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/shopping-cart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/shopping-cart/index.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/shopping-cart/shopping-cart-delete-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/shopping-cart/shopping-cart-delete-dialog.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/shopping-cart/shopping-cart-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/shopping-cart/shopping-cart-detail.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/shopping-cart/shopping-cart-reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/shopping-cart/shopping-cart-reducer.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/shopping-cart/shopping-cart-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/shopping-cart/shopping-cart-update.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/entities/shopping-cart/shopping-cart.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/shopping-cart/shopping-cart.reducer.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/shopping-cart/shopping-cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/entities/shopping-cart/shopping-cart.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/index.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/activate/activate.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/activate/activate.reducer.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/activate/activate.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/activate/activate.reducer.ts -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/activate/activate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/activate/activate.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/index.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/password-reset/finish/password-reset-finish.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/password-reset/finish/password-reset-finish.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/password-reset/init/password-reset-init.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/password-reset/init/password-reset-init.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/password-reset/password-reset.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/password-reset/password-reset.reducer.ts -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/password/password.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/password/password.reducer.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/password/password.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/password/password.reducer.ts -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/password/password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/password/password.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/register/register.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/register/register.reducer.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/register/register.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/register/register.reducer.ts -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/register/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/register/register.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/settings/settings.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/settings/settings.reducer.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/settings/settings.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/settings/settings.reducer.ts -------------------------------------------------------------------------------- /src/main/webapp/app/modules/account/settings/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/account/settings/settings.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/administration.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/administration.reducer.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/administration.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/administration.reducer.ts -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/configuration/configuration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/configuration/configuration.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/docs/docs.scss: -------------------------------------------------------------------------------- 1 | iframe { 2 | background: white; 3 | } 4 | -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/docs/docs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/docs/docs.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/health/health-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/health/health-modal.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/health/health.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/health/health.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/index.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/logs/logs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/logs/logs.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/metrics/metrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/metrics/metrics.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/user-management/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/user-management/index.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/user-management/user-management-delete-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/user-management/user-management-delete-dialog.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/user-management/user-management-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/user-management/user-management-detail.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/user-management/user-management-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/user-management/user-management-update.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/user-management/user-management.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/user-management/user-management.reducer.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/user-management/user-management.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/user-management/user-management.reducer.ts -------------------------------------------------------------------------------- /src/main/webapp/app/modules/administration/user-management/user-management.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/administration/user-management/user-management.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/cart/cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/cart/cart.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/checkout/checkout-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/checkout/checkout-status.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/checkout/checkout.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/checkout/checkout.reducer.ts -------------------------------------------------------------------------------- /src/main/webapp/app/modules/checkout/checkout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/checkout/checkout.scss -------------------------------------------------------------------------------- /src/main/webapp/app/modules/checkout/checkout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/checkout/checkout.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/home/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/home/home.scss -------------------------------------------------------------------------------- /src/main/webapp/app/modules/home/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/home/home.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/login/login-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/login/login-modal.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/login/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/login/login.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/login/logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/login/logout.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/modules/orders/orders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/modules/orders/orders.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/routes.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/setup-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/setup-tests.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/DurationFormat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/DurationFormat.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/auth/private-route.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/auth/private-route.spec.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/auth/private-route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/auth/private-route.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/error/error-boundary-route.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/error/error-boundary-route.spec.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/error/error-boundary-route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/error/error-boundary-route.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/error/error-boundary.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/error/error-boundary.spec.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/error/error-boundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/error/error-boundary.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/error/page-not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/error/page-not-found.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/layout/footer/footer.scss: -------------------------------------------------------------------------------- 1 | .footer { 2 | height: 50px; 3 | } 4 | -------------------------------------------------------------------------------- /src/main/webapp/app/shared/layout/footer/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/layout/footer/footer.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/layout/header/header-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/layout/header/header-components.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/layout/header/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/layout/header/header.scss -------------------------------------------------------------------------------- /src/main/webapp/app/shared/layout/header/header.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/layout/header/header.spec.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/layout/header/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/layout/header/header.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/layout/menus/account.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/layout/menus/account.spec.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/layout/menus/account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/layout/menus/account.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/layout/menus/admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/layout/menus/admin.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/layout/menus/entities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/layout/menus/entities.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/layout/menus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/layout/menus/index.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/layout/menus/menu-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/layout/menus/menu-components.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/layout/menus/menu-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/layout/menus/menu-item.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/layout/password/password-strength-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/layout/password/password-strength-bar.scss -------------------------------------------------------------------------------- /src/main/webapp/app/shared/layout/password/password-strength-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/layout/password/password-strength-bar.tsx -------------------------------------------------------------------------------- /src/main/webapp/app/shared/model/customer-details.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/model/customer-details.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/model/enumerations/gender.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/model/enumerations/gender.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/model/enumerations/order-status.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/model/enumerations/order-status.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/model/enumerations/payment-method.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/model/enumerations/payment-method.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/model/enumerations/size.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/model/enumerations/size.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/model/product-category.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/model/product-category.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/model/product-order.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/model/product-order.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/model/product.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/model/product.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/model/shopping-cart.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/model/shopping-cart.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/model/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/model/user.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/reducers/action-type.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/reducers/action-type.util.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/reducers/application-profile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/reducers/application-profile.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/reducers/application-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/reducers/application-profile.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/reducers/authentication.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/reducers/authentication.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/reducers/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/reducers/authentication.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/reducers/index.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/util/date-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/util/date-utils.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/util/entity-utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/util/entity-utils.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/util/entity-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/shared/util/entity-utils.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/util/pagination.constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /src/main/webapp/app/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/app/typings.d.ts -------------------------------------------------------------------------------- /src/main/webapp/content/css/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/content/css/loading.css -------------------------------------------------------------------------------- /src/main/webapp/content/images/failed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/content/images/failed.svg -------------------------------------------------------------------------------- /src/main/webapp/content/images/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/content/images/logo-jhipster.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/content/images/logo.svg -------------------------------------------------------------------------------- /src/main/webapp/content/images/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/content/images/success.svg -------------------------------------------------------------------------------- /src/main/webapp/content/images/thank-you.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/content/images/thank-you.svg -------------------------------------------------------------------------------- /src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/index.html -------------------------------------------------------------------------------- /src/main/webapp/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/manifest.webapp -------------------------------------------------------------------------------- /src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /src/main/webapp/swagger-ui/dist/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/swagger-ui/dist/images/throbber.gif -------------------------------------------------------------------------------- /src/main/webapp/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/main/webapp/swagger-ui/index.html -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/ArchTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/ArchTest.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/IntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/IntegrationTest.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/config/NoOpMailConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/config/NoOpMailConfiguration.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/config/StaticResourcesWebConfigurerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/config/StaticResourcesWebConfigurerTest.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/config/WebConfigurerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/config/WebConfigurerTest.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/config/WebConfigurerTestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/config/WebConfigurerTestController.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/config/timezone/HibernateTimeZoneIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/config/timezone/HibernateTimeZoneIT.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/domain/CustomerDetailsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/domain/CustomerDetailsTest.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/domain/ProductCategoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/domain/ProductCategoryTest.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/domain/ProductOrderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/domain/ProductOrderTest.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/domain/ProductTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/domain/ProductTest.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/domain/ShoppingCartTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/domain/ShoppingCartTest.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/repository/timezone/DateTimeWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/repository/timezone/DateTimeWrapper.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/repository/timezone/DateTimeWrapperRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/repository/timezone/DateTimeWrapperRepository.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/security/DomainUserDetailsServiceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/security/DomainUserDetailsServiceIT.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/security/SecurityUtilsUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/security/SecurityUtilsUnitTest.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/security/jwt/JWTFilterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/security/jwt/JWTFilterTest.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/security/jwt/TokenProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/security/jwt/TokenProviderTest.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/service/MailServiceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/service/MailServiceIT.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/service/UserServiceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/service/UserServiceIT.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/service/mapper/UserMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/service/mapper/UserMapperTest.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/web/rest/AccountResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/web/rest/AccountResourceIT.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/web/rest/ClientForwardControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/web/rest/ClientForwardControllerTest.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/web/rest/CustomerDetailsResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/web/rest/CustomerDetailsResourceIT.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/web/rest/ProductCategoryResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/web/rest/ProductCategoryResourceIT.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/web/rest/ProductOrderResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/web/rest/ProductOrderResourceIT.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/web/rest/ProductResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/web/rest/ProductResourceIT.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/web/rest/PublicUserResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/web/rest/PublicUserResourceIT.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/web/rest/ShoppingCartResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/web/rest/ShoppingCartResourceIT.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/web/rest/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/web/rest/TestUtil.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/web/rest/UserJWTControllerIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/web/rest/UserJWTControllerIT.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/web/rest/UserResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/web/rest/UserResourceIT.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/web/rest/WithUnauthenticatedMockUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/web/rest/WithUnauthenticatedMockUser.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/web/rest/errors/ExceptionTranslatorIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/web/rest/errors/ExceptionTranslatorIT.java -------------------------------------------------------------------------------- /src/test/java/com/adyen/demo/store/web/rest/errors/ExceptionTranslatorTestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/java/com/adyen/demo/store/web/rest/errors/ExceptionTranslatorTestController.java -------------------------------------------------------------------------------- /src/test/resources/config/application-testcontainers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/resources/config/application-testcontainers.yml -------------------------------------------------------------------------------- /src/test/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/resources/config/application.yml -------------------------------------------------------------------------------- /src/test/resources/i18n/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/resources/i18n/messages_en.properties -------------------------------------------------------------------------------- /src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/resources/logback.xml -------------------------------------------------------------------------------- /src/test/resources/templates/mail/testEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/src/test/resources/templates/mail/testEmail.html -------------------------------------------------------------------------------- /system.properties: -------------------------------------------------------------------------------- 1 | java.runtime.version=11 -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /webpack/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/webpack/utils.js -------------------------------------------------------------------------------- /webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/webpack/webpack.common.js -------------------------------------------------------------------------------- /webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/webpack/webpack.dev.js -------------------------------------------------------------------------------- /webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyen-examples/adyen-java-react-ecommerce-example/HEAD/webpack/webpack.prod.js --------------------------------------------------------------------------------