├── .gitignore ├── .xebialabs └── wrapper.conf ├── LICENSE ├── README.md ├── app.jdl ├── app.png ├── arch.png ├── console └── kubernetes │ ├── jhipster-console.yml │ ├── jhipster-dashboard-console.yml │ ├── jhipster-elasticsearch.yml │ ├── jhipster-logstash.yml │ ├── jhipster-zipkin.yml │ └── logstash-config.yml ├── docker-compose ├── .yo-rc.json ├── README-DOCKER-COMPOSE.md ├── central-server-config │ └── application.yml ├── docker-compose.yml ├── jhipster-console.yml ├── jhipster-registry.yml ├── log-conf │ └── logstash.conf ├── log-data │ └── .gitignore └── xebialabs │ ├── data │ └── configure-xl-devops-platform.yaml │ ├── docker-compose.yaml │ ├── jenkins │ ├── Dockerfile │ ├── init.groovy │ ├── jenkins.yaml │ └── plugins.txt │ ├── xl-cli │ └── Dockerfile │ ├── xl-deploy │ ├── Dockerfile │ └── default-conf │ │ └── .gitignore │ └── xl-release │ ├── Dockerfile │ └── default-conf │ ├── .gitignore │ └── script.policy ├── invoice ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jhipster │ ├── Invoice.json │ └── Shipment.json ├── .yo-rc.json ├── Jenkinsfile ├── README.md ├── build.gradle ├── gradle.properties ├── gradle │ ├── docker.gradle │ ├── liquibase.gradle │ ├── profile_dev.gradle │ ├── profile_prod.gradle │ ├── sonar.gradle │ ├── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ └── zipkin.gradle ├── gradlew ├── gradlew.bat ├── invoice.jdl ├── invoice.png ├── kubernetes │ ├── invoice-deployment.yml │ ├── invoice-mysql.yml │ └── invoice-service.yml ├── package-lock.json ├── package.json ├── settings.gradle └── src │ ├── main │ ├── docker │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── app.yml │ │ ├── central-server-config │ │ │ ├── README.md │ │ │ ├── docker-config │ │ │ │ └── application.yml │ │ │ └── localhost-config │ │ │ │ └── application.yml │ │ ├── docker-registry.yml │ │ ├── entrypoint.sh │ │ ├── hazelcast-management-center.yml │ │ ├── jenkins.yml │ │ ├── jhipster-registry.yml │ │ ├── mysql.yml │ │ └── sonar.yml │ ├── java │ │ └── com │ │ │ └── xebialabs │ │ │ └── invoice │ │ │ ├── ApplicationWebXml.java │ │ │ ├── InvoiceApp.java │ │ │ ├── aop │ │ │ └── logging │ │ │ │ └── LoggingAspect.java │ │ │ ├── client │ │ │ └── UserFeignClientInterceptor.java │ │ │ ├── config │ │ │ ├── ApplicationProperties.java │ │ │ ├── AsyncConfiguration.java │ │ │ ├── CacheConfiguration.java │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ ├── Constants.java │ │ │ ├── DatabaseConfiguration.java │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ ├── DefaultProfileUtil.java │ │ │ ├── FeignConfiguration.java │ │ │ ├── JacksonConfiguration.java │ │ │ ├── LiquibaseConfiguration.java │ │ │ ├── LocaleConfiguration.java │ │ │ ├── LoggingAspectConfiguration.java │ │ │ ├── LoggingConfiguration.java │ │ │ ├── MetricsConfiguration.java │ │ │ ├── SecurityConfiguration.java │ │ │ ├── WebConfigurer.java │ │ │ ├── audit │ │ │ │ ├── AuditEventConverter.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── domain │ │ │ ├── AbstractAuditingEntity.java │ │ │ ├── Invoice.java │ │ │ ├── PersistentAuditEvent.java │ │ │ ├── Shipment.java │ │ │ ├── enumeration │ │ │ │ ├── InvoiceStatus.java │ │ │ │ └── PaymentMethod.java │ │ │ └── package-info.java │ │ │ ├── repository │ │ │ ├── InvoiceRepository.java │ │ │ ├── ShipmentRepository.java │ │ │ └── package-info.java │ │ │ ├── security │ │ │ ├── AuthoritiesConstants.java │ │ │ ├── SecurityUtils.java │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ ├── jwt │ │ │ │ ├── JWTConfigurer.java │ │ │ │ ├── JWTFilter.java │ │ │ │ └── TokenProvider.java │ │ │ └── package-info.java │ │ │ ├── service │ │ │ ├── InvoiceService.java │ │ │ ├── ShipmentService.java │ │ │ └── package-info.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── InvoiceResource.java │ │ │ ├── LogsResource.java │ │ │ ├── ShipmentResource.java │ │ │ ├── errors │ │ │ ├── BadRequestAlertException.java │ │ │ ├── CustomParameterizedException.java │ │ │ ├── EmailAlreadyUsedException.java │ │ │ ├── EmailNotFoundException.java │ │ │ ├── ErrorConstants.java │ │ │ ├── ExceptionTranslator.java │ │ │ ├── FieldErrorVM.java │ │ │ ├── InternalServerErrorException.java │ │ │ ├── InvalidPasswordException.java │ │ │ ├── LoginAlreadyUsedException.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── util │ │ │ ├── HeaderUtil.java │ │ │ └── PaginationUtil.java │ │ │ └── vm │ │ │ ├── LoggerVM.java │ │ │ └── package-info.java │ └── resources │ │ ├── .h2.server.properties │ │ ├── banner.txt │ │ ├── config │ │ ├── application-dev.yml │ │ ├── application-prod.yml │ │ ├── application-tls.yml │ │ ├── application.yml │ │ ├── bootstrap-prod.yml │ │ ├── bootstrap.yml │ │ ├── liquibase │ │ │ ├── changelog │ │ │ │ ├── 00000000000000_initial_schema.xml │ │ │ │ ├── 20180912102445_added_entity_Invoice.xml │ │ │ │ ├── 20180912102446_added_entity_Shipment.xml │ │ │ │ └── 20180912102446_added_entity_constraints_Shipment.xml │ │ │ └── master.xml │ │ └── tls │ │ │ └── keystore.p12 │ │ ├── i18n │ │ ├── messages.properties │ │ ├── messages_en.properties │ │ └── messages_nl.properties │ │ ├── idea.gdsl │ │ ├── logback-spring.xml │ │ ├── static │ │ └── index.html │ │ └── templates │ │ └── error.html │ └── test │ ├── java │ └── com │ │ └── xebialabs │ │ └── invoice │ │ ├── config │ │ ├── WebConfigurerTest.java │ │ └── WebConfigurerTestController.java │ │ └── web │ │ └── rest │ │ ├── InvoiceResourceIntTest.java │ │ ├── LogsResourceIntTest.java │ │ ├── ShipmentResourceIntTest.java │ │ ├── TestUtil.java │ │ ├── errors │ │ ├── ExceptionTranslatorIntTest.java │ │ └── ExceptionTranslatorTestController.java │ │ └── util │ │ └── PaginationUtilUnitTest.java │ └── resources │ ├── config │ ├── application.yml │ └── bootstrap.yml │ └── logback.xml ├── microservices_architecture-jh.png ├── notification ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jhipster │ └── Notification.json ├── .yo-rc.json ├── Jenkinsfile ├── README.md ├── build.gradle ├── gradle.properties ├── gradle │ ├── docker.gradle │ ├── profile_dev.gradle │ ├── profile_prod.gradle │ ├── sonar.gradle │ ├── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ └── zipkin.gradle ├── gradlew ├── gradlew.bat ├── kubernetes │ ├── notification-deployment.yml │ ├── notification-mongodb.yml │ └── notification-service.yml ├── notification.jdl ├── notification.png ├── package-lock.json ├── package.json ├── settings.gradle └── src │ ├── main │ ├── docker │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── app.yml │ │ ├── central-server-config │ │ │ ├── README.md │ │ │ ├── docker-config │ │ │ │ └── application.yml │ │ │ └── localhost-config │ │ │ │ └── application.yml │ │ ├── docker-registry.yml │ │ ├── entrypoint.sh │ │ ├── jenkins.yml │ │ ├── jhipster-registry.yml │ │ ├── mongodb-cluster.yml │ │ ├── mongodb.yml │ │ ├── mongodb │ │ │ ├── MongoDB.Dockerfile │ │ │ └── scripts │ │ │ │ └── init_replicaset.js │ │ └── sonar.yml │ ├── java │ │ └── com │ │ │ └── xebialabs │ │ │ └── notification │ │ │ ├── ApplicationWebXml.java │ │ │ ├── NotificationApp.java │ │ │ ├── aop │ │ │ └── logging │ │ │ │ └── LoggingAspect.java │ │ │ ├── client │ │ │ └── UserFeignClientInterceptor.java │ │ │ ├── config │ │ │ ├── ApplicationProperties.java │ │ │ ├── AsyncConfiguration.java │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ ├── Constants.java │ │ │ ├── DatabaseConfiguration.java │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ ├── DefaultProfileUtil.java │ │ │ ├── FeignConfiguration.java │ │ │ ├── JacksonConfiguration.java │ │ │ ├── LocaleConfiguration.java │ │ │ ├── LoggingAspectConfiguration.java │ │ │ ├── LoggingConfiguration.java │ │ │ ├── MetricsConfiguration.java │ │ │ ├── SecurityConfiguration.java │ │ │ ├── WebConfigurer.java │ │ │ ├── audit │ │ │ │ ├── AuditEventConverter.java │ │ │ │ └── package-info.java │ │ │ ├── dbmigrations │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── domain │ │ │ ├── AbstractAuditingEntity.java │ │ │ ├── Notification.java │ │ │ ├── PersistentAuditEvent.java │ │ │ ├── enumeration │ │ │ │ └── NotificationType.java │ │ │ └── package-info.java │ │ │ ├── repository │ │ │ ├── NotificationRepository.java │ │ │ └── package-info.java │ │ │ ├── security │ │ │ ├── AuthoritiesConstants.java │ │ │ ├── SecurityUtils.java │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ ├── jwt │ │ │ │ ├── JWTConfigurer.java │ │ │ │ ├── JWTFilter.java │ │ │ │ └── TokenProvider.java │ │ │ └── package-info.java │ │ │ ├── service │ │ │ └── package-info.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── LogsResource.java │ │ │ ├── NotificationResource.java │ │ │ ├── errors │ │ │ ├── BadRequestAlertException.java │ │ │ ├── CustomParameterizedException.java │ │ │ ├── EmailAlreadyUsedException.java │ │ │ ├── EmailNotFoundException.java │ │ │ ├── ErrorConstants.java │ │ │ ├── ExceptionTranslator.java │ │ │ ├── FieldErrorVM.java │ │ │ ├── InternalServerErrorException.java │ │ │ ├── InvalidPasswordException.java │ │ │ ├── LoginAlreadyUsedException.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── util │ │ │ ├── HeaderUtil.java │ │ │ └── PaginationUtil.java │ │ │ └── vm │ │ │ ├── LoggerVM.java │ │ │ └── package-info.java │ └── resources │ │ ├── banner.txt │ │ ├── config │ │ ├── application-dev.yml │ │ ├── application-prod.yml │ │ ├── application-tls.yml │ │ ├── application.yml │ │ ├── bootstrap-prod.yml │ │ ├── bootstrap.yml │ │ └── tls │ │ │ └── keystore.p12 │ │ ├── i18n │ │ ├── messages.properties │ │ ├── messages_en.properties │ │ └── messages_nl.properties │ │ ├── idea.gdsl │ │ ├── logback-spring.xml │ │ ├── static │ │ └── index.html │ │ └── templates │ │ └── error.html │ └── test │ ├── java │ └── com │ │ └── xebialabs │ │ └── notification │ │ ├── config │ │ ├── WebConfigurerTest.java │ │ └── WebConfigurerTestController.java │ │ └── web │ │ └── rest │ │ ├── LogsResourceIntTest.java │ │ ├── NotificationResourceIntTest.java │ │ ├── TestUtil.java │ │ ├── errors │ │ ├── ExceptionTranslatorIntTest.java │ │ └── ExceptionTranslatorTestController.java │ │ └── util │ │ └── PaginationUtilUnitTest.java │ └── resources │ ├── config │ ├── application.yml │ └── bootstrap.yml │ └── logback.xml ├── registry └── kubernetes │ ├── application-configmap.yml │ └── jhipster-registry.yml ├── store ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jhipster │ ├── Customer.json │ ├── Invoice.json │ ├── Notification.json │ ├── OrderItem.json │ ├── Product.json │ ├── ProductCategory.json │ ├── ProductOrder.json │ └── Shipment.json ├── .prettierignore ├── .prettierrc ├── .yo-rc.json ├── Jenkinsfile ├── README.md ├── build.gradle ├── gradle.properties ├── gradle │ ├── docker.gradle │ ├── liquibase.gradle │ ├── profile_dev.gradle │ ├── profile_prod.gradle │ ├── sonar.gradle │ ├── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ └── zipkin.gradle ├── gradlew ├── gradlew.bat ├── kubernetes │ ├── store-deployment.yml │ ├── store-mysql.yml │ └── store-service.yml ├── package-lock.json ├── package.json ├── postcss.config.js ├── settings.gradle ├── src │ ├── main │ │ ├── docker │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── app.yml │ │ │ ├── central-server-config │ │ │ │ ├── README.md │ │ │ │ ├── docker-config │ │ │ │ │ └── application.yml │ │ │ │ └── localhost-config │ │ │ │ │ └── application.yml │ │ │ ├── docker-registry.yml │ │ │ ├── entrypoint.sh │ │ │ ├── hazelcast-management-center.yml │ │ │ ├── jenkins.yml │ │ │ ├── jhipster-registry.yml │ │ │ ├── mysql.yml │ │ │ └── sonar.yml │ │ ├── java │ │ │ └── com │ │ │ │ └── xebialabs │ │ │ │ └── store │ │ │ │ ├── ApplicationWebXml.java │ │ │ │ ├── StoreApp.java │ │ │ │ ├── aop │ │ │ │ └── logging │ │ │ │ │ └── LoggingAspect.java │ │ │ │ ├── config │ │ │ │ ├── ApplicationProperties.java │ │ │ │ ├── AsyncConfiguration.java │ │ │ │ ├── CacheConfiguration.java │ │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DatabaseConfiguration.java │ │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ │ ├── DefaultProfileUtil.java │ │ │ │ ├── GatewayConfiguration.java │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ ├── LiquibaseConfiguration.java │ │ │ │ ├── LocaleConfiguration.java │ │ │ │ ├── LoggingAspectConfiguration.java │ │ │ │ ├── LoggingConfiguration.java │ │ │ │ ├── MetricsConfiguration.java │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ ├── WebConfigurer.java │ │ │ │ ├── apidoc │ │ │ │ │ └── GatewaySwaggerResourcesProvider.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditEventConverter.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ ├── domain │ │ │ │ ├── AbstractAuditingEntity.java │ │ │ │ ├── Authority.java │ │ │ │ ├── Customer.java │ │ │ │ ├── OrderItem.java │ │ │ │ ├── PersistentAuditEvent.java │ │ │ │ ├── Product.java │ │ │ │ ├── ProductCategory.java │ │ │ │ ├── ProductOrder.java │ │ │ │ ├── User.java │ │ │ │ ├── enumeration │ │ │ │ │ ├── Gender.java │ │ │ │ │ ├── OrderItemStatus.java │ │ │ │ │ ├── OrderStatus.java │ │ │ │ │ └── Size.java │ │ │ │ └── package-info.java │ │ │ │ ├── gateway │ │ │ │ ├── TokenRelayFilter.java │ │ │ │ ├── accesscontrol │ │ │ │ │ └── AccessControlFilter.java │ │ │ │ ├── ratelimiting │ │ │ │ │ └── RateLimitingFilter.java │ │ │ │ └── responserewriting │ │ │ │ │ └── SwaggerBasePathRewritingFilter.java │ │ │ │ ├── repository │ │ │ │ ├── AuthorityRepository.java │ │ │ │ ├── CustomAuditEventRepository.java │ │ │ │ ├── CustomerRepository.java │ │ │ │ ├── OrderItemRepository.java │ │ │ │ ├── PersistenceAuditEventRepository.java │ │ │ │ ├── ProductCategoryRepository.java │ │ │ │ ├── ProductOrderRepository.java │ │ │ │ ├── ProductRepository.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 │ │ │ │ ├── AuditEventService.java │ │ │ │ ├── CustomerService.java │ │ │ │ ├── MailService.java │ │ │ │ ├── OrderItemService.java │ │ │ │ ├── ProductCategoryService.java │ │ │ │ ├── ProductOrderService.java │ │ │ │ ├── ProductService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── dto │ │ │ │ │ ├── PasswordChangeDTO.java │ │ │ │ │ ├── UserDTO.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── mapper │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── util │ │ │ │ │ └── RandomUtil.java │ │ │ │ └── web │ │ │ │ └── rest │ │ │ │ ├── AccountResource.java │ │ │ │ ├── AuditResource.java │ │ │ │ ├── CustomerResource.java │ │ │ │ ├── GatewayResource.java │ │ │ │ ├── LogsResource.java │ │ │ │ ├── OrderItemResource.java │ │ │ │ ├── ProductCategoryResource.java │ │ │ │ ├── ProductOrderResource.java │ │ │ │ ├── ProductResource.java │ │ │ │ ├── UserJWTController.java │ │ │ │ ├── UserResource.java │ │ │ │ ├── errors │ │ │ │ ├── BadRequestAlertException.java │ │ │ │ ├── CustomParameterizedException.java │ │ │ │ ├── EmailAlreadyUsedException.java │ │ │ │ ├── EmailNotFoundException.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── ExceptionTranslator.java │ │ │ │ ├── FieldErrorVM.java │ │ │ │ ├── InternalServerErrorException.java │ │ │ │ ├── InvalidPasswordException.java │ │ │ │ ├── LoginAlreadyUsedException.java │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ ├── util │ │ │ │ ├── HeaderUtil.java │ │ │ │ └── PaginationUtil.java │ │ │ │ └── vm │ │ │ │ ├── KeyAndPasswordVM.java │ │ │ │ ├── LoggerVM.java │ │ │ │ ├── LoginVM.java │ │ │ │ ├── ManagedUserVM.java │ │ │ │ ├── RouteVM.java │ │ │ │ └── package-info.java │ │ ├── resources │ │ │ ├── .h2.server.properties │ │ │ ├── banner.txt │ │ │ ├── config │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ ├── application-tls.yml │ │ │ │ ├── application.yml │ │ │ │ ├── bootstrap-prod.yml │ │ │ │ ├── bootstrap.yml │ │ │ │ ├── liquibase │ │ │ │ │ ├── authorities.csv │ │ │ │ │ ├── changelog │ │ │ │ │ │ ├── 00000000000000_initial_schema.xml │ │ │ │ │ │ ├── 20180912102127_added_entity_Product.xml │ │ │ │ │ │ ├── 20180912102127_added_entity_constraints_Product.xml │ │ │ │ │ │ ├── 20180912102128_added_entity_ProductCategory.xml │ │ │ │ │ │ ├── 20180912102129_added_entity_Customer.xml │ │ │ │ │ │ ├── 20180912102129_added_entity_constraints_Customer.xml │ │ │ │ │ │ ├── 20180912102130_added_entity_ProductOrder.xml │ │ │ │ │ │ ├── 20180912102130_added_entity_constraints_ProductOrder.xml │ │ │ │ │ │ ├── 20180912102131_added_entity_OrderItem.xml │ │ │ │ │ │ └── 20180912102131_added_entity_constraints_OrderItem.xml │ │ │ │ │ ├── master.xml │ │ │ │ │ ├── users.csv │ │ │ │ │ └── users_authorities.csv │ │ │ │ └── tls │ │ │ │ │ └── keystore.p12 │ │ │ ├── i18n │ │ │ │ ├── messages.properties │ │ │ │ ├── messages_en.properties │ │ │ │ └── messages_nl.properties │ │ │ ├── idea.gdsl │ │ │ ├── logback-spring.xml │ │ │ └── templates │ │ │ │ ├── error.html │ │ │ │ └── mail │ │ │ │ ├── activationEmail.html │ │ │ │ ├── creationEmail.html │ │ │ │ └── passwordResetEmail.html │ │ └── webapp │ │ │ ├── 404.html │ │ │ ├── app │ │ │ ├── _bootstrap-variables.scss │ │ │ ├── app.scss │ │ │ ├── app.tsx │ │ │ ├── config │ │ │ │ ├── axios-interceptor.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── devtools.tsx │ │ │ │ ├── error-middleware.ts │ │ │ │ ├── icon-loader.ts │ │ │ │ ├── logger-middleware.ts │ │ │ │ ├── notification-middleware.ts │ │ │ │ ├── store.ts │ │ │ │ └── translation.ts │ │ │ ├── entities │ │ │ │ ├── customer │ │ │ │ │ ├── customer-delete-dialog.tsx │ │ │ │ │ ├── customer-detail.tsx │ │ │ │ │ ├── customer-update.tsx │ │ │ │ │ ├── customer.reducer.ts │ │ │ │ │ ├── customer.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── invoice │ │ │ │ │ ├── invoice │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── invoice-delete-dialog.tsx │ │ │ │ │ │ ├── invoice-detail.tsx │ │ │ │ │ │ ├── invoice-update.tsx │ │ │ │ │ │ ├── invoice.reducer.ts │ │ │ │ │ │ └── invoice.tsx │ │ │ │ │ └── shipment │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── shipment-delete-dialog.tsx │ │ │ │ │ │ ├── shipment-detail.tsx │ │ │ │ │ │ ├── shipment-update.tsx │ │ │ │ │ │ ├── shipment.reducer.ts │ │ │ │ │ │ └── shipment.tsx │ │ │ │ ├── notification │ │ │ │ │ └── notification │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── notification-delete-dialog.tsx │ │ │ │ │ │ ├── notification-detail.tsx │ │ │ │ │ │ ├── notification-update.tsx │ │ │ │ │ │ ├── notification.reducer.ts │ │ │ │ │ │ └── notification.tsx │ │ │ │ ├── order-item │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── order-item-delete-dialog.tsx │ │ │ │ │ ├── order-item-detail.tsx │ │ │ │ │ ├── order-item-update.tsx │ │ │ │ │ ├── order-item.reducer.ts │ │ │ │ │ └── order-item.tsx │ │ │ │ ├── product-category │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── product-category-delete-dialog.tsx │ │ │ │ │ ├── product-category-detail.tsx │ │ │ │ │ ├── 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-update.tsx │ │ │ │ │ ├── product-order.reducer.ts │ │ │ │ │ └── product-order.tsx │ │ │ │ └── product │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── product-delete-dialog.tsx │ │ │ │ │ ├── product-detail.tsx │ │ │ │ │ ├── product-update.tsx │ │ │ │ │ ├── product.reducer.ts │ │ │ │ │ └── product.tsx │ │ │ ├── index.tsx │ │ │ ├── modules │ │ │ │ ├── account │ │ │ │ │ ├── activate │ │ │ │ │ │ ├── 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.ts │ │ │ │ │ │ └── password.tsx │ │ │ │ │ ├── register │ │ │ │ │ │ ├── register.reducer.ts │ │ │ │ │ │ └── register.tsx │ │ │ │ │ └── settings │ │ │ │ │ │ ├── settings.reducer.ts │ │ │ │ │ │ └── settings.tsx │ │ │ │ ├── administration │ │ │ │ │ ├── administration.reducer.ts │ │ │ │ │ ├── audits │ │ │ │ │ │ └── audits.tsx │ │ │ │ │ ├── configuration │ │ │ │ │ │ └── configuration.tsx │ │ │ │ │ ├── docs │ │ │ │ │ │ └── docs.tsx │ │ │ │ │ ├── gateway │ │ │ │ │ │ └── gateway.tsx │ │ │ │ │ ├── health │ │ │ │ │ │ ├── health-modal.tsx │ │ │ │ │ │ └── health.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── logs │ │ │ │ │ │ └── logs.tsx │ │ │ │ │ ├── metrics │ │ │ │ │ │ ├── metrics-modal.tsx │ │ │ │ │ │ ├── metrics.tsx │ │ │ │ │ │ └── thread-item.tsx │ │ │ │ │ └── user-management │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── user-management-delete-dialog.tsx │ │ │ │ │ │ ├── user-management-detail.tsx │ │ │ │ │ │ ├── user-management-update.tsx │ │ │ │ │ │ ├── user-management.reducer.ts │ │ │ │ │ │ └── user-management.tsx │ │ │ │ ├── home │ │ │ │ │ ├── home.scss │ │ │ │ │ └── home.tsx │ │ │ │ └── login │ │ │ │ │ ├── login-modal.tsx │ │ │ │ │ ├── login.tsx │ │ │ │ │ └── logout.tsx │ │ │ ├── routes.tsx │ │ │ ├── shared │ │ │ │ ├── auth │ │ │ │ │ └── private-route.tsx │ │ │ │ ├── error │ │ │ │ │ ├── error-boundary-route.tsx │ │ │ │ │ └── error-boundary.tsx │ │ │ │ ├── layout │ │ │ │ │ ├── footer │ │ │ │ │ │ ├── footer.scss │ │ │ │ │ │ └── footer.tsx │ │ │ │ │ ├── header │ │ │ │ │ │ ├── header-components.tsx │ │ │ │ │ │ ├── header.scss │ │ │ │ │ │ ├── header.tsx │ │ │ │ │ │ └── menus │ │ │ │ │ │ │ ├── account.tsx │ │ │ │ │ │ │ ├── admin.tsx │ │ │ │ │ │ │ ├── entities.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── locale.tsx │ │ │ │ │ └── password │ │ │ │ │ │ ├── password-strength-bar.scss │ │ │ │ │ │ └── password-strength-bar.tsx │ │ │ │ ├── model │ │ │ │ │ ├── customer.model.ts │ │ │ │ │ ├── invoice │ │ │ │ │ │ ├── invoice.model.ts │ │ │ │ │ │ └── shipment.model.ts │ │ │ │ │ ├── notification │ │ │ │ │ │ └── notification.model.ts │ │ │ │ │ ├── order-item.model.ts │ │ │ │ │ ├── product-category.model.ts │ │ │ │ │ ├── product-order.model.ts │ │ │ │ │ ├── product.model.ts │ │ │ │ │ └── user.model.ts │ │ │ │ ├── reducers │ │ │ │ │ ├── action-type.util.ts │ │ │ │ │ ├── application-profile.ts │ │ │ │ │ ├── authentication.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── locale.ts │ │ │ │ └── util │ │ │ │ │ ├── date-utils.ts │ │ │ │ │ ├── entity-utils.ts │ │ │ │ │ ├── pagination.constants.ts │ │ │ │ │ └── url-utils.ts │ │ │ └── typings.d.ts │ │ │ ├── favicon.ico │ │ │ ├── i18n │ │ │ ├── en │ │ │ │ ├── activate.json │ │ │ │ ├── audits.json │ │ │ │ ├── configuration.json │ │ │ │ ├── customer.json │ │ │ │ ├── error.json │ │ │ │ ├── gateway.json │ │ │ │ ├── gender.json │ │ │ │ ├── global.json │ │ │ │ ├── health.json │ │ │ │ ├── home.json │ │ │ │ ├── invoice-invoiceStatus.json │ │ │ │ ├── invoice-paymentMethod.json │ │ │ │ ├── invoiceInvoice.json │ │ │ │ ├── invoiceShipment.json │ │ │ │ ├── login.json │ │ │ │ ├── logs.json │ │ │ │ ├── metrics.json │ │ │ │ ├── notification-notificationType.json │ │ │ │ ├── notificationNotification.json │ │ │ │ ├── orderItem.json │ │ │ │ ├── orderItemStatus.json │ │ │ │ ├── orderStatus.json │ │ │ │ ├── password.json │ │ │ │ ├── product.json │ │ │ │ ├── productCategory.json │ │ │ │ ├── productOrder.json │ │ │ │ ├── register.json │ │ │ │ ├── reset.json │ │ │ │ ├── sessions.json │ │ │ │ ├── settings.json │ │ │ │ ├── size.json │ │ │ │ └── user-management.json │ │ │ └── nl │ │ │ │ ├── activate.json │ │ │ │ ├── audits.json │ │ │ │ ├── configuration.json │ │ │ │ ├── customer.json │ │ │ │ ├── error.json │ │ │ │ ├── gateway.json │ │ │ │ ├── gender.json │ │ │ │ ├── global.json │ │ │ │ ├── health.json │ │ │ │ ├── home.json │ │ │ │ ├── invoice-invoiceStatus.json │ │ │ │ ├── invoice-paymentMethod.json │ │ │ │ ├── invoiceInvoice.json │ │ │ │ ├── invoiceShipment.json │ │ │ │ ├── login.json │ │ │ │ ├── logs.json │ │ │ │ ├── metrics.json │ │ │ │ ├── notification-notificationType.json │ │ │ │ ├── notificationNotification.json │ │ │ │ ├── orderItem.json │ │ │ │ ├── orderItemStatus.json │ │ │ │ ├── orderStatus.json │ │ │ │ ├── password.json │ │ │ │ ├── product.json │ │ │ │ ├── productCategory.json │ │ │ │ ├── productOrder.json │ │ │ │ ├── register.json │ │ │ │ ├── reset.json │ │ │ │ ├── sessions.json │ │ │ │ ├── settings.json │ │ │ │ ├── size.json │ │ │ │ └── user-management.json │ │ │ ├── index.html │ │ │ ├── manifest.webapp │ │ │ ├── robots.txt │ │ │ ├── static │ │ │ └── images │ │ │ │ ├── hipster.png │ │ │ │ ├── hipster192.png │ │ │ │ ├── hipster256.png │ │ │ │ ├── hipster2x.png │ │ │ │ ├── hipster384.png │ │ │ │ ├── hipster512.png │ │ │ │ ├── logo-jhipster-react.svg │ │ │ │ ├── logo-jhipster.png │ │ │ │ ├── xl-full-white-32-px.png │ │ │ │ ├── xl-full-white-32-px.svg │ │ │ │ ├── xl-full-white-32-px@2x.png │ │ │ │ ├── xl-full-white-32-px@3x.png │ │ │ │ ├── xl-mark-green-box-32-x-32.png │ │ │ │ ├── xl-mark-green-box-32-x-32.svg │ │ │ │ ├── xl-mark-green-box-32-x-32@2x.png │ │ │ │ ├── xl-mark-green-box-32-x-32@3x.png │ │ │ │ └── xl-platform-diagram-update.png │ │ │ └── swagger-ui │ │ │ ├── dist │ │ │ └── images │ │ │ │ └── throbber.gif │ │ │ └── index.html │ └── test │ │ ├── java │ │ └── com │ │ │ └── xebialabs │ │ │ └── store │ │ │ ├── config │ │ │ ├── WebConfigurerTest.java │ │ │ └── WebConfigurerTestController.java │ │ │ ├── gateway │ │ │ └── responserewriting │ │ │ │ └── SwaggerBasePathRewritingFilterTest.java │ │ │ ├── repository │ │ │ └── CustomAuditEventRepositoryIntTest.java │ │ │ ├── security │ │ │ ├── DomainUserDetailsServiceIntTest.java │ │ │ ├── SecurityUtilsUnitTest.java │ │ │ └── jwt │ │ │ │ ├── JWTFilterTest.java │ │ │ │ └── TokenProviderTest.java │ │ │ ├── service │ │ │ ├── MailServiceIntTest.java │ │ │ └── UserServiceIntTest.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── AccountResourceIntTest.java │ │ │ ├── AuditResourceIntTest.java │ │ │ ├── CustomerResourceIntTest.java │ │ │ ├── LogsResourceIntTest.java │ │ │ ├── OrderItemResourceIntTest.java │ │ │ ├── ProductCategoryResourceIntTest.java │ │ │ ├── ProductOrderResourceIntTest.java │ │ │ ├── ProductResourceIntTest.java │ │ │ ├── TestUtil.java │ │ │ ├── UserJWTControllerIntTest.java │ │ │ ├── UserResourceIntTest.java │ │ │ ├── errors │ │ │ ├── ExceptionTranslatorIntTest.java │ │ │ └── ExceptionTranslatorTestController.java │ │ │ └── util │ │ │ └── PaginationUtilUnitTest.java │ │ ├── javascript │ │ ├── e2e │ │ │ ├── entities │ │ │ │ ├── customer │ │ │ │ │ ├── customer-update.page-object.ts │ │ │ │ │ ├── customer.page-object.ts │ │ │ │ │ └── customer.spec.ts │ │ │ │ ├── invoice │ │ │ │ │ ├── invoice │ │ │ │ │ │ ├── invoice-update.page-object.ts │ │ │ │ │ │ ├── invoice.page-object.ts │ │ │ │ │ │ └── invoice.spec.ts │ │ │ │ │ └── shipment │ │ │ │ │ │ ├── shipment-update.page-object.ts │ │ │ │ │ │ ├── shipment.page-object.ts │ │ │ │ │ │ └── shipment.spec.ts │ │ │ │ ├── notification │ │ │ │ │ └── notification │ │ │ │ │ │ ├── notification-update.page-object.ts │ │ │ │ │ │ ├── notification.page-object.ts │ │ │ │ │ │ └── notification.spec.ts │ │ │ │ ├── order-item │ │ │ │ │ ├── order-item-update.page-object.ts │ │ │ │ │ ├── order-item.page-object.ts │ │ │ │ │ └── order-item.spec.ts │ │ │ │ ├── product-category │ │ │ │ │ ├── product-category-update.page-object.ts │ │ │ │ │ ├── product-category.page-object.ts │ │ │ │ │ └── product-category.spec.ts │ │ │ │ ├── product-order │ │ │ │ │ ├── product-order-update.page-object.ts │ │ │ │ │ ├── product-order.page-object.ts │ │ │ │ │ └── product-order.spec.ts │ │ │ │ └── product │ │ │ │ │ ├── product-update.page-object.ts │ │ │ │ │ ├── product.page-object.ts │ │ │ │ │ └── product.spec.ts │ │ │ ├── modules │ │ │ │ ├── account │ │ │ │ │ └── account.spec.ts │ │ │ │ └── administration │ │ │ │ │ └── administration.spec.ts │ │ │ ├── page-objects │ │ │ │ ├── base-component.ts │ │ │ │ ├── navbar-page.ts │ │ │ │ ├── password-page.ts │ │ │ │ ├── register-page.ts │ │ │ │ ├── settings-page.ts │ │ │ │ └── signin-page.ts │ │ │ └── util │ │ │ │ └── utils.ts │ │ ├── jest.conf.js │ │ ├── protractor.conf.js │ │ └── spec │ │ │ ├── app │ │ │ ├── config │ │ │ │ ├── axios-interceptor.spec.ts │ │ │ │ └── notification-middleware.spec.ts │ │ │ ├── entities │ │ │ │ ├── customer │ │ │ │ │ └── customer-reducer.spec.ts │ │ │ │ ├── invoice │ │ │ │ │ ├── invoice │ │ │ │ │ │ └── invoice-reducer.spec.ts │ │ │ │ │ └── shipment │ │ │ │ │ │ └── shipment-reducer.spec.ts │ │ │ │ ├── notification │ │ │ │ │ └── notification │ │ │ │ │ │ └── notification-reducer.spec.ts │ │ │ │ ├── order-item │ │ │ │ │ └── order-item-reducer.spec.ts │ │ │ │ ├── product-category │ │ │ │ │ └── product-category-reducer.spec.ts │ │ │ │ ├── product-order │ │ │ │ │ └── product-order-reducer.spec.ts │ │ │ │ └── product │ │ │ │ │ └── product-reducer.spec.ts │ │ │ ├── modules │ │ │ │ ├── account │ │ │ │ │ ├── activate │ │ │ │ │ │ └── activate.reducer.spec.ts │ │ │ │ │ ├── password │ │ │ │ │ │ └── password.reducer.spec.ts │ │ │ │ │ ├── register │ │ │ │ │ │ └── register.reducer.spec.ts │ │ │ │ │ └── settings │ │ │ │ │ │ └── settings.reducer.spec.ts │ │ │ │ └── administration │ │ │ │ │ ├── administration.reducer.spec.ts │ │ │ │ │ └── user-management │ │ │ │ │ └── user-management.reducer.spec.ts │ │ │ ├── shared │ │ │ │ ├── auth │ │ │ │ │ └── private-route.spec.tsx │ │ │ │ ├── error │ │ │ │ │ ├── error-boundary-route.spec.tsx │ │ │ │ │ └── error-boundary.spec.tsx │ │ │ │ ├── layout │ │ │ │ │ └── header │ │ │ │ │ │ ├── header.spec.tsx │ │ │ │ │ │ └── menus │ │ │ │ │ │ └── account.spec.tsx │ │ │ │ ├── reducers │ │ │ │ │ ├── application-profile.spec.ts │ │ │ │ │ ├── authentication.spec.ts │ │ │ │ │ └── locale.spec.ts │ │ │ │ └── util │ │ │ │ │ └── entity-utils.spec.ts │ │ │ └── utils.ts │ │ │ ├── enzyme-setup.ts │ │ │ └── storage-mock.ts │ │ └── resources │ │ ├── config │ │ ├── application.yml │ │ └── bootstrap.yml │ │ ├── i18n │ │ └── messages_en.properties │ │ ├── logback.xml │ │ └── templates │ │ └── mail │ │ └── testEmail.html ├── store.jdl ├── store.png ├── tsconfig.e2e.json ├── tsconfig.json ├── tsconfig.test.json ├── tslint.json └── webpack │ ├── logo-jhipster.png │ ├── utils.js │ ├── webpack.common.js │ ├── webpack.dev.js │ └── webpack.prod.js ├── xlw └── xlw.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/.gitignore -------------------------------------------------------------------------------- /.xebialabs/wrapper.conf: -------------------------------------------------------------------------------- 1 | CLI_BASE_URL="https://s3.amazonaws.com/xl-cli/bin" 2 | CLI_VERSION="9.5.2" 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/README.md -------------------------------------------------------------------------------- /app.jdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/app.jdl -------------------------------------------------------------------------------- /app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/app.png -------------------------------------------------------------------------------- /arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/arch.png -------------------------------------------------------------------------------- /console/kubernetes/jhipster-console.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/console/kubernetes/jhipster-console.yml -------------------------------------------------------------------------------- /console/kubernetes/jhipster-dashboard-console.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/console/kubernetes/jhipster-dashboard-console.yml -------------------------------------------------------------------------------- /console/kubernetes/jhipster-elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/console/kubernetes/jhipster-elasticsearch.yml -------------------------------------------------------------------------------- /console/kubernetes/jhipster-logstash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/console/kubernetes/jhipster-logstash.yml -------------------------------------------------------------------------------- /console/kubernetes/jhipster-zipkin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/console/kubernetes/jhipster-zipkin.yml -------------------------------------------------------------------------------- /console/kubernetes/logstash-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/console/kubernetes/logstash-config.yml -------------------------------------------------------------------------------- /docker-compose/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/.yo-rc.json -------------------------------------------------------------------------------- /docker-compose/README-DOCKER-COMPOSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/README-DOCKER-COMPOSE.md -------------------------------------------------------------------------------- /docker-compose/central-server-config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/central-server-config/application.yml -------------------------------------------------------------------------------- /docker-compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose/jhipster-console.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/jhipster-console.yml -------------------------------------------------------------------------------- /docker-compose/jhipster-registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/jhipster-registry.yml -------------------------------------------------------------------------------- /docker-compose/log-conf/logstash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/log-conf/logstash.conf -------------------------------------------------------------------------------- /docker-compose/log-data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /docker-compose/xebialabs/data/configure-xl-devops-platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/xebialabs/data/configure-xl-devops-platform.yaml -------------------------------------------------------------------------------- /docker-compose/xebialabs/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/xebialabs/docker-compose.yaml -------------------------------------------------------------------------------- /docker-compose/xebialabs/jenkins/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/xebialabs/jenkins/Dockerfile -------------------------------------------------------------------------------- /docker-compose/xebialabs/jenkins/init.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/xebialabs/jenkins/init.groovy -------------------------------------------------------------------------------- /docker-compose/xebialabs/jenkins/jenkins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/xebialabs/jenkins/jenkins.yaml -------------------------------------------------------------------------------- /docker-compose/xebialabs/jenkins/plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/xebialabs/jenkins/plugins.txt -------------------------------------------------------------------------------- /docker-compose/xebialabs/xl-cli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/xebialabs/xl-cli/Dockerfile -------------------------------------------------------------------------------- /docker-compose/xebialabs/xl-deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/xebialabs/xl-deploy/Dockerfile -------------------------------------------------------------------------------- /docker-compose/xebialabs/xl-deploy/default-conf/.gitignore: -------------------------------------------------------------------------------- 1 | deployit-license.lic -------------------------------------------------------------------------------- /docker-compose/xebialabs/xl-release/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/xebialabs/xl-release/Dockerfile -------------------------------------------------------------------------------- /docker-compose/xebialabs/xl-release/default-conf/.gitignore: -------------------------------------------------------------------------------- 1 | xl-release-license.lic -------------------------------------------------------------------------------- /docker-compose/xebialabs/xl-release/default-conf/script.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/docker-compose/xebialabs/xl-release/default-conf/script.policy -------------------------------------------------------------------------------- /invoice/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/.editorconfig -------------------------------------------------------------------------------- /invoice/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/.gitattributes -------------------------------------------------------------------------------- /invoice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/.gitignore -------------------------------------------------------------------------------- /invoice/.jhipster/Invoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/.jhipster/Invoice.json -------------------------------------------------------------------------------- /invoice/.jhipster/Shipment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/.jhipster/Shipment.json -------------------------------------------------------------------------------- /invoice/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/.yo-rc.json -------------------------------------------------------------------------------- /invoice/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/Jenkinsfile -------------------------------------------------------------------------------- /invoice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/README.md -------------------------------------------------------------------------------- /invoice/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/build.gradle -------------------------------------------------------------------------------- /invoice/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/gradle.properties -------------------------------------------------------------------------------- /invoice/gradle/docker.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/gradle/docker.gradle -------------------------------------------------------------------------------- /invoice/gradle/liquibase.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/gradle/liquibase.gradle -------------------------------------------------------------------------------- /invoice/gradle/profile_dev.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/gradle/profile_dev.gradle -------------------------------------------------------------------------------- /invoice/gradle/profile_prod.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/gradle/profile_prod.gradle -------------------------------------------------------------------------------- /invoice/gradle/sonar.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/gradle/sonar.gradle -------------------------------------------------------------------------------- /invoice/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /invoice/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /invoice/gradle/zipkin.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/gradle/zipkin.gradle -------------------------------------------------------------------------------- /invoice/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/gradlew -------------------------------------------------------------------------------- /invoice/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/gradlew.bat -------------------------------------------------------------------------------- /invoice/invoice.jdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/invoice.jdl -------------------------------------------------------------------------------- /invoice/invoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/invoice.png -------------------------------------------------------------------------------- /invoice/kubernetes/invoice-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/kubernetes/invoice-deployment.yml -------------------------------------------------------------------------------- /invoice/kubernetes/invoice-mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/kubernetes/invoice-mysql.yml -------------------------------------------------------------------------------- /invoice/kubernetes/invoice-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/kubernetes/invoice-service.yml -------------------------------------------------------------------------------- /invoice/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/package-lock.json -------------------------------------------------------------------------------- /invoice/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/package.json -------------------------------------------------------------------------------- /invoice/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'invoice' 2 | -------------------------------------------------------------------------------- /invoice/src/main/docker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/docker/.dockerignore -------------------------------------------------------------------------------- /invoice/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /invoice/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/docker/app.yml -------------------------------------------------------------------------------- /invoice/src/main/docker/central-server-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/docker/central-server-config/README.md -------------------------------------------------------------------------------- /invoice/src/main/docker/central-server-config/docker-config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/docker/central-server-config/docker-config/application.yml -------------------------------------------------------------------------------- /invoice/src/main/docker/central-server-config/localhost-config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/docker/central-server-config/localhost-config/application.yml -------------------------------------------------------------------------------- /invoice/src/main/docker/docker-registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/docker/docker-registry.yml -------------------------------------------------------------------------------- /invoice/src/main/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/docker/entrypoint.sh -------------------------------------------------------------------------------- /invoice/src/main/docker/hazelcast-management-center.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/docker/hazelcast-management-center.yml -------------------------------------------------------------------------------- /invoice/src/main/docker/jenkins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/docker/jenkins.yml -------------------------------------------------------------------------------- /invoice/src/main/docker/jhipster-registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/docker/jhipster-registry.yml -------------------------------------------------------------------------------- /invoice/src/main/docker/mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/docker/mysql.yml -------------------------------------------------------------------------------- /invoice/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/ApplicationWebXml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/ApplicationWebXml.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/InvoiceApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/InvoiceApp.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/aop/logging/LoggingAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/aop/logging/LoggingAspect.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/client/UserFeignClientInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/client/UserFeignClientInterceptor.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/ApplicationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/ApplicationProperties.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/AsyncConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/AsyncConfiguration.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/CacheConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/CacheConfiguration.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/CloudDatabaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/CloudDatabaseConfiguration.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/Constants.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/DatabaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/DatabaseConfiguration.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/DateTimeFormatConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/DateTimeFormatConfiguration.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/DefaultProfileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/DefaultProfileUtil.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/FeignConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/FeignConfiguration.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/JacksonConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/JacksonConfiguration.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/LiquibaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/LiquibaseConfiguration.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/LocaleConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/LocaleConfiguration.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/LoggingAspectConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/LoggingAspectConfiguration.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/LoggingConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/LoggingConfiguration.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/MetricsConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/MetricsConfiguration.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/SecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/SecurityConfiguration.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/WebConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/WebConfigurer.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/audit/AuditEventConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/audit/AuditEventConverter.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/audit/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/audit/package-info.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/config/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/config/package-info.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/domain/AbstractAuditingEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/domain/AbstractAuditingEntity.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/domain/Invoice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/domain/Invoice.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/domain/PersistentAuditEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/domain/PersistentAuditEvent.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/domain/Shipment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/domain/Shipment.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/domain/enumeration/InvoiceStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/domain/enumeration/InvoiceStatus.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/domain/enumeration/PaymentMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/domain/enumeration/PaymentMethod.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/domain/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/domain/package-info.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/repository/InvoiceRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/repository/InvoiceRepository.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/repository/ShipmentRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/repository/ShipmentRepository.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/repository/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/repository/package-info.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/security/AuthoritiesConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/security/AuthoritiesConstants.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/security/SecurityUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/security/SecurityUtils.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/security/SpringSecurityAuditorAware.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/security/SpringSecurityAuditorAware.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/security/jwt/JWTConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/security/jwt/JWTConfigurer.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/security/jwt/JWTFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/security/jwt/JWTFilter.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/security/jwt/TokenProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/security/jwt/TokenProvider.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/security/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/security/package-info.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/service/InvoiceService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/service/InvoiceService.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/service/ShipmentService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/service/ShipmentService.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/service/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/service/package-info.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/web/rest/InvoiceResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/web/rest/InvoiceResource.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/web/rest/LogsResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/web/rest/LogsResource.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/web/rest/ShipmentResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/web/rest/ShipmentResource.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/web/rest/errors/ErrorConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/web/rest/errors/ErrorConstants.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/web/rest/errors/ExceptionTranslator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/web/rest/errors/ExceptionTranslator.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/web/rest/errors/FieldErrorVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/web/rest/errors/FieldErrorVM.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/web/rest/errors/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/web/rest/errors/package-info.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/web/rest/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/web/rest/package-info.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/web/rest/util/HeaderUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/web/rest/util/HeaderUtil.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/web/rest/util/PaginationUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/web/rest/util/PaginationUtil.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/web/rest/vm/LoggerVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/web/rest/vm/LoggerVM.java -------------------------------------------------------------------------------- /invoice/src/main/java/com/xebialabs/invoice/web/rest/vm/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/java/com/xebialabs/invoice/web/rest/vm/package-info.java -------------------------------------------------------------------------------- /invoice/src/main/resources/.h2.server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/.h2.server.properties -------------------------------------------------------------------------------- /invoice/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/banner.txt -------------------------------------------------------------------------------- /invoice/src/main/resources/config/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/config/application-dev.yml -------------------------------------------------------------------------------- /invoice/src/main/resources/config/application-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/config/application-prod.yml -------------------------------------------------------------------------------- /invoice/src/main/resources/config/application-tls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/config/application-tls.yml -------------------------------------------------------------------------------- /invoice/src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /invoice/src/main/resources/config/bootstrap-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/config/bootstrap-prod.yml -------------------------------------------------------------------------------- /invoice/src/main/resources/config/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/config/bootstrap.yml -------------------------------------------------------------------------------- /invoice/src/main/resources/config/liquibase/master.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/config/liquibase/master.xml -------------------------------------------------------------------------------- /invoice/src/main/resources/config/tls/keystore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/config/tls/keystore.p12 -------------------------------------------------------------------------------- /invoice/src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/i18n/messages.properties -------------------------------------------------------------------------------- /invoice/src/main/resources/i18n/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/i18n/messages_en.properties -------------------------------------------------------------------------------- /invoice/src/main/resources/i18n/messages_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/i18n/messages_nl.properties -------------------------------------------------------------------------------- /invoice/src/main/resources/idea.gdsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/idea.gdsl -------------------------------------------------------------------------------- /invoice/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /invoice/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/static/index.html -------------------------------------------------------------------------------- /invoice/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /invoice/src/test/java/com/xebialabs/invoice/config/WebConfigurerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/test/java/com/xebialabs/invoice/config/WebConfigurerTest.java -------------------------------------------------------------------------------- /invoice/src/test/java/com/xebialabs/invoice/config/WebConfigurerTestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/test/java/com/xebialabs/invoice/config/WebConfigurerTestController.java -------------------------------------------------------------------------------- /invoice/src/test/java/com/xebialabs/invoice/web/rest/InvoiceResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/test/java/com/xebialabs/invoice/web/rest/InvoiceResourceIntTest.java -------------------------------------------------------------------------------- /invoice/src/test/java/com/xebialabs/invoice/web/rest/LogsResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/test/java/com/xebialabs/invoice/web/rest/LogsResourceIntTest.java -------------------------------------------------------------------------------- /invoice/src/test/java/com/xebialabs/invoice/web/rest/ShipmentResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/test/java/com/xebialabs/invoice/web/rest/ShipmentResourceIntTest.java -------------------------------------------------------------------------------- /invoice/src/test/java/com/xebialabs/invoice/web/rest/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/test/java/com/xebialabs/invoice/web/rest/TestUtil.java -------------------------------------------------------------------------------- /invoice/src/test/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/test/resources/config/application.yml -------------------------------------------------------------------------------- /invoice/src/test/resources/config/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/test/resources/config/bootstrap.yml -------------------------------------------------------------------------------- /invoice/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/invoice/src/test/resources/logback.xml -------------------------------------------------------------------------------- /microservices_architecture-jh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/microservices_architecture-jh.png -------------------------------------------------------------------------------- /notification/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/.editorconfig -------------------------------------------------------------------------------- /notification/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/.gitattributes -------------------------------------------------------------------------------- /notification/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/.gitignore -------------------------------------------------------------------------------- /notification/.jhipster/Notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/.jhipster/Notification.json -------------------------------------------------------------------------------- /notification/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/.yo-rc.json -------------------------------------------------------------------------------- /notification/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/Jenkinsfile -------------------------------------------------------------------------------- /notification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/README.md -------------------------------------------------------------------------------- /notification/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/build.gradle -------------------------------------------------------------------------------- /notification/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/gradle.properties -------------------------------------------------------------------------------- /notification/gradle/docker.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/gradle/docker.gradle -------------------------------------------------------------------------------- /notification/gradle/profile_dev.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/gradle/profile_dev.gradle -------------------------------------------------------------------------------- /notification/gradle/profile_prod.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/gradle/profile_prod.gradle -------------------------------------------------------------------------------- /notification/gradle/sonar.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/gradle/sonar.gradle -------------------------------------------------------------------------------- /notification/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /notification/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /notification/gradle/zipkin.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/gradle/zipkin.gradle -------------------------------------------------------------------------------- /notification/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/gradlew -------------------------------------------------------------------------------- /notification/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/gradlew.bat -------------------------------------------------------------------------------- /notification/kubernetes/notification-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/kubernetes/notification-deployment.yml -------------------------------------------------------------------------------- /notification/kubernetes/notification-mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/kubernetes/notification-mongodb.yml -------------------------------------------------------------------------------- /notification/kubernetes/notification-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/kubernetes/notification-service.yml -------------------------------------------------------------------------------- /notification/notification.jdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/notification.jdl -------------------------------------------------------------------------------- /notification/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/notification.png -------------------------------------------------------------------------------- /notification/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/package-lock.json -------------------------------------------------------------------------------- /notification/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/package.json -------------------------------------------------------------------------------- /notification/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'notification' 2 | -------------------------------------------------------------------------------- /notification/src/main/docker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/docker/.dockerignore -------------------------------------------------------------------------------- /notification/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /notification/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/docker/app.yml -------------------------------------------------------------------------------- /notification/src/main/docker/central-server-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/docker/central-server-config/README.md -------------------------------------------------------------------------------- /notification/src/main/docker/central-server-config/docker-config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/docker/central-server-config/docker-config/application.yml -------------------------------------------------------------------------------- /notification/src/main/docker/central-server-config/localhost-config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/docker/central-server-config/localhost-config/application.yml -------------------------------------------------------------------------------- /notification/src/main/docker/docker-registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/docker/docker-registry.yml -------------------------------------------------------------------------------- /notification/src/main/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/docker/entrypoint.sh -------------------------------------------------------------------------------- /notification/src/main/docker/jenkins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/docker/jenkins.yml -------------------------------------------------------------------------------- /notification/src/main/docker/jhipster-registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/docker/jhipster-registry.yml -------------------------------------------------------------------------------- /notification/src/main/docker/mongodb-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/docker/mongodb-cluster.yml -------------------------------------------------------------------------------- /notification/src/main/docker/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/docker/mongodb.yml -------------------------------------------------------------------------------- /notification/src/main/docker/mongodb/MongoDB.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/docker/mongodb/MongoDB.Dockerfile -------------------------------------------------------------------------------- /notification/src/main/docker/mongodb/scripts/init_replicaset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/docker/mongodb/scripts/init_replicaset.js -------------------------------------------------------------------------------- /notification/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/ApplicationWebXml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/ApplicationWebXml.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/NotificationApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/NotificationApp.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/aop/logging/LoggingAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/aop/logging/LoggingAspect.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/config/AsyncConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/config/AsyncConfiguration.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/config/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/config/Constants.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/config/DefaultProfileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/config/DefaultProfileUtil.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/config/FeignConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/config/FeignConfiguration.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/config/WebConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/config/WebConfigurer.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/config/audit/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/config/audit/package-info.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/config/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/config/package-info.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/domain/Notification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/domain/Notification.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/domain/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/domain/package-info.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/repository/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/repository/package-info.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/security/SecurityUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/security/SecurityUtils.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/security/jwt/JWTFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/security/jwt/JWTFilter.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/security/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/security/package-info.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/service/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/service/package-info.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/web/rest/LogsResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/web/rest/LogsResource.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/web/rest/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/web/rest/package-info.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/web/rest/util/HeaderUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/web/rest/util/HeaderUtil.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/web/rest/vm/LoggerVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/web/rest/vm/LoggerVM.java -------------------------------------------------------------------------------- /notification/src/main/java/com/xebialabs/notification/web/rest/vm/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/java/com/xebialabs/notification/web/rest/vm/package-info.java -------------------------------------------------------------------------------- /notification/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/resources/banner.txt -------------------------------------------------------------------------------- /notification/src/main/resources/config/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/resources/config/application-dev.yml -------------------------------------------------------------------------------- /notification/src/main/resources/config/application-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/resources/config/application-prod.yml -------------------------------------------------------------------------------- /notification/src/main/resources/config/application-tls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/resources/config/application-tls.yml -------------------------------------------------------------------------------- /notification/src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /notification/src/main/resources/config/bootstrap-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/resources/config/bootstrap-prod.yml -------------------------------------------------------------------------------- /notification/src/main/resources/config/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/resources/config/bootstrap.yml -------------------------------------------------------------------------------- /notification/src/main/resources/config/tls/keystore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/resources/config/tls/keystore.p12 -------------------------------------------------------------------------------- /notification/src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/resources/i18n/messages.properties -------------------------------------------------------------------------------- /notification/src/main/resources/i18n/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/resources/i18n/messages_en.properties -------------------------------------------------------------------------------- /notification/src/main/resources/i18n/messages_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/resources/i18n/messages_nl.properties -------------------------------------------------------------------------------- /notification/src/main/resources/idea.gdsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/resources/idea.gdsl -------------------------------------------------------------------------------- /notification/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /notification/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/resources/static/index.html -------------------------------------------------------------------------------- /notification/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /notification/src/test/java/com/xebialabs/notification/config/WebConfigurerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/test/java/com/xebialabs/notification/config/WebConfigurerTest.java -------------------------------------------------------------------------------- /notification/src/test/java/com/xebialabs/notification/web/rest/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/test/java/com/xebialabs/notification/web/rest/TestUtil.java -------------------------------------------------------------------------------- /notification/src/test/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/test/resources/config/application.yml -------------------------------------------------------------------------------- /notification/src/test/resources/config/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/test/resources/config/bootstrap.yml -------------------------------------------------------------------------------- /notification/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/notification/src/test/resources/logback.xml -------------------------------------------------------------------------------- /registry/kubernetes/application-configmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/registry/kubernetes/application-configmap.yml -------------------------------------------------------------------------------- /registry/kubernetes/jhipster-registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/registry/kubernetes/jhipster-registry.yml -------------------------------------------------------------------------------- /store/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/.editorconfig -------------------------------------------------------------------------------- /store/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/.gitattributes -------------------------------------------------------------------------------- /store/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/.gitignore -------------------------------------------------------------------------------- /store/.jhipster/Customer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/.jhipster/Customer.json -------------------------------------------------------------------------------- /store/.jhipster/Invoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/.jhipster/Invoice.json -------------------------------------------------------------------------------- /store/.jhipster/Notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/.jhipster/Notification.json -------------------------------------------------------------------------------- /store/.jhipster/OrderItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/.jhipster/OrderItem.json -------------------------------------------------------------------------------- /store/.jhipster/Product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/.jhipster/Product.json -------------------------------------------------------------------------------- /store/.jhipster/ProductCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/.jhipster/ProductCategory.json -------------------------------------------------------------------------------- /store/.jhipster/ProductOrder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/.jhipster/ProductOrder.json -------------------------------------------------------------------------------- /store/.jhipster/Shipment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/.jhipster/Shipment.json -------------------------------------------------------------------------------- /store/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | target 3 | -------------------------------------------------------------------------------- /store/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/.prettierrc -------------------------------------------------------------------------------- /store/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/.yo-rc.json -------------------------------------------------------------------------------- /store/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/Jenkinsfile -------------------------------------------------------------------------------- /store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/README.md -------------------------------------------------------------------------------- /store/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/build.gradle -------------------------------------------------------------------------------- /store/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/gradle.properties -------------------------------------------------------------------------------- /store/gradle/docker.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/gradle/docker.gradle -------------------------------------------------------------------------------- /store/gradle/liquibase.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/gradle/liquibase.gradle -------------------------------------------------------------------------------- /store/gradle/profile_dev.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/gradle/profile_dev.gradle -------------------------------------------------------------------------------- /store/gradle/profile_prod.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/gradle/profile_prod.gradle -------------------------------------------------------------------------------- /store/gradle/sonar.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/gradle/sonar.gradle -------------------------------------------------------------------------------- /store/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /store/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /store/gradle/zipkin.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/gradle/zipkin.gradle -------------------------------------------------------------------------------- /store/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/gradlew -------------------------------------------------------------------------------- /store/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/gradlew.bat -------------------------------------------------------------------------------- /store/kubernetes/store-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/kubernetes/store-deployment.yml -------------------------------------------------------------------------------- /store/kubernetes/store-mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/kubernetes/store-mysql.yml -------------------------------------------------------------------------------- /store/kubernetes/store-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/kubernetes/store-service.yml -------------------------------------------------------------------------------- /store/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/package-lock.json -------------------------------------------------------------------------------- /store/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/package.json -------------------------------------------------------------------------------- /store/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [] 3 | }; 4 | -------------------------------------------------------------------------------- /store/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'store' 2 | -------------------------------------------------------------------------------- /store/src/main/docker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/docker/.dockerignore -------------------------------------------------------------------------------- /store/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /store/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/docker/app.yml -------------------------------------------------------------------------------- /store/src/main/docker/central-server-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/docker/central-server-config/README.md -------------------------------------------------------------------------------- /store/src/main/docker/central-server-config/docker-config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/docker/central-server-config/docker-config/application.yml -------------------------------------------------------------------------------- /store/src/main/docker/central-server-config/localhost-config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/docker/central-server-config/localhost-config/application.yml -------------------------------------------------------------------------------- /store/src/main/docker/docker-registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/docker/docker-registry.yml -------------------------------------------------------------------------------- /store/src/main/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/docker/entrypoint.sh -------------------------------------------------------------------------------- /store/src/main/docker/hazelcast-management-center.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/docker/hazelcast-management-center.yml -------------------------------------------------------------------------------- /store/src/main/docker/jenkins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/docker/jenkins.yml -------------------------------------------------------------------------------- /store/src/main/docker/jhipster-registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/docker/jhipster-registry.yml -------------------------------------------------------------------------------- /store/src/main/docker/mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/docker/mysql.yml -------------------------------------------------------------------------------- /store/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/ApplicationWebXml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/ApplicationWebXml.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/StoreApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/StoreApp.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/aop/logging/LoggingAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/aop/logging/LoggingAspect.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/ApplicationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/ApplicationProperties.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/AsyncConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/AsyncConfiguration.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/CacheConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/CacheConfiguration.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/CloudDatabaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/CloudDatabaseConfiguration.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/Constants.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/DatabaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/DatabaseConfiguration.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/DateTimeFormatConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/DateTimeFormatConfiguration.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/DefaultProfileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/DefaultProfileUtil.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/GatewayConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/GatewayConfiguration.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/JacksonConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/JacksonConfiguration.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/LiquibaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/LiquibaseConfiguration.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/LocaleConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/LocaleConfiguration.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/LoggingAspectConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/LoggingAspectConfiguration.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/LoggingConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/LoggingConfiguration.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/MetricsConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/MetricsConfiguration.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/SecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/SecurityConfiguration.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/WebConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/WebConfigurer.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/audit/AuditEventConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/audit/AuditEventConverter.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/audit/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/audit/package-info.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/config/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/config/package-info.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/domain/AbstractAuditingEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/domain/AbstractAuditingEntity.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/domain/Authority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/domain/Authority.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/domain/Customer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/domain/Customer.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/domain/OrderItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/domain/OrderItem.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/domain/PersistentAuditEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/domain/PersistentAuditEvent.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/domain/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/domain/Product.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/domain/ProductCategory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/domain/ProductCategory.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/domain/ProductOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/domain/ProductOrder.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/domain/User.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/domain/enumeration/Gender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/domain/enumeration/Gender.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/domain/enumeration/OrderItemStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/domain/enumeration/OrderItemStatus.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/domain/enumeration/OrderStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/domain/enumeration/OrderStatus.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/domain/enumeration/Size.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/domain/enumeration/Size.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/domain/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/domain/package-info.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/gateway/TokenRelayFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/gateway/TokenRelayFilter.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/gateway/ratelimiting/RateLimitingFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/gateway/ratelimiting/RateLimitingFilter.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/repository/AuthorityRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/repository/AuthorityRepository.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/repository/CustomAuditEventRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/repository/CustomAuditEventRepository.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/repository/CustomerRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/repository/CustomerRepository.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/repository/OrderItemRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/repository/OrderItemRepository.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/repository/ProductCategoryRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/repository/ProductCategoryRepository.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/repository/ProductOrderRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/repository/ProductOrderRepository.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/repository/ProductRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/repository/ProductRepository.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/repository/UserRepository.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/repository/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/repository/package-info.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/security/AuthoritiesConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/security/AuthoritiesConstants.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/security/DomainUserDetailsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/security/DomainUserDetailsService.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/security/SecurityUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/security/SecurityUtils.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/security/SpringSecurityAuditorAware.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/security/SpringSecurityAuditorAware.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/security/UserNotActivatedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/security/UserNotActivatedException.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/security/jwt/JWTConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/security/jwt/JWTConfigurer.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/security/jwt/JWTFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/security/jwt/JWTFilter.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/security/jwt/TokenProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/security/jwt/TokenProvider.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/security/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/security/package-info.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/service/AuditEventService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/service/AuditEventService.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/service/CustomerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/service/CustomerService.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/service/MailService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/service/MailService.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/service/OrderItemService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/service/OrderItemService.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/service/ProductCategoryService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/service/ProductCategoryService.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/service/ProductOrderService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/service/ProductOrderService.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/service/ProductService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/service/ProductService.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/service/UserService.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/service/dto/PasswordChangeDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/service/dto/PasswordChangeDTO.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/service/dto/UserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/service/dto/UserDTO.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/service/dto/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Data Transfer Objects. 3 | */ 4 | package com.xebialabs.store.service.dto; 5 | -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/service/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/service/mapper/UserMapper.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/service/mapper/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/service/mapper/package-info.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/service/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/service/package-info.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/service/util/RandomUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/service/util/RandomUtil.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/AccountResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/AccountResource.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/AuditResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/AuditResource.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/CustomerResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/CustomerResource.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/GatewayResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/GatewayResource.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/LogsResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/LogsResource.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/OrderItemResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/OrderItemResource.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/ProductCategoryResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/ProductCategoryResource.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/ProductOrderResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/ProductOrderResource.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/ProductResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/ProductResource.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/UserJWTController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/UserJWTController.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/UserResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/UserResource.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/errors/EmailNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/errors/EmailNotFoundException.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/errors/ErrorConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/errors/ErrorConstants.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/errors/ExceptionTranslator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/errors/ExceptionTranslator.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/errors/FieldErrorVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/errors/FieldErrorVM.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/errors/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/errors/package-info.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/package-info.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/util/HeaderUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/util/HeaderUtil.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/util/PaginationUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/util/PaginationUtil.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/vm/KeyAndPasswordVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/vm/KeyAndPasswordVM.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/vm/LoggerVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/vm/LoggerVM.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/vm/LoginVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/vm/LoginVM.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/vm/ManagedUserVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/vm/ManagedUserVM.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/vm/RouteVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/vm/RouteVM.java -------------------------------------------------------------------------------- /store/src/main/java/com/xebialabs/store/web/rest/vm/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/java/com/xebialabs/store/web/rest/vm/package-info.java -------------------------------------------------------------------------------- /store/src/main/resources/.h2.server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/.h2.server.properties -------------------------------------------------------------------------------- /store/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/banner.txt -------------------------------------------------------------------------------- /store/src/main/resources/config/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/config/application-dev.yml -------------------------------------------------------------------------------- /store/src/main/resources/config/application-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/config/application-prod.yml -------------------------------------------------------------------------------- /store/src/main/resources/config/application-tls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/config/application-tls.yml -------------------------------------------------------------------------------- /store/src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /store/src/main/resources/config/bootstrap-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/config/bootstrap-prod.yml -------------------------------------------------------------------------------- /store/src/main/resources/config/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/config/bootstrap.yml -------------------------------------------------------------------------------- /store/src/main/resources/config/liquibase/authorities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/config/liquibase/authorities.csv -------------------------------------------------------------------------------- /store/src/main/resources/config/liquibase/master.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/config/liquibase/master.xml -------------------------------------------------------------------------------- /store/src/main/resources/config/liquibase/users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/config/liquibase/users.csv -------------------------------------------------------------------------------- /store/src/main/resources/config/liquibase/users_authorities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/config/liquibase/users_authorities.csv -------------------------------------------------------------------------------- /store/src/main/resources/config/tls/keystore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/config/tls/keystore.p12 -------------------------------------------------------------------------------- /store/src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/i18n/messages.properties -------------------------------------------------------------------------------- /store/src/main/resources/i18n/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/i18n/messages_en.properties -------------------------------------------------------------------------------- /store/src/main/resources/i18n/messages_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/i18n/messages_nl.properties -------------------------------------------------------------------------------- /store/src/main/resources/idea.gdsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/idea.gdsl -------------------------------------------------------------------------------- /store/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /store/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /store/src/main/resources/templates/mail/activationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/templates/mail/activationEmail.html -------------------------------------------------------------------------------- /store/src/main/resources/templates/mail/creationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/templates/mail/creationEmail.html -------------------------------------------------------------------------------- /store/src/main/resources/templates/mail/passwordResetEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/resources/templates/mail/passwordResetEmail.html -------------------------------------------------------------------------------- /store/src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/404.html -------------------------------------------------------------------------------- /store/src/main/webapp/app/_bootstrap-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/_bootstrap-variables.scss -------------------------------------------------------------------------------- /store/src/main/webapp/app/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/app.scss -------------------------------------------------------------------------------- /store/src/main/webapp/app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/app.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/config/axios-interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/config/axios-interceptor.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/config/constants.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/config/devtools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/config/devtools.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/config/error-middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/config/error-middleware.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/config/icon-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/config/icon-loader.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/config/logger-middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/config/logger-middleware.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/config/notification-middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/config/notification-middleware.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/config/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/config/store.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/config/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/config/translation.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/customer/customer-delete-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/customer/customer-delete-dialog.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/customer/customer-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/customer/customer-detail.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/customer/customer-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/customer/customer-update.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/customer/customer.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/customer/customer.reducer.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/customer/customer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/customer/customer.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/customer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/customer/index.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/index.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/invoice/invoice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/invoice/invoice/index.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/invoice/invoice/invoice-delete-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/invoice/invoice/invoice-delete-dialog.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/invoice/invoice/invoice-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/invoice/invoice/invoice-detail.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/invoice/invoice/invoice-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/invoice/invoice/invoice-update.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/invoice/invoice/invoice.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/invoice/invoice/invoice.reducer.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/invoice/invoice/invoice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/invoice/invoice/invoice.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/invoice/shipment/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/invoice/shipment/index.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/invoice/shipment/shipment-delete-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/invoice/shipment/shipment-delete-dialog.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/invoice/shipment/shipment-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/invoice/shipment/shipment-detail.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/invoice/shipment/shipment-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/invoice/shipment/shipment-update.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/invoice/shipment/shipment.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/invoice/shipment/shipment.reducer.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/invoice/shipment/shipment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/invoice/shipment/shipment.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/notification/notification/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/notification/notification/index.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/notification/notification/notification-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/notification/notification/notification-detail.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/notification/notification/notification-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/notification/notification/notification-update.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/notification/notification/notification.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/notification/notification/notification.reducer.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/notification/notification/notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/notification/notification/notification.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/order-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/order-item/index.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/order-item/order-item-delete-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/order-item/order-item-delete-dialog.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/order-item/order-item-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/order-item/order-item-detail.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/order-item/order-item-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/order-item/order-item-update.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/order-item/order-item.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/order-item/order-item.reducer.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/order-item/order-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/order-item/order-item.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product-category/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product-category/index.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product-category/product-category-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product-category/product-category-detail.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product-category/product-category-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product-category/product-category-update.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product-category/product-category.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product-category/product-category.reducer.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product-category/product-category.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product-category/product-category.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product-order/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product-order/index.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product-order/product-order-delete-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product-order/product-order-delete-dialog.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product-order/product-order-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product-order/product-order-detail.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product-order/product-order-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product-order/product-order-update.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product-order/product-order.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product-order/product-order.reducer.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product-order/product-order.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product-order/product-order.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product/index.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product/product-delete-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product/product-delete-dialog.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product/product-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product/product-detail.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product/product-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product/product-update.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product/product.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product/product.reducer.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/entities/product/product.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/entities/product/product.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/index.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/account/activate/activate.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/account/activate/activate.reducer.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/account/activate/activate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/account/activate/activate.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/account/index.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/account/password-reset/password-reset.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/account/password-reset/password-reset.reducer.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/account/password/password.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/account/password/password.reducer.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/account/password/password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/account/password/password.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/account/register/register.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/account/register/register.reducer.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/account/register/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/account/register/register.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/account/settings/settings.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/account/settings/settings.reducer.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/account/settings/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/account/settings/settings.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/administration/administration.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/administration/administration.reducer.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/administration/audits/audits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/administration/audits/audits.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/administration/configuration/configuration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/administration/configuration/configuration.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/administration/docs/docs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/administration/docs/docs.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/administration/gateway/gateway.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/administration/gateway/gateway.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/administration/health/health-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/administration/health/health-modal.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/administration/health/health.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/administration/health/health.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/administration/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/administration/index.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/administration/logs/logs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/administration/logs/logs.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/administration/metrics/metrics-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/administration/metrics/metrics-modal.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/administration/metrics/metrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/administration/metrics/metrics.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/administration/metrics/thread-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/administration/metrics/thread-item.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/administration/user-management/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/administration/user-management/index.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/administration/user-management/user-management.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/administration/user-management/user-management.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/home/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/home/home.scss -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/home/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/home/home.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/login/login-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/login/login-modal.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/login/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/login/login.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/modules/login/logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/modules/login/logout.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/routes.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/auth/private-route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/auth/private-route.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/error/error-boundary-route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/error/error-boundary-route.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/error/error-boundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/error/error-boundary.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/layout/footer/footer.scss: -------------------------------------------------------------------------------- 1 | .footer { 2 | height: 50px; 3 | } 4 | -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/layout/footer/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/layout/footer/footer.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/layout/header/header-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/layout/header/header-components.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/layout/header/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/layout/header/header.scss -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/layout/header/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/layout/header/header.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/layout/header/menus/account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/layout/header/menus/account.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/layout/header/menus/admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/layout/header/menus/admin.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/layout/header/menus/entities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/layout/header/menus/entities.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/layout/header/menus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/layout/header/menus/index.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/layout/header/menus/locale.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/layout/header/menus/locale.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/layout/password/password-strength-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/layout/password/password-strength-bar.scss -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/layout/password/password-strength-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/layout/password/password-strength-bar.tsx -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/model/customer.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/model/customer.model.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/model/invoice/invoice.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/model/invoice/invoice.model.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/model/invoice/shipment.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/model/invoice/shipment.model.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/model/notification/notification.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/model/notification/notification.model.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/model/order-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/model/order-item.model.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/model/product-category.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/model/product-category.model.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/model/product-order.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/model/product-order.model.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/model/product.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/model/product.model.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/model/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/model/user.model.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/reducers/action-type.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/reducers/action-type.util.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/reducers/application-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/reducers/application-profile.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/reducers/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/reducers/authentication.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/reducers/index.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/reducers/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/reducers/locale.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/util/date-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/util/date-utils.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/util/entity-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/shared/util/entity-utils.ts -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/util/pagination.constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /store/src/main/webapp/app/shared/util/url-utils.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /store/src/main/webapp/app/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/app/typings.d.ts -------------------------------------------------------------------------------- /store/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/activate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/activate.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/audits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/audits.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/configuration.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/customer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/customer.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/error.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/gateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/gateway.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/gender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/gender.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/global.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/health.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/home.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/invoice-invoiceStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/invoice-invoiceStatus.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/invoice-paymentMethod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/invoice-paymentMethod.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/invoiceInvoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/invoiceInvoice.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/invoiceShipment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/invoiceShipment.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/login.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/logs.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/metrics.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/notification-notificationType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/notification-notificationType.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/notificationNotification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/notificationNotification.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/orderItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/orderItem.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/orderItemStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/orderItemStatus.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/orderStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/orderStatus.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/password.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/password.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/product.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/productCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/productCategory.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/productOrder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/productOrder.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/register.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/reset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/reset.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/sessions.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/settings.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/size.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/en/user-management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/en/user-management.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/activate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/activate.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/audits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/audits.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/configuration.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/customer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/customer.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/error.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/gateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/gateway.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/gender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/gender.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/global.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/health.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/home.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/invoice-invoiceStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/invoice-invoiceStatus.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/invoice-paymentMethod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/invoice-paymentMethod.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/invoiceInvoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/invoiceInvoice.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/invoiceShipment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/invoiceShipment.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/login.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/logs.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/metrics.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/notification-notificationType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/notification-notificationType.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/notificationNotification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/notificationNotification.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/orderItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/orderItem.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/orderItemStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/orderItemStatus.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/orderStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/orderStatus.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/password.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/password.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/product.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/productCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/productCategory.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/productOrder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/productOrder.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/register.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/reset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/reset.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/sessions.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/settings.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/size.json -------------------------------------------------------------------------------- /store/src/main/webapp/i18n/nl/user-management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/i18n/nl/user-management.json -------------------------------------------------------------------------------- /store/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/index.html -------------------------------------------------------------------------------- /store/src/main/webapp/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/manifest.webapp -------------------------------------------------------------------------------- /store/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/hipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/hipster.png -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/hipster192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/hipster192.png -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/hipster256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/hipster256.png -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/hipster2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/hipster2x.png -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/hipster384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/hipster384.png -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/hipster512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/hipster512.png -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/logo-jhipster-react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/logo-jhipster-react.svg -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/logo-jhipster.png -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/xl-full-white-32-px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/xl-full-white-32-px.png -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/xl-full-white-32-px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/xl-full-white-32-px.svg -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/xl-full-white-32-px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/xl-full-white-32-px@2x.png -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/xl-full-white-32-px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/xl-full-white-32-px@3x.png -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/xl-mark-green-box-32-x-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/xl-mark-green-box-32-x-32.png -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/xl-mark-green-box-32-x-32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/xl-mark-green-box-32-x-32.svg -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/xl-mark-green-box-32-x-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/xl-mark-green-box-32-x-32@2x.png -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/xl-mark-green-box-32-x-32@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/xl-mark-green-box-32-x-32@3x.png -------------------------------------------------------------------------------- /store/src/main/webapp/static/images/xl-platform-diagram-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/static/images/xl-platform-diagram-update.png -------------------------------------------------------------------------------- /store/src/main/webapp/swagger-ui/dist/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/swagger-ui/dist/images/throbber.gif -------------------------------------------------------------------------------- /store/src/main/webapp/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/main/webapp/swagger-ui/index.html -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/config/WebConfigurerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/config/WebConfigurerTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/config/WebConfigurerTestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/config/WebConfigurerTestController.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/security/SecurityUtilsUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/security/SecurityUtilsUnitTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/security/jwt/JWTFilterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/security/jwt/JWTFilterTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/security/jwt/TokenProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/security/jwt/TokenProviderTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/service/MailServiceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/service/MailServiceIntTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/service/UserServiceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/service/UserServiceIntTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/web/rest/AccountResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/web/rest/AccountResourceIntTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/web/rest/AuditResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/web/rest/AuditResourceIntTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/web/rest/CustomerResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/web/rest/CustomerResourceIntTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/web/rest/LogsResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/web/rest/LogsResourceIntTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/web/rest/OrderItemResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/web/rest/OrderItemResourceIntTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/web/rest/ProductCategoryResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/web/rest/ProductCategoryResourceIntTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/web/rest/ProductOrderResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/web/rest/ProductOrderResourceIntTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/web/rest/ProductResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/web/rest/ProductResourceIntTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/web/rest/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/web/rest/TestUtil.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/web/rest/UserJWTControllerIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/web/rest/UserJWTControllerIntTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/web/rest/UserResourceIntTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/web/rest/UserResourceIntTest.java -------------------------------------------------------------------------------- /store/src/test/java/com/xebialabs/store/web/rest/util/PaginationUtilUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/java/com/xebialabs/store/web/rest/util/PaginationUtilUnitTest.java -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/customer/customer-update.page-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/customer/customer-update.page-object.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/customer/customer.page-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/customer/customer.page-object.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/customer/customer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/customer/customer.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/invoice/invoice/invoice-update.page-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/invoice/invoice/invoice-update.page-object.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/invoice/invoice/invoice.page-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/invoice/invoice/invoice.page-object.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/invoice/invoice/invoice.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/invoice/invoice/invoice.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/invoice/shipment/shipment.page-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/invoice/shipment/shipment.page-object.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/invoice/shipment/shipment.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/invoice/shipment/shipment.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/order-item/order-item-update.page-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/order-item/order-item-update.page-object.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/order-item/order-item.page-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/order-item/order-item.page-object.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/order-item/order-item.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/order-item/order-item.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/product-category/product-category.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/product-category/product-category.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/product-order/product-order.page-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/product-order/product-order.page-object.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/product-order/product-order.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/product-order/product-order.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/product/product-update.page-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/product/product-update.page-object.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/product/product.page-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/product/product.page-object.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/entities/product/product.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/entities/product/product.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/modules/account/account.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/modules/account/account.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/modules/administration/administration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/modules/administration/administration.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/page-objects/base-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/page-objects/base-component.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/page-objects/navbar-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/page-objects/navbar-page.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/page-objects/password-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/page-objects/password-page.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/page-objects/register-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/page-objects/register-page.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/page-objects/settings-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/page-objects/settings-page.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/page-objects/signin-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/page-objects/signin-page.ts -------------------------------------------------------------------------------- /store/src/test/javascript/e2e/util/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/e2e/util/utils.ts -------------------------------------------------------------------------------- /store/src/test/javascript/jest.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/jest.conf.js -------------------------------------------------------------------------------- /store/src/test/javascript/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/protractor.conf.js -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/config/axios-interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/config/axios-interceptor.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/config/notification-middleware.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/config/notification-middleware.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/entities/customer/customer-reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/entities/customer/customer-reducer.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/entities/invoice/invoice/invoice-reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/entities/invoice/invoice/invoice-reducer.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/entities/order-item/order-item-reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/entities/order-item/order-item-reducer.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/entities/product/product-reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/entities/product/product-reducer.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/modules/account/activate/activate.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/modules/account/activate/activate.reducer.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/modules/account/password/password.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/modules/account/password/password.reducer.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/modules/account/register/register.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/modules/account/register/register.reducer.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/modules/account/settings/settings.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/modules/account/settings/settings.reducer.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/shared/auth/private-route.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/shared/auth/private-route.spec.tsx -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/shared/error/error-boundary-route.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/shared/error/error-boundary-route.spec.tsx -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/shared/error/error-boundary.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/shared/error/error-boundary.spec.tsx -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/shared/layout/header/header.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/shared/layout/header/header.spec.tsx -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/shared/layout/header/menus/account.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/shared/layout/header/menus/account.spec.tsx -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/shared/reducers/application-profile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/shared/reducers/application-profile.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/shared/reducers/authentication.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/shared/reducers/authentication.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/shared/reducers/locale.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/shared/reducers/locale.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/shared/util/entity-utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/shared/util/entity-utils.spec.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/app/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/app/utils.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/enzyme-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/enzyme-setup.ts -------------------------------------------------------------------------------- /store/src/test/javascript/spec/storage-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/javascript/spec/storage-mock.ts -------------------------------------------------------------------------------- /store/src/test/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/resources/config/application.yml -------------------------------------------------------------------------------- /store/src/test/resources/config/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/resources/config/bootstrap.yml -------------------------------------------------------------------------------- /store/src/test/resources/i18n/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/resources/i18n/messages_en.properties -------------------------------------------------------------------------------- /store/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/resources/logback.xml -------------------------------------------------------------------------------- /store/src/test/resources/templates/mail/testEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/src/test/resources/templates/mail/testEmail.html -------------------------------------------------------------------------------- /store/store.jdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/store.jdl -------------------------------------------------------------------------------- /store/store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/store.png -------------------------------------------------------------------------------- /store/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/tsconfig.e2e.json -------------------------------------------------------------------------------- /store/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/tsconfig.json -------------------------------------------------------------------------------- /store/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/tsconfig.test.json -------------------------------------------------------------------------------- /store/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/tslint.json -------------------------------------------------------------------------------- /store/webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /store/webpack/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/webpack/utils.js -------------------------------------------------------------------------------- /store/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/webpack/webpack.common.js -------------------------------------------------------------------------------- /store/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/webpack/webpack.dev.js -------------------------------------------------------------------------------- /store/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/store/webpack/webpack.prod.js -------------------------------------------------------------------------------- /xlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/xlw -------------------------------------------------------------------------------- /xlw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebialabs/e-commerce-microservice/HEAD/xlw.bat --------------------------------------------------------------------------------