├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .husky └── pre-commit ├── .jhipster ├── BankAccount.json ├── Label.json └── Operation.json ├── .lintstagedrc.cjs ├── .mvn ├── jvm.config └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .prettierignore ├── .prettierrc ├── .yo-rc.json ├── LICENSE.txt ├── README.md ├── angular.json ├── checkstyle.xml ├── cypress-audits.config.ts ├── cypress.config.ts ├── eslint.config.ts ├── jest.conf.js ├── mvnw ├── mvnw.cmd ├── ngsw-config.json ├── npmw ├── npmw.cmd ├── package.json ├── pom.xml ├── sonar-project.properties ├── src ├── main │ ├── docker │ │ ├── app.yml │ │ ├── config │ │ │ └── mysql │ │ │ │ └── my.cnf │ │ ├── elasticsearch.yml │ │ ├── grafana │ │ │ └── provisioning │ │ │ │ ├── dashboards │ │ │ │ ├── JVM.json │ │ │ │ └── dashboard.yml │ │ │ │ └── datasources │ │ │ │ └── datasource.yml │ │ ├── jhipster-control-center.yml │ │ ├── jib │ │ │ └── entrypoint.sh │ │ ├── monitoring.yml │ │ ├── mysql.yml │ │ ├── prometheus │ │ │ └── prometheus.yml │ │ ├── services.yml │ │ └── sonar.yml │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── jhipster │ │ │ └── sample │ │ │ ├── ApplicationWebXml.java │ │ │ ├── GeneratedByJHipster.java │ │ │ ├── JhipsterElasticsearchSampleApplicationApp.java │ │ │ ├── aop │ │ │ └── logging │ │ │ │ ├── LoggingAspect.java │ │ │ │ └── package-info.java │ │ │ ├── config │ │ │ ├── ApplicationProperties.java │ │ │ ├── AsyncConfiguration.java │ │ │ ├── CRLFLogConverter.java │ │ │ ├── CacheConfiguration.java │ │ │ ├── Constants.java │ │ │ ├── DatabaseConfiguration.java │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ ├── ElasticsearchConfiguration.java │ │ │ ├── JacksonConfiguration.java │ │ │ ├── LiquibaseConfiguration.java │ │ │ ├── LoggingAspectConfiguration.java │ │ │ ├── LoggingConfiguration.java │ │ │ ├── SecurityConfiguration.java │ │ │ ├── SecurityJwtConfiguration.java │ │ │ ├── StaticResourcesWebConfiguration.java │ │ │ ├── WebConfigurer.java │ │ │ └── package-info.java │ │ │ ├── domain │ │ │ ├── AbstractAuditingEntity.java │ │ │ ├── Authority.java │ │ │ ├── BankAccount.java │ │ │ ├── Label.java │ │ │ ├── Operation.java │ │ │ ├── User.java │ │ │ └── package-info.java │ │ │ ├── management │ │ │ ├── SecurityMetersService.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── repository │ │ │ ├── AuthorityRepository.java │ │ │ ├── BankAccountRepository.java │ │ │ ├── LabelRepository.java │ │ │ ├── OperationRepository.java │ │ │ ├── OperationRepositoryWithBagRelationships.java │ │ │ ├── OperationRepositoryWithBagRelationshipsImpl.java │ │ │ ├── UserRepository.java │ │ │ ├── package-info.java │ │ │ └── search │ │ │ │ ├── BankAccountSearchRepository.java │ │ │ │ ├── LabelSearchRepository.java │ │ │ │ ├── OperationSearchRepository.java │ │ │ │ ├── UserSearchRepository.java │ │ │ │ └── package-info.java │ │ │ ├── security │ │ │ ├── AuthoritiesConstants.java │ │ │ ├── DomainUserDetailsService.java │ │ │ ├── SecurityUtils.java │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ ├── UserNotActivatedException.java │ │ │ └── package-info.java │ │ │ ├── service │ │ │ ├── EmailAlreadyUsedException.java │ │ │ ├── InvalidPasswordException.java │ │ │ ├── MailService.java │ │ │ ├── UserService.java │ │ │ ├── UsernameAlreadyUsedException.java │ │ │ ├── dto │ │ │ │ ├── AdminUserDTO.java │ │ │ │ ├── PasswordChangeDTO.java │ │ │ │ ├── UserDTO.java │ │ │ │ └── package-info.java │ │ │ ├── mapper │ │ │ │ ├── UserMapper.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ └── web │ │ │ ├── filter │ │ │ ├── SpaWebFilter.java │ │ │ └── package-info.java │ │ │ └── rest │ │ │ ├── AccountResource.java │ │ │ ├── AuthenticateController.java │ │ │ ├── AuthorityResource.java │ │ │ ├── BankAccountResource.java │ │ │ ├── LabelResource.java │ │ │ ├── OperationResource.java │ │ │ ├── PublicUserResource.java │ │ │ ├── UserResource.java │ │ │ ├── errors │ │ │ ├── BadRequestAlertException.java │ │ │ ├── ElasticsearchExceptionMapper.java │ │ │ ├── EmailAlreadyUsedException.java │ │ │ ├── ErrorConstants.java │ │ │ ├── ExceptionTranslator.java │ │ │ ├── FieldErrorVM.java │ │ │ ├── InvalidPasswordException.java │ │ │ ├── LoginAlreadyUsedException.java │ │ │ ├── QuerySyntaxException.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── vm │ │ │ ├── KeyAndPasswordVM.java │ │ │ ├── LoginVM.java │ │ │ ├── ManagedUserVM.java │ │ │ └── package-info.java │ ├── resources │ │ ├── .h2.server.properties │ │ ├── banner.txt │ │ ├── config │ │ │ ├── application-dev.yml │ │ │ ├── application-prod.yml │ │ │ ├── application-tls.yml │ │ │ ├── application.yml │ │ │ ├── liquibase │ │ │ │ ├── changelog │ │ │ │ │ ├── 00000000000000_initial_schema.xml │ │ │ │ │ ├── 20150805124838_added_entity_BankAccount.xml │ │ │ │ │ ├── 20150805124838_added_entity_constraints_BankAccount.xml │ │ │ │ │ ├── 20150805124936_added_entity_Label.xml │ │ │ │ │ ├── 20150805125054_added_entity_Operation.xml │ │ │ │ │ └── 20150805125054_added_entity_constraints_Operation.xml │ │ │ │ ├── data │ │ │ │ │ ├── authority.csv │ │ │ │ │ ├── user.csv │ │ │ │ │ └── user_authority.csv │ │ │ │ ├── fake-data │ │ │ │ │ ├── bank_account.csv │ │ │ │ │ ├── label.csv │ │ │ │ │ └── operation.csv │ │ │ │ └── master.xml │ │ │ └── tls │ │ │ │ └── keystore.p12 │ │ ├── i18n │ │ │ ├── messages.properties │ │ │ └── messages_en.properties │ │ ├── logback-spring.xml │ │ └── templates │ │ │ ├── error.html │ │ │ └── mail │ │ │ ├── activationEmail.html │ │ │ ├── creationEmail.html │ │ │ └── passwordResetEmail.html │ └── webapp │ │ ├── 404.html │ │ ├── WEB-INF │ │ └── web.xml │ │ ├── app │ │ ├── account │ │ │ ├── account.route.ts │ │ │ ├── activate │ │ │ │ ├── activate.html │ │ │ │ ├── activate.route.ts │ │ │ │ ├── activate.service.spec.ts │ │ │ │ ├── activate.service.ts │ │ │ │ ├── activate.spec.ts │ │ │ │ └── activate.ts │ │ │ ├── password-reset │ │ │ │ ├── finish │ │ │ │ │ ├── password-reset-finish.html │ │ │ │ │ ├── password-reset-finish.route.ts │ │ │ │ │ ├── password-reset-finish.service.spec.ts │ │ │ │ │ ├── password-reset-finish.service.ts │ │ │ │ │ ├── password-reset-finish.spec.ts │ │ │ │ │ └── password-reset-finish.ts │ │ │ │ └── init │ │ │ │ │ ├── password-reset-init.html │ │ │ │ │ ├── password-reset-init.route.ts │ │ │ │ │ ├── password-reset-init.service.spec.ts │ │ │ │ │ ├── password-reset-init.service.ts │ │ │ │ │ ├── password-reset-init.spec.ts │ │ │ │ │ └── password-reset-init.ts │ │ │ ├── password │ │ │ │ ├── password-strength-bar │ │ │ │ │ ├── password-strength-bar.html │ │ │ │ │ ├── password-strength-bar.scss │ │ │ │ │ ├── password-strength-bar.spec.ts │ │ │ │ │ └── password-strength-bar.ts │ │ │ │ ├── password.html │ │ │ │ ├── password.route.ts │ │ │ │ ├── password.service.spec.ts │ │ │ │ ├── password.service.ts │ │ │ │ ├── password.spec.ts │ │ │ │ └── password.ts │ │ │ ├── register │ │ │ │ ├── register.html │ │ │ │ ├── register.model.ts │ │ │ │ ├── register.route.ts │ │ │ │ ├── register.service.spec.ts │ │ │ │ ├── register.service.ts │ │ │ │ ├── register.spec.ts │ │ │ │ └── register.ts │ │ │ └── settings │ │ │ │ ├── settings.html │ │ │ │ ├── settings.route.ts │ │ │ │ ├── settings.spec.ts │ │ │ │ └── settings.ts │ │ ├── admin │ │ │ ├── admin.routes.ts │ │ │ ├── configuration │ │ │ │ ├── configuration.html │ │ │ │ ├── configuration.model.ts │ │ │ │ ├── configuration.service.spec.ts │ │ │ │ ├── configuration.service.ts │ │ │ │ ├── configuration.spec.ts │ │ │ │ └── configuration.ts │ │ │ ├── docs │ │ │ │ ├── docs.html │ │ │ │ ├── docs.scss │ │ │ │ └── docs.ts │ │ │ ├── health │ │ │ │ ├── health.html │ │ │ │ ├── health.model.ts │ │ │ │ ├── health.service.spec.ts │ │ │ │ ├── health.service.ts │ │ │ │ ├── health.spec.ts │ │ │ │ ├── health.ts │ │ │ │ └── modal │ │ │ │ │ ├── health-modal.html │ │ │ │ │ ├── health-modal.spec.ts │ │ │ │ │ └── health-modal.ts │ │ │ ├── logs │ │ │ │ ├── log.model.ts │ │ │ │ ├── logs.html │ │ │ │ ├── logs.service.spec.ts │ │ │ │ ├── logs.service.ts │ │ │ │ ├── logs.spec.ts │ │ │ │ └── logs.ts │ │ │ ├── metrics │ │ │ │ ├── blocks │ │ │ │ │ ├── jvm-memory │ │ │ │ │ │ ├── jvm-memory.html │ │ │ │ │ │ └── jvm-memory.ts │ │ │ │ │ ├── jvm-threads │ │ │ │ │ │ ├── jvm-threads.html │ │ │ │ │ │ └── jvm-threads.ts │ │ │ │ │ ├── metrics-cache │ │ │ │ │ │ ├── metrics-cache.html │ │ │ │ │ │ └── metrics-cache.ts │ │ │ │ │ ├── metrics-datasource │ │ │ │ │ │ ├── metrics-datasource.html │ │ │ │ │ │ └── metrics-datasource.ts │ │ │ │ │ ├── metrics-endpoints-requests │ │ │ │ │ │ ├── metrics-endpoints-requests.html │ │ │ │ │ │ └── metrics-endpoints-requests.ts │ │ │ │ │ ├── metrics-garbagecollector │ │ │ │ │ │ ├── metrics-garbagecollector.html │ │ │ │ │ │ └── metrics-garbagecollector.ts │ │ │ │ │ ├── metrics-modal-threads │ │ │ │ │ │ ├── metrics-modal-threads.html │ │ │ │ │ │ ├── metrics-modal-threads.spec.ts │ │ │ │ │ │ └── metrics-modal-threads.ts │ │ │ │ │ ├── metrics-request │ │ │ │ │ │ ├── metrics-request.html │ │ │ │ │ │ └── metrics-request.ts │ │ │ │ │ └── metrics-system │ │ │ │ │ │ ├── metrics-system.html │ │ │ │ │ │ └── metrics-system.ts │ │ │ │ ├── metrics.html │ │ │ │ ├── metrics.model.ts │ │ │ │ ├── metrics.service.spec.ts │ │ │ │ ├── metrics.service.ts │ │ │ │ ├── metrics.spec.ts │ │ │ │ └── metrics.ts │ │ │ └── user-management │ │ │ │ ├── delete │ │ │ │ ├── user-management-delete-dialog.html │ │ │ │ ├── user-management-delete-dialog.spec.ts │ │ │ │ └── user-management-delete-dialog.ts │ │ │ │ ├── detail │ │ │ │ ├── user-management-detail.html │ │ │ │ ├── user-management-detail.spec.ts │ │ │ │ └── user-management-detail.ts │ │ │ │ ├── list │ │ │ │ ├── user-management.html │ │ │ │ ├── user-management.spec.ts │ │ │ │ └── user-management.ts │ │ │ │ ├── service │ │ │ │ ├── user-management.service.spec.ts │ │ │ │ └── user-management.service.ts │ │ │ │ ├── update │ │ │ │ ├── user-management-update.html │ │ │ │ ├── user-management-update.spec.ts │ │ │ │ └── user-management-update.ts │ │ │ │ ├── user-management.model.ts │ │ │ │ └── user-management.route.ts │ │ ├── app-page-title-strategy.ts │ │ ├── app.config.ts │ │ ├── app.routes.ts │ │ ├── app.ts │ │ ├── config │ │ │ ├── authority.constants.ts │ │ │ ├── datepicker-adapter.ts │ │ │ ├── dayjs.ts │ │ │ ├── error.constants.ts │ │ │ ├── font-awesome-icons.ts │ │ │ ├── input.constants.ts │ │ │ ├── language.constants.ts │ │ │ ├── navigation.constants.ts │ │ │ ├── pagination.constants.ts │ │ │ ├── translation.config.ts │ │ │ └── uib-pagination.config.ts │ │ ├── core │ │ │ ├── auth │ │ │ │ ├── account.model.ts │ │ │ │ ├── account.service.spec.ts │ │ │ │ ├── account.service.ts │ │ │ │ ├── auth-jwt.service.spec.ts │ │ │ │ ├── auth-jwt.service.ts │ │ │ │ ├── state-storage.service.ts │ │ │ │ └── user-route-access.service.ts │ │ │ ├── config │ │ │ │ ├── application-config.service.spec.ts │ │ │ │ └── application-config.service.ts │ │ │ ├── interceptor │ │ │ │ ├── auth-expired.interceptor.ts │ │ │ │ ├── auth.interceptor.ts │ │ │ │ ├── error-handler.interceptor.ts │ │ │ │ ├── index.ts │ │ │ │ └── notification.interceptor.ts │ │ │ ├── request │ │ │ │ ├── request-util.ts │ │ │ │ └── request.model.ts │ │ │ └── util │ │ │ │ ├── alert.service.spec.ts │ │ │ │ ├── alert.service.ts │ │ │ │ ├── data-util.service.spec.ts │ │ │ │ ├── data-util.service.ts │ │ │ │ ├── event-manager.service.spec.ts │ │ │ │ ├── event-manager.service.ts │ │ │ │ ├── operators.spec.ts │ │ │ │ ├── operators.ts │ │ │ │ ├── parse-links.service.spec.ts │ │ │ │ └── parse-links.service.ts │ │ ├── entities │ │ │ ├── admin │ │ │ │ └── authority │ │ │ │ │ ├── authority.model.ts │ │ │ │ │ ├── authority.routes.ts │ │ │ │ │ ├── authority.test-samples.ts │ │ │ │ │ ├── delete │ │ │ │ │ ├── authority-delete-dialog.html │ │ │ │ │ ├── authority-delete-dialog.spec.ts │ │ │ │ │ └── authority-delete-dialog.ts │ │ │ │ │ ├── detail │ │ │ │ │ ├── authority-detail.html │ │ │ │ │ ├── authority-detail.spec.ts │ │ │ │ │ └── authority-detail.ts │ │ │ │ │ ├── list │ │ │ │ │ ├── authority.html │ │ │ │ │ ├── authority.spec.ts │ │ │ │ │ └── authority.ts │ │ │ │ │ ├── route │ │ │ │ │ ├── authority-routing-resolve.service.spec.ts │ │ │ │ │ └── authority-routing-resolve.service.ts │ │ │ │ │ ├── service │ │ │ │ │ ├── authority.service.spec.ts │ │ │ │ │ └── authority.service.ts │ │ │ │ │ └── update │ │ │ │ │ ├── authority-form.service.spec.ts │ │ │ │ │ ├── authority-form.service.ts │ │ │ │ │ ├── authority-update.html │ │ │ │ │ ├── authority-update.spec.ts │ │ │ │ │ └── authority-update.ts │ │ │ ├── bank-account │ │ │ │ ├── bank-account.model.ts │ │ │ │ ├── bank-account.routes.ts │ │ │ │ ├── bank-account.test-samples.ts │ │ │ │ ├── delete │ │ │ │ │ ├── bank-account-delete-dialog.html │ │ │ │ │ ├── bank-account-delete-dialog.spec.ts │ │ │ │ │ └── bank-account-delete-dialog.ts │ │ │ │ ├── detail │ │ │ │ │ ├── bank-account-detail.html │ │ │ │ │ ├── bank-account-detail.spec.ts │ │ │ │ │ └── bank-account-detail.ts │ │ │ │ ├── list │ │ │ │ │ ├── bank-account.html │ │ │ │ │ ├── bank-account.spec.ts │ │ │ │ │ └── bank-account.ts │ │ │ │ ├── route │ │ │ │ │ ├── bank-account-routing-resolve.service.spec.ts │ │ │ │ │ └── bank-account-routing-resolve.service.ts │ │ │ │ ├── service │ │ │ │ │ ├── bank-account.service.spec.ts │ │ │ │ │ └── bank-account.service.ts │ │ │ │ └── update │ │ │ │ │ ├── bank-account-form.service.spec.ts │ │ │ │ │ ├── bank-account-form.service.ts │ │ │ │ │ ├── bank-account-update.html │ │ │ │ │ ├── bank-account-update.spec.ts │ │ │ │ │ └── bank-account-update.ts │ │ │ ├── entity.routes.ts │ │ │ ├── label │ │ │ │ ├── delete │ │ │ │ │ ├── label-delete-dialog.html │ │ │ │ │ ├── label-delete-dialog.spec.ts │ │ │ │ │ └── label-delete-dialog.ts │ │ │ │ ├── detail │ │ │ │ │ ├── label-detail.html │ │ │ │ │ ├── label-detail.spec.ts │ │ │ │ │ └── label-detail.ts │ │ │ │ ├── label.model.ts │ │ │ │ ├── label.routes.ts │ │ │ │ ├── label.test-samples.ts │ │ │ │ ├── list │ │ │ │ │ ├── label.html │ │ │ │ │ ├── label.spec.ts │ │ │ │ │ └── label.ts │ │ │ │ ├── route │ │ │ │ │ ├── label-routing-resolve.service.spec.ts │ │ │ │ │ └── label-routing-resolve.service.ts │ │ │ │ ├── service │ │ │ │ │ ├── label.service.spec.ts │ │ │ │ │ └── label.service.ts │ │ │ │ └── update │ │ │ │ │ ├── label-form.service.spec.ts │ │ │ │ │ ├── label-form.service.ts │ │ │ │ │ ├── label-update.html │ │ │ │ │ ├── label-update.spec.ts │ │ │ │ │ └── label-update.ts │ │ │ ├── operation │ │ │ │ ├── delete │ │ │ │ │ ├── operation-delete-dialog.html │ │ │ │ │ ├── operation-delete-dialog.spec.ts │ │ │ │ │ └── operation-delete-dialog.ts │ │ │ │ ├── detail │ │ │ │ │ ├── operation-detail.html │ │ │ │ │ ├── operation-detail.spec.ts │ │ │ │ │ └── operation-detail.ts │ │ │ │ ├── list │ │ │ │ │ ├── operation.html │ │ │ │ │ ├── operation.spec.ts │ │ │ │ │ └── operation.ts │ │ │ │ ├── operation.model.ts │ │ │ │ ├── operation.routes.ts │ │ │ │ ├── operation.test-samples.ts │ │ │ │ ├── route │ │ │ │ │ ├── operation-routing-resolve.service.spec.ts │ │ │ │ │ └── operation-routing-resolve.service.ts │ │ │ │ ├── service │ │ │ │ │ ├── operation.service.spec.ts │ │ │ │ │ └── operation.service.ts │ │ │ │ └── update │ │ │ │ │ ├── operation-form.service.spec.ts │ │ │ │ │ ├── operation-form.service.ts │ │ │ │ │ ├── operation-update.html │ │ │ │ │ ├── operation-update.spec.ts │ │ │ │ │ └── operation-update.ts │ │ │ └── user │ │ │ │ ├── service │ │ │ │ ├── user.service.spec.ts │ │ │ │ └── user.service.ts │ │ │ │ ├── user.model.ts │ │ │ │ └── user.test-samples.ts │ │ ├── home │ │ │ ├── home.html │ │ │ ├── home.scss │ │ │ ├── home.spec.ts │ │ │ └── home.ts │ │ ├── layouts │ │ │ ├── error │ │ │ │ ├── error.html │ │ │ │ ├── error.route.ts │ │ │ │ └── error.ts │ │ │ ├── footer │ │ │ │ ├── footer.html │ │ │ │ └── footer.ts │ │ │ ├── main │ │ │ │ ├── main.html │ │ │ │ ├── main.spec.ts │ │ │ │ └── main.ts │ │ │ ├── navbar │ │ │ │ ├── active-menu.directive.ts │ │ │ │ ├── navbar-item.model.d.ts │ │ │ │ ├── navbar.html │ │ │ │ ├── navbar.scss │ │ │ │ ├── navbar.spec.ts │ │ │ │ └── navbar.ts │ │ │ └── profiles │ │ │ │ ├── page-ribbon.scss │ │ │ │ ├── page-ribbon.spec.ts │ │ │ │ ├── page-ribbon.ts │ │ │ │ ├── profile-info.model.ts │ │ │ │ └── profile.service.ts │ │ ├── login │ │ │ ├── login.html │ │ │ ├── login.model.ts │ │ │ ├── login.service.ts │ │ │ ├── login.spec.ts │ │ │ └── login.ts │ │ └── shared │ │ │ ├── alert │ │ │ ├── alert-error.html │ │ │ ├── alert-error.model.ts │ │ │ ├── alert-error.spec.ts │ │ │ ├── alert-error.ts │ │ │ ├── alert.html │ │ │ ├── alert.spec.ts │ │ │ └── alert.ts │ │ │ ├── auth │ │ │ ├── has-any-authority.directive.spec.ts │ │ │ └── has-any-authority.directive.ts │ │ │ ├── date │ │ │ ├── duration.pipe.ts │ │ │ ├── format-medium-date.pipe.spec.ts │ │ │ ├── format-medium-date.pipe.ts │ │ │ ├── format-medium-datetime.pipe.spec.ts │ │ │ ├── format-medium-datetime.pipe.ts │ │ │ └── index.ts │ │ │ ├── filter │ │ │ ├── filter.html │ │ │ ├── filter.model.spec.ts │ │ │ ├── filter.model.ts │ │ │ ├── filter.ts │ │ │ └── index.ts │ │ │ ├── language │ │ │ ├── find-language-from-key.pipe.ts │ │ │ ├── index.ts │ │ │ ├── translate.directive.spec.ts │ │ │ ├── translate.directive.ts │ │ │ └── translation.module.ts │ │ │ ├── pagination │ │ │ ├── index.ts │ │ │ ├── item-count.spec.ts │ │ │ └── item-count.ts │ │ │ ├── shared.module.ts │ │ │ └── sort │ │ │ ├── index.ts │ │ │ ├── sort-by.directive.spec.ts │ │ │ ├── sort-by.directive.ts │ │ │ ├── sort-state.ts │ │ │ ├── sort.directive.spec.ts │ │ │ ├── sort.directive.ts │ │ │ ├── sort.service.spec.ts │ │ │ └── sort.service.ts │ │ ├── bootstrap.ts │ │ ├── content │ │ ├── css │ │ │ └── loading.css │ │ ├── images │ │ │ ├── jhipster_family_member_0.svg │ │ │ ├── jhipster_family_member_0_head-192.png │ │ │ ├── jhipster_family_member_0_head-256.png │ │ │ ├── jhipster_family_member_0_head-384.png │ │ │ ├── jhipster_family_member_0_head-512.png │ │ │ ├── jhipster_family_member_1.svg │ │ │ ├── jhipster_family_member_1_head-192.png │ │ │ ├── jhipster_family_member_1_head-256.png │ │ │ ├── jhipster_family_member_1_head-384.png │ │ │ ├── jhipster_family_member_1_head-512.png │ │ │ ├── jhipster_family_member_2.svg │ │ │ ├── jhipster_family_member_2_head-192.png │ │ │ ├── jhipster_family_member_2_head-256.png │ │ │ ├── jhipster_family_member_2_head-384.png │ │ │ ├── jhipster_family_member_2_head-512.png │ │ │ ├── jhipster_family_member_3.svg │ │ │ ├── jhipster_family_member_3_head-192.png │ │ │ ├── jhipster_family_member_3_head-256.png │ │ │ ├── jhipster_family_member_3_head-384.png │ │ │ ├── jhipster_family_member_3_head-512.png │ │ │ └── logo-jhipster.png │ │ └── scss │ │ │ ├── _bootstrap-variables.scss │ │ │ ├── global.scss │ │ │ └── vendor.scss │ │ ├── declarations.d.ts │ │ ├── environments │ │ ├── environment.development.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── i18n │ │ └── en │ │ │ ├── activate.json │ │ │ ├── adminAuthority.json │ │ │ ├── bankAccount.json │ │ │ ├── configuration.json │ │ │ ├── error.json │ │ │ ├── global.json │ │ │ ├── health.json │ │ │ ├── home.json │ │ │ ├── label.json │ │ │ ├── login.json │ │ │ ├── logs.json │ │ │ ├── metrics.json │ │ │ ├── operation.json │ │ │ ├── password.json │ │ │ ├── register.json │ │ │ ├── reset.json │ │ │ ├── sessions.json │ │ │ ├── settings.json │ │ │ └── user-management.json │ │ ├── index.html │ │ ├── main.ts │ │ ├── manifest.webapp │ │ ├── robots.txt │ │ └── swagger-ui │ │ └── index.html └── test │ ├── gatling │ └── conf │ │ ├── gatling.conf │ │ └── logback.xml │ ├── java │ ├── gatling │ │ └── simulations │ │ │ ├── BankAccountGatlingTest.java │ │ │ ├── LabelGatlingTest.java │ │ │ └── OperationGatlingTest.java │ └── io │ │ └── github │ │ └── jhipster │ │ └── sample │ │ ├── IntegrationTest.java │ │ ├── TechnicalStructureTest.java │ │ ├── config │ │ ├── AsyncSyncConfiguration.java │ │ ├── CRLFLogConverterTest.java │ │ ├── ElasticsearchTestConfiguration.java │ │ ├── ElasticsearchTestContainer.java │ │ ├── EmbeddedElasticsearch.java │ │ ├── EmbeddedSQL.java │ │ ├── MysqlTestContainer.java │ │ ├── SpringBootTestClassOrderer.java │ │ ├── SqlTestContainer.java │ │ ├── SqlTestContainersSpringContextCustomizerFactory.java │ │ ├── StaticResourcesWebConfigurerTest.java │ │ ├── TestContainersSpringContextCustomizerFactory.java │ │ ├── WebConfigurerTest.java │ │ ├── WebConfigurerTestController.java │ │ └── timezone │ │ │ └── HibernateTimeZoneIT.java │ │ ├── domain │ │ ├── AssertUtils.java │ │ ├── AuthorityAsserts.java │ │ ├── AuthorityTest.java │ │ ├── AuthorityTestSamples.java │ │ ├── BankAccountAsserts.java │ │ ├── BankAccountTest.java │ │ ├── BankAccountTestSamples.java │ │ ├── LabelAsserts.java │ │ ├── LabelTest.java │ │ ├── LabelTestSamples.java │ │ ├── OperationAsserts.java │ │ ├── OperationTest.java │ │ └── OperationTestSamples.java │ │ ├── management │ │ └── SecurityMetersServiceTests.java │ │ ├── repository │ │ └── timezone │ │ │ ├── DateTimeWrapper.java │ │ │ └── DateTimeWrapperRepository.java │ │ ├── security │ │ ├── DomainUserDetailsServiceIT.java │ │ ├── SecurityUtilsUnitTest.java │ │ └── jwt │ │ │ ├── AuthenticationIntegrationTest.java │ │ │ ├── JwtAuthenticationTestUtils.java │ │ │ ├── TokenAuthenticationIT.java │ │ │ └── TokenAuthenticationSecurityMetersIT.java │ │ ├── service │ │ ├── MailServiceIT.java │ │ ├── UserServiceIT.java │ │ └── mapper │ │ │ └── UserMapperTest.java │ │ └── web │ │ ├── filter │ │ └── SpaWebFilterIT.java │ │ └── rest │ │ ├── AccountResourceIT.java │ │ ├── AuthenticateControllerIT.java │ │ ├── AuthorityResourceIT.java │ │ ├── BankAccountResourceIT.java │ │ ├── LabelResourceIT.java │ │ ├── OperationResourceIT.java │ │ ├── PublicUserResourceIT.java │ │ ├── TestUtil.java │ │ ├── UserResourceIT.java │ │ ├── WithUnauthenticatedMockUser.java │ │ └── errors │ │ ├── ElasticsearchExceptionMapperTest.java │ │ ├── ExceptionTranslatorIT.java │ │ └── ExceptionTranslatorTestController.java │ ├── javascript │ └── cypress │ │ ├── e2e │ │ ├── account │ │ │ ├── login-page.cy.ts │ │ │ ├── logout.cy.ts │ │ │ ├── password-page.cy.ts │ │ │ ├── register-page.cy.ts │ │ │ ├── reset-password-page.cy.ts │ │ │ └── settings-page.cy.ts │ │ ├── administration │ │ │ └── administration.cy.ts │ │ ├── entity │ │ │ ├── authority.cy.ts │ │ │ ├── bank-account.cy.ts │ │ │ ├── label.cy.ts │ │ │ └── operation.cy.ts │ │ └── lighthouse.audits.ts │ │ ├── fixtures │ │ └── integration-test.png │ │ ├── plugins │ │ └── index.ts │ │ ├── support │ │ ├── account.ts │ │ ├── commands.ts │ │ ├── entity.ts │ │ ├── index.ts │ │ ├── management.ts │ │ └── navbar.ts │ │ └── tsconfig.json │ └── resources │ ├── META-INF │ └── spring.factories │ ├── conf │ └── mysql │ │ └── my.cnf │ ├── config │ ├── application-testdev.yml │ ├── application-testprod.yml │ └── application.yml │ ├── i18n │ └── messages_en.properties │ ├── junit-platform.properties │ ├── logback.xml │ └── templates │ └── mail │ ├── activationEmail.html │ ├── creationEmail.html │ ├── passwordResetEmail.html │ └── testEmail.html ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── webpack ├── environment.js ├── logo-jhipster.png ├── package.json ├── proxy.conf.js └── webpack.custom.js /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.jhipster/BankAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/.jhipster/BankAccount.json -------------------------------------------------------------------------------- /.jhipster/Label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/.jhipster/Label.json -------------------------------------------------------------------------------- /.jhipster/Operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/.jhipster/Operation.json -------------------------------------------------------------------------------- /.lintstagedrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/.lintstagedrc.cjs -------------------------------------------------------------------------------- /.mvn/jvm.config: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/angular.json -------------------------------------------------------------------------------- /checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/checkstyle.xml -------------------------------------------------------------------------------- /cypress-audits.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/cypress-audits.config.ts -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/eslint.config.ts -------------------------------------------------------------------------------- /jest.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/jest.conf.js -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/ngsw-config.json -------------------------------------------------------------------------------- /npmw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/npmw -------------------------------------------------------------------------------- /npmw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/npmw.cmd -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/package.json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/pom.xml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/docker/app.yml -------------------------------------------------------------------------------- /src/main/docker/config/mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/docker/config/mysql/my.cnf -------------------------------------------------------------------------------- /src/main/docker/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/docker/elasticsearch.yml -------------------------------------------------------------------------------- /src/main/docker/grafana/provisioning/dashboards/JVM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/docker/grafana/provisioning/dashboards/JVM.json -------------------------------------------------------------------------------- /src/main/docker/grafana/provisioning/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/docker/grafana/provisioning/dashboards/dashboard.yml -------------------------------------------------------------------------------- /src/main/docker/grafana/provisioning/datasources/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/docker/grafana/provisioning/datasources/datasource.yml -------------------------------------------------------------------------------- /src/main/docker/jhipster-control-center.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/docker/jhipster-control-center.yml -------------------------------------------------------------------------------- /src/main/docker/jib/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/docker/jib/entrypoint.sh -------------------------------------------------------------------------------- /src/main/docker/monitoring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/docker/monitoring.yml -------------------------------------------------------------------------------- /src/main/docker/mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/docker/mysql.yml -------------------------------------------------------------------------------- /src/main/docker/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/docker/prometheus/prometheus.yml -------------------------------------------------------------------------------- /src/main/docker/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/docker/services.yml -------------------------------------------------------------------------------- /src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/ApplicationWebXml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/ApplicationWebXml.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/GeneratedByJHipster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/GeneratedByJHipster.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/JhipsterElasticsearchSampleApplicationApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/JhipsterElasticsearchSampleApplicationApp.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/aop/logging/LoggingAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/aop/logging/LoggingAspect.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/aop/logging/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/aop/logging/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/ApplicationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/ApplicationProperties.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/AsyncConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/AsyncConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/CRLFLogConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/CRLFLogConverter.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/CacheConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/CacheConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/Constants.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/DatabaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/DatabaseConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/DateTimeFormatConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/DateTimeFormatConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/ElasticsearchConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/ElasticsearchConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/JacksonConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/JacksonConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/LiquibaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/LiquibaseConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/LoggingAspectConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/LoggingAspectConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/LoggingConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/LoggingConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/SecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/SecurityConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/SecurityJwtConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/SecurityJwtConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/StaticResourcesWebConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/StaticResourcesWebConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/WebConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/WebConfigurer.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/config/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/config/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/domain/AbstractAuditingEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/domain/AbstractAuditingEntity.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/domain/Authority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/domain/Authority.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/domain/BankAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/domain/BankAccount.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/domain/Label.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/domain/Label.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/domain/Operation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/domain/Operation.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/domain/User.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/domain/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/domain/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/management/SecurityMetersService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/management/SecurityMetersService.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/management/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/management/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Application root. 3 | */ 4 | package io.github.jhipster.sample; 5 | -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/AuthorityRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/repository/AuthorityRepository.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/BankAccountRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/repository/BankAccountRepository.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/LabelRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/repository/LabelRepository.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/OperationRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/repository/OperationRepository.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/OperationRepositoryWithBagRelationships.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/repository/OperationRepositoryWithBagRelationships.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/OperationRepositoryWithBagRelationshipsImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/repository/OperationRepositoryWithBagRelationshipsImpl.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/repository/UserRepository.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/repository/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/search/BankAccountSearchRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/repository/search/BankAccountSearchRepository.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/search/LabelSearchRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/repository/search/LabelSearchRepository.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/search/OperationSearchRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/repository/search/OperationSearchRepository.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/search/UserSearchRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/repository/search/UserSearchRepository.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/repository/search/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/repository/search/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/security/AuthoritiesConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/security/AuthoritiesConstants.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/security/DomainUserDetailsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/security/DomainUserDetailsService.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/security/SecurityUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/security/SecurityUtils.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/security/SpringSecurityAuditorAware.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/security/SpringSecurityAuditorAware.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/security/UserNotActivatedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/security/UserNotActivatedException.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/security/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/security/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/EmailAlreadyUsedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/service/EmailAlreadyUsedException.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/InvalidPasswordException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/service/InvalidPasswordException.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/MailService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/service/MailService.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/service/UserService.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/UsernameAlreadyUsedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/service/UsernameAlreadyUsedException.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/dto/AdminUserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/service/dto/AdminUserDTO.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/dto/PasswordChangeDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/service/dto/PasswordChangeDTO.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/dto/UserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/service/dto/UserDTO.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/dto/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/service/dto/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/service/mapper/UserMapper.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/mapper/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/service/mapper/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/service/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/service/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/filter/SpaWebFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/filter/SpaWebFilter.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/filter/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/filter/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/AccountResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/AccountResource.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/AuthenticateController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/AuthenticateController.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/AuthorityResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/AuthorityResource.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/BankAccountResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/BankAccountResource.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/LabelResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/LabelResource.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/OperationResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/OperationResource.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/PublicUserResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/PublicUserResource.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/UserResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/UserResource.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/errors/BadRequestAlertException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/errors/BadRequestAlertException.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/errors/ElasticsearchExceptionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/errors/ElasticsearchExceptionMapper.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/errors/EmailAlreadyUsedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/errors/EmailAlreadyUsedException.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/errors/ErrorConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/errors/ErrorConstants.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/errors/ExceptionTranslator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/errors/ExceptionTranslator.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/errors/FieldErrorVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/errors/FieldErrorVM.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/errors/InvalidPasswordException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/errors/InvalidPasswordException.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/errors/LoginAlreadyUsedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/errors/LoginAlreadyUsedException.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/errors/QuerySyntaxException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/errors/QuerySyntaxException.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/errors/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/errors/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/package-info.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/vm/KeyAndPasswordVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/vm/KeyAndPasswordVM.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/vm/LoginVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/vm/LoginVM.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/vm/ManagedUserVM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/vm/ManagedUserVM.java -------------------------------------------------------------------------------- /src/main/java/io/github/jhipster/sample/web/rest/vm/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/java/io/github/jhipster/sample/web/rest/vm/package-info.java -------------------------------------------------------------------------------- /src/main/resources/.h2.server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/.h2.server.properties -------------------------------------------------------------------------------- /src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/banner.txt -------------------------------------------------------------------------------- /src/main/resources/config/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/application-dev.yml -------------------------------------------------------------------------------- /src/main/resources/config/application-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/application-prod.yml -------------------------------------------------------------------------------- /src/main/resources/config/application-tls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/application-tls.yml -------------------------------------------------------------------------------- /src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/00000000000000_initial_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/liquibase/changelog/00000000000000_initial_schema.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/20150805124838_added_entity_BankAccount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/liquibase/changelog/20150805124838_added_entity_BankAccount.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/20150805124838_added_entity_constraints_BankAccount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/liquibase/changelog/20150805124838_added_entity_constraints_BankAccount.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/20150805124936_added_entity_Label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/liquibase/changelog/20150805124936_added_entity_Label.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/20150805125054_added_entity_Operation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/liquibase/changelog/20150805125054_added_entity_Operation.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/changelog/20150805125054_added_entity_constraints_Operation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/liquibase/changelog/20150805125054_added_entity_constraints_Operation.xml -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/data/authority.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/liquibase/data/authority.csv -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/data/user.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/liquibase/data/user.csv -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/data/user_authority.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/liquibase/data/user_authority.csv -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/fake-data/bank_account.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/liquibase/fake-data/bank_account.csv -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/fake-data/label.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/liquibase/fake-data/label.csv -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/fake-data/operation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/liquibase/fake-data/operation.csv -------------------------------------------------------------------------------- /src/main/resources/config/liquibase/master.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/liquibase/master.xml -------------------------------------------------------------------------------- /src/main/resources/config/tls/keystore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/config/tls/keystore.p12 -------------------------------------------------------------------------------- /src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/i18n/messages.properties -------------------------------------------------------------------------------- /src/main/resources/i18n/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/i18n/messages_en.properties -------------------------------------------------------------------------------- /src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /src/main/resources/templates/mail/activationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/templates/mail/activationEmail.html -------------------------------------------------------------------------------- /src/main/resources/templates/mail/creationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/templates/mail/creationEmail.html -------------------------------------------------------------------------------- /src/main/resources/templates/mail/passwordResetEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/resources/templates/mail/passwordResetEmail.html -------------------------------------------------------------------------------- /src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/404.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/app/account/account.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/account.route.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/activate/activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/activate/activate.html -------------------------------------------------------------------------------- /src/main/webapp/app/account/activate/activate.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/activate/activate.route.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/activate/activate.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/activate/activate.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/activate/activate.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/activate/activate.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/activate/activate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/activate/activate.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/activate/activate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/activate/activate.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password-reset/finish/password-reset-finish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password-reset/finish/password-reset-finish.html -------------------------------------------------------------------------------- /src/main/webapp/app/account/password-reset/finish/password-reset-finish.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password-reset/finish/password-reset-finish.route.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password-reset/finish/password-reset-finish.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password-reset/finish/password-reset-finish.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password-reset/finish/password-reset-finish.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password-reset/finish/password-reset-finish.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password-reset/finish/password-reset-finish.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password-reset/finish/password-reset-finish.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password-reset/finish/password-reset-finish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password-reset/finish/password-reset-finish.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password-reset/init/password-reset-init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password-reset/init/password-reset-init.html -------------------------------------------------------------------------------- /src/main/webapp/app/account/password-reset/init/password-reset-init.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password-reset/init/password-reset-init.route.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password-reset/init/password-reset-init.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password-reset/init/password-reset-init.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password-reset/init/password-reset-init.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password-reset/init/password-reset-init.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password-reset/init/password-reset-init.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password-reset/init/password-reset-init.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password-reset/init/password-reset-init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password-reset/init/password-reset-init.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password/password-strength-bar/password-strength-bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password/password-strength-bar/password-strength-bar.html -------------------------------------------------------------------------------- /src/main/webapp/app/account/password/password-strength-bar/password-strength-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password/password-strength-bar/password-strength-bar.scss -------------------------------------------------------------------------------- /src/main/webapp/app/account/password/password-strength-bar/password-strength-bar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password/password-strength-bar/password-strength-bar.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password/password-strength-bar/password-strength-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password/password-strength-bar/password-strength-bar.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password/password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password/password.html -------------------------------------------------------------------------------- /src/main/webapp/app/account/password/password.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password/password.route.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password/password.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password/password.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password/password.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password/password.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password/password.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password/password.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/password/password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/password/password.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/register/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/register/register.html -------------------------------------------------------------------------------- /src/main/webapp/app/account/register/register.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/register/register.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/register/register.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/register/register.route.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/register/register.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/register/register.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/register/register.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/register/register.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/register/register.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/register/register.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/register/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/register/register.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/settings/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/settings/settings.html -------------------------------------------------------------------------------- /src/main/webapp/app/account/settings/settings.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/settings/settings.route.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/settings/settings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/settings/settings.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/account/settings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/account/settings/settings.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/admin.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/admin.routes.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/configuration/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/configuration/configuration.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/configuration/configuration.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/configuration/configuration.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/configuration/configuration.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/configuration/configuration.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/configuration/configuration.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/configuration/configuration.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/configuration/configuration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/configuration/configuration.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/configuration/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/configuration/configuration.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/docs/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/docs/docs.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/docs/docs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/docs/docs.scss -------------------------------------------------------------------------------- /src/main/webapp/app/admin/docs/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/docs/docs.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/health.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/health/health.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/health.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/health/health.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/health.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/health/health.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/health.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/health/health.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/health.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/health/health.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/health/health.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/modal/health-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/health/modal/health-modal.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/modal/health-modal.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/health/modal/health-modal.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/health/modal/health-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/health/modal/health-modal.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/logs/log.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/logs/log.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/logs/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/logs/logs.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/logs/logs.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/logs/logs.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/logs/logs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/logs/logs.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/logs/logs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/logs/logs.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/logs/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/logs/logs.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/jvm-memory/jvm-memory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/jvm-memory/jvm-memory.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/jvm-memory/jvm-memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/jvm-memory/jvm-memory.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/jvm-threads/jvm-threads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/jvm-threads/jvm-threads.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/jvm-threads/jvm-threads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/jvm-threads/jvm-threads.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-cache/metrics-cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-cache/metrics-cache.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-cache/metrics-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-cache/metrics-cache.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-datasource/metrics-datasource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-datasource/metrics-datasource.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-datasource/metrics-datasource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-datasource/metrics-datasource.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-endpoints-requests/metrics-endpoints-requests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-endpoints-requests/metrics-endpoints-requests.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-endpoints-requests/metrics-endpoints-requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-endpoints-requests/metrics-endpoints-requests.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-garbagecollector/metrics-garbagecollector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-garbagecollector/metrics-garbagecollector.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-garbagecollector/metrics-garbagecollector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-garbagecollector/metrics-garbagecollector.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-modal-threads/metrics-modal-threads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-modal-threads/metrics-modal-threads.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-modal-threads/metrics-modal-threads.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-modal-threads/metrics-modal-threads.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-modal-threads/metrics-modal-threads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-modal-threads/metrics-modal-threads.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-request/metrics-request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-request/metrics-request.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-request/metrics-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-request/metrics-request.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-system/metrics-system.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-system/metrics-system.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/blocks/metrics-system/metrics-system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/blocks/metrics-system/metrics-system.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/metrics.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/metrics.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/metrics.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/metrics.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/metrics.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/metrics.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/metrics.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/metrics.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/metrics.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/metrics/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/metrics/metrics.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/delete/user-management-delete-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/delete/user-management-delete-dialog.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/delete/user-management-delete-dialog.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/delete/user-management-delete-dialog.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/delete/user-management-delete-dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/delete/user-management-delete-dialog.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/detail/user-management-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/detail/user-management-detail.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/detail/user-management-detail.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/detail/user-management-detail.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/detail/user-management-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/detail/user-management-detail.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/list/user-management.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/list/user-management.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/list/user-management.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/list/user-management.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/list/user-management.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/list/user-management.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/service/user-management.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/service/user-management.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/service/user-management.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/service/user-management.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/update/user-management-update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/update/user-management-update.html -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/update/user-management-update.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/update/user-management-update.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/update/user-management-update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/update/user-management-update.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/user-management.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/user-management.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/admin/user-management/user-management.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/admin/user-management/user-management.route.ts -------------------------------------------------------------------------------- /src/main/webapp/app/app-page-title-strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/app-page-title-strategy.ts -------------------------------------------------------------------------------- /src/main/webapp/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/app.config.ts -------------------------------------------------------------------------------- /src/main/webapp/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/app.routes.ts -------------------------------------------------------------------------------- /src/main/webapp/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/app.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/authority.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/config/authority.constants.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/datepicker-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/config/datepicker-adapter.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/dayjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/config/dayjs.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/error.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/config/error.constants.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/font-awesome-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/config/font-awesome-icons.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/input.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/config/input.constants.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/language.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/config/language.constants.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/navigation.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/config/navigation.constants.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/pagination.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/config/pagination.constants.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/translation.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/config/translation.config.ts -------------------------------------------------------------------------------- /src/main/webapp/app/config/uib-pagination.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/config/uib-pagination.config.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/auth/account.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/auth/account.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/auth/account.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/auth/account.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/auth/account.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/auth/account.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/auth/auth-jwt.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/auth/auth-jwt.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/auth/auth-jwt.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/auth/auth-jwt.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/auth/state-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/auth/state-storage.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/auth/user-route-access.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/auth/user-route-access.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/config/application-config.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/config/application-config.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/config/application-config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/config/application-config.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/interceptor/auth-expired.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/interceptor/auth-expired.interceptor.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/interceptor/auth.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/interceptor/auth.interceptor.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/interceptor/error-handler.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/interceptor/error-handler.interceptor.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/interceptor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/interceptor/index.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/interceptor/notification.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/interceptor/notification.interceptor.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/request/request-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/request/request-util.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/request/request.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/request/request.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/alert.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/util/alert.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/alert.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/util/alert.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/data-util.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/util/data-util.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/data-util.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/util/data-util.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/event-manager.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/util/event-manager.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/event-manager.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/util/event-manager.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/operators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/util/operators.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/operators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/util/operators.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/parse-links.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/util/parse-links.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/core/util/parse-links.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/core/util/parse-links.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/authority.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/authority.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/authority.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/authority.routes.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/authority.test-samples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/authority.test-samples.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/delete/authority-delete-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/delete/authority-delete-dialog.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/delete/authority-delete-dialog.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/delete/authority-delete-dialog.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/delete/authority-delete-dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/delete/authority-delete-dialog.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/detail/authority-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/detail/authority-detail.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/detail/authority-detail.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/detail/authority-detail.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/detail/authority-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/detail/authority-detail.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/list/authority.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/list/authority.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/list/authority.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/list/authority.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/list/authority.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/list/authority.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/route/authority-routing-resolve.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/route/authority-routing-resolve.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/route/authority-routing-resolve.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/route/authority-routing-resolve.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/service/authority.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/service/authority.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/service/authority.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/service/authority.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/update/authority-form.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/update/authority-form.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/update/authority-form.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/update/authority-form.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/update/authority-update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/update/authority-update.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/update/authority-update.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/update/authority-update.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/admin/authority/update/authority-update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/admin/authority/update/authority-update.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/bank-account.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/bank-account.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/bank-account.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/bank-account.routes.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/bank-account.test-samples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/bank-account.test-samples.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/delete/bank-account-delete-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/delete/bank-account-delete-dialog.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/delete/bank-account-delete-dialog.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/delete/bank-account-delete-dialog.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/delete/bank-account-delete-dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/delete/bank-account-delete-dialog.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/detail/bank-account-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/detail/bank-account-detail.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/detail/bank-account-detail.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/detail/bank-account-detail.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/detail/bank-account-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/detail/bank-account-detail.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/list/bank-account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/list/bank-account.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/list/bank-account.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/list/bank-account.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/list/bank-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/list/bank-account.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/route/bank-account-routing-resolve.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/route/bank-account-routing-resolve.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/route/bank-account-routing-resolve.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/route/bank-account-routing-resolve.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/service/bank-account.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/service/bank-account.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/service/bank-account.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/service/bank-account.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/update/bank-account-form.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/update/bank-account-form.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/update/bank-account-form.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/update/bank-account-form.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/update/bank-account-update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/update/bank-account-update.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/update/bank-account-update.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/update/bank-account-update.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/bank-account/update/bank-account-update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/bank-account/update/bank-account-update.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/entity.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/entity.routes.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/delete/label-delete-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/delete/label-delete-dialog.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/delete/label-delete-dialog.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/delete/label-delete-dialog.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/delete/label-delete-dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/delete/label-delete-dialog.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/detail/label-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/detail/label-detail.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/detail/label-detail.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/detail/label-detail.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/detail/label-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/detail/label-detail.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/label.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/label.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/label.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/label.routes.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/label.test-samples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/label.test-samples.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/list/label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/list/label.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/list/label.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/list/label.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/list/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/list/label.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/route/label-routing-resolve.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/route/label-routing-resolve.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/route/label-routing-resolve.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/route/label-routing-resolve.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/service/label.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/service/label.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/service/label.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/service/label.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/update/label-form.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/update/label-form.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/update/label-form.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/update/label-form.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/update/label-update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/update/label-update.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/update/label-update.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/update/label-update.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/label/update/label-update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/label/update/label-update.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/delete/operation-delete-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/delete/operation-delete-dialog.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/delete/operation-delete-dialog.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/delete/operation-delete-dialog.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/delete/operation-delete-dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/delete/operation-delete-dialog.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/detail/operation-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/detail/operation-detail.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/detail/operation-detail.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/detail/operation-detail.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/detail/operation-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/detail/operation-detail.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/list/operation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/list/operation.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/list/operation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/list/operation.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/list/operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/list/operation.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/operation.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/operation.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/operation.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/operation.routes.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/operation.test-samples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/operation.test-samples.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/route/operation-routing-resolve.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/route/operation-routing-resolve.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/route/operation-routing-resolve.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/route/operation-routing-resolve.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/service/operation.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/service/operation.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/service/operation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/service/operation.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/update/operation-form.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/update/operation-form.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/update/operation-form.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/update/operation-form.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/update/operation-update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/update/operation-update.html -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/update/operation-update.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/update/operation-update.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/operation/update/operation-update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/operation/update/operation-update.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/user/service/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/user/service/user.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/user/service/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/user/service/user.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/user/user.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/entities/user/user.test-samples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/entities/user/user.test-samples.ts -------------------------------------------------------------------------------- /src/main/webapp/app/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/home/home.html -------------------------------------------------------------------------------- /src/main/webapp/app/home/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/home/home.scss -------------------------------------------------------------------------------- /src/main/webapp/app/home/home.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/home/home.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/home/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/home/home.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/error/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/error/error.html -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/error/error.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/error/error.route.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/error/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/error/error.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/footer/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/footer/footer.html -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/footer/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/footer/footer.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/main/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/main/main.html -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/main/main.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/main/main.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/main/main.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/navbar/active-menu.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/navbar/active-menu.directive.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/navbar/navbar-item.model.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/navbar/navbar-item.model.d.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/navbar/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/navbar/navbar.html -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/navbar/navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/navbar/navbar.scss -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/navbar/navbar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/navbar/navbar.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/navbar/navbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/navbar/navbar.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/profiles/page-ribbon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/profiles/page-ribbon.scss -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/profiles/page-ribbon.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/profiles/page-ribbon.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/profiles/page-ribbon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/profiles/page-ribbon.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/profiles/profile-info.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/profiles/profile-info.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/layouts/profiles/profile.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/layouts/profiles/profile.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/login/login.html -------------------------------------------------------------------------------- /src/main/webapp/app/login/login.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/login/login.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/login/login.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/login/login.service.ts -------------------------------------------------------------------------------- /src/main/webapp/app/login/login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/login/login.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/login/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/login/login.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/alert/alert-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/alert/alert-error.html -------------------------------------------------------------------------------- /src/main/webapp/app/shared/alert/alert-error.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/alert/alert-error.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/alert/alert-error.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/alert/alert-error.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/alert/alert-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/alert/alert-error.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/alert/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/alert/alert.html -------------------------------------------------------------------------------- /src/main/webapp/app/shared/alert/alert.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/alert/alert.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/alert/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/alert/alert.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/auth/has-any-authority.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/auth/has-any-authority.directive.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/auth/has-any-authority.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/auth/has-any-authority.directive.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/date/duration.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/date/duration.pipe.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/date/format-medium-date.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/date/format-medium-date.pipe.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/date/format-medium-date.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/date/format-medium-date.pipe.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/date/format-medium-datetime.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/date/format-medium-datetime.pipe.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/date/format-medium-datetime.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/date/format-medium-datetime.pipe.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/date/index.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/filter/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/filter/filter.html -------------------------------------------------------------------------------- /src/main/webapp/app/shared/filter/filter.model.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/filter/filter.model.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/filter/filter.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/filter/filter.model.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/filter/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/filter/filter.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/filter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/filter/index.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/language/find-language-from-key.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/language/find-language-from-key.pipe.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/language/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/language/index.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/language/translate.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/language/translate.directive.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/language/translate.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/language/translate.directive.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/language/translation.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/language/translation.module.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/pagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/pagination/index.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/pagination/item-count.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/pagination/item-count.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/pagination/item-count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/pagination/item-count.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/sort/index.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/sort-by.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/sort/sort-by.directive.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/sort-by.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/sort/sort-by.directive.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/sort-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/sort/sort-state.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/sort.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/sort/sort.directive.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/sort.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/sort/sort.directive.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/sort.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/sort/sort.service.spec.ts -------------------------------------------------------------------------------- /src/main/webapp/app/shared/sort/sort.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/app/shared/sort/sort.service.ts -------------------------------------------------------------------------------- /src/main/webapp/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/bootstrap.ts -------------------------------------------------------------------------------- /src/main/webapp/content/css/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/css/loading.css -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_0.svg -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_0_head-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_0_head-192.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_0_head-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_0_head-256.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_0_head-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_0_head-384.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_0_head-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_0_head-512.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_1.svg -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_1_head-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_1_head-192.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_1_head-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_1_head-256.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_1_head-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_1_head-384.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_1_head-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_1_head-512.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_2.svg -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_2_head-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_2_head-192.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_2_head-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_2_head-256.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_2_head-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_2_head-384.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_2_head-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_2_head-512.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_3.svg -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_3_head-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_3_head-192.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_3_head-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_3_head-256.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_3_head-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_3_head-384.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/jhipster_family_member_3_head-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/jhipster_family_member_3_head-512.png -------------------------------------------------------------------------------- /src/main/webapp/content/images/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/images/logo-jhipster.png -------------------------------------------------------------------------------- /src/main/webapp/content/scss/_bootstrap-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/scss/_bootstrap-variables.scss -------------------------------------------------------------------------------- /src/main/webapp/content/scss/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/scss/global.scss -------------------------------------------------------------------------------- /src/main/webapp/content/scss/vendor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/content/scss/vendor.scss -------------------------------------------------------------------------------- /src/main/webapp/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/declarations.d.ts -------------------------------------------------------------------------------- /src/main/webapp/environments/environment.development.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | VERSION: 'DEV', 3 | DEBUG_INFO_ENABLED: true, 4 | }; 5 | -------------------------------------------------------------------------------- /src/main/webapp/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/environments/environment.ts -------------------------------------------------------------------------------- /src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/activate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/activate.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/adminAuthority.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/adminAuthority.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/bankAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/bankAccount.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/configuration.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/error.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/global.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/health.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/home.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/label.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/login.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/logs.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/metrics.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/operation.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/password.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/password.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/register.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/reset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/reset.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/sessions.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/settings.json -------------------------------------------------------------------------------- /src/main/webapp/i18n/en/user-management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/i18n/en/user-management.json -------------------------------------------------------------------------------- /src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/index.html -------------------------------------------------------------------------------- /src/main/webapp/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/main.ts -------------------------------------------------------------------------------- /src/main/webapp/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/manifest.webapp -------------------------------------------------------------------------------- /src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /src/main/webapp/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/main/webapp/swagger-ui/index.html -------------------------------------------------------------------------------- /src/test/gatling/conf/gatling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/gatling/conf/gatling.conf -------------------------------------------------------------------------------- /src/test/gatling/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/gatling/conf/logback.xml -------------------------------------------------------------------------------- /src/test/java/gatling/simulations/BankAccountGatlingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/gatling/simulations/BankAccountGatlingTest.java -------------------------------------------------------------------------------- /src/test/java/gatling/simulations/LabelGatlingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/gatling/simulations/LabelGatlingTest.java -------------------------------------------------------------------------------- /src/test/java/gatling/simulations/OperationGatlingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/gatling/simulations/OperationGatlingTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/IntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/IntegrationTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/TechnicalStructureTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/TechnicalStructureTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/AsyncSyncConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/config/AsyncSyncConfiguration.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/CRLFLogConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/config/CRLFLogConverterTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/ElasticsearchTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/config/ElasticsearchTestConfiguration.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/ElasticsearchTestContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/config/ElasticsearchTestContainer.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/EmbeddedElasticsearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/config/EmbeddedElasticsearch.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/EmbeddedSQL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/config/EmbeddedSQL.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/MysqlTestContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/config/MysqlTestContainer.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/SpringBootTestClassOrderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/config/SpringBootTestClassOrderer.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/SqlTestContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/config/SqlTestContainer.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/SqlTestContainersSpringContextCustomizerFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/config/SqlTestContainersSpringContextCustomizerFactory.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/StaticResourcesWebConfigurerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/config/StaticResourcesWebConfigurerTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/TestContainersSpringContextCustomizerFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/config/TestContainersSpringContextCustomizerFactory.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/WebConfigurerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/config/WebConfigurerTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/WebConfigurerTestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/config/WebConfigurerTestController.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/config/timezone/HibernateTimeZoneIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/config/timezone/HibernateTimeZoneIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/AssertUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/domain/AssertUtils.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/AuthorityAsserts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/domain/AuthorityAsserts.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/AuthorityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/domain/AuthorityTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/AuthorityTestSamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/domain/AuthorityTestSamples.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/BankAccountAsserts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/domain/BankAccountAsserts.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/BankAccountTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/domain/BankAccountTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/BankAccountTestSamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/domain/BankAccountTestSamples.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/LabelAsserts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/domain/LabelAsserts.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/LabelTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/domain/LabelTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/LabelTestSamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/domain/LabelTestSamples.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/OperationAsserts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/domain/OperationAsserts.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/OperationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/domain/OperationTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/domain/OperationTestSamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/domain/OperationTestSamples.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/management/SecurityMetersServiceTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/management/SecurityMetersServiceTests.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/repository/timezone/DateTimeWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/repository/timezone/DateTimeWrapper.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/repository/timezone/DateTimeWrapperRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/repository/timezone/DateTimeWrapperRepository.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/security/DomainUserDetailsServiceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/security/DomainUserDetailsServiceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/security/SecurityUtilsUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/security/SecurityUtilsUnitTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/security/jwt/AuthenticationIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/security/jwt/AuthenticationIntegrationTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/security/jwt/JwtAuthenticationTestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/security/jwt/JwtAuthenticationTestUtils.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/security/jwt/TokenAuthenticationIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/security/jwt/TokenAuthenticationIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/security/jwt/TokenAuthenticationSecurityMetersIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/security/jwt/TokenAuthenticationSecurityMetersIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/service/MailServiceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/service/MailServiceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/service/UserServiceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/service/UserServiceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/service/mapper/UserMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/service/mapper/UserMapperTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/filter/SpaWebFilterIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/web/filter/SpaWebFilterIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/AccountResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/web/rest/AccountResourceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/AuthenticateControllerIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/web/rest/AuthenticateControllerIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/AuthorityResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/web/rest/AuthorityResourceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/BankAccountResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/web/rest/BankAccountResourceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/LabelResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/web/rest/LabelResourceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/OperationResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/web/rest/OperationResourceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/PublicUserResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/web/rest/PublicUserResourceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/web/rest/TestUtil.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/UserResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/web/rest/UserResourceIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/WithUnauthenticatedMockUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/web/rest/WithUnauthenticatedMockUser.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/errors/ElasticsearchExceptionMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/web/rest/errors/ElasticsearchExceptionMapperTest.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/errors/ExceptionTranslatorIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/web/rest/errors/ExceptionTranslatorIT.java -------------------------------------------------------------------------------- /src/test/java/io/github/jhipster/sample/web/rest/errors/ExceptionTranslatorTestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/java/io/github/jhipster/sample/web/rest/errors/ExceptionTranslatorTestController.java -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/account/login-page.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/e2e/account/login-page.cy.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/account/logout.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/e2e/account/logout.cy.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/account/password-page.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/e2e/account/password-page.cy.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/account/register-page.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/e2e/account/register-page.cy.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/account/reset-password-page.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/e2e/account/reset-password-page.cy.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/account/settings-page.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/e2e/account/settings-page.cy.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/administration/administration.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/e2e/administration/administration.cy.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/entity/authority.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/e2e/entity/authority.cy.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/entity/bank-account.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/e2e/entity/bank-account.cy.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/entity/label.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/e2e/entity/label.cy.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/entity/operation.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/e2e/entity/operation.cy.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/e2e/lighthouse.audits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/e2e/lighthouse.audits.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/fixtures/integration-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/fixtures/integration-test.png -------------------------------------------------------------------------------- /src/test/javascript/cypress/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/plugins/index.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/support/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/support/account.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/support/commands.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/support/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/support/entity.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/support/index.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/support/management.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/support/management.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/support/navbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/support/navbar.ts -------------------------------------------------------------------------------- /src/test/javascript/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/javascript/cypress/tsconfig.json -------------------------------------------------------------------------------- /src/test/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /src/test/resources/conf/mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/resources/conf/mysql/my.cnf -------------------------------------------------------------------------------- /src/test/resources/config/application-testdev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/resources/config/application-testdev.yml -------------------------------------------------------------------------------- /src/test/resources/config/application-testprod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/resources/config/application-testprod.yml -------------------------------------------------------------------------------- /src/test/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/resources/config/application.yml -------------------------------------------------------------------------------- /src/test/resources/i18n/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/resources/i18n/messages_en.properties -------------------------------------------------------------------------------- /src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/resources/junit-platform.properties -------------------------------------------------------------------------------- /src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/resources/logback.xml -------------------------------------------------------------------------------- /src/test/resources/templates/mail/activationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/resources/templates/mail/activationEmail.html -------------------------------------------------------------------------------- /src/test/resources/templates/mail/creationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/resources/templates/mail/creationEmail.html -------------------------------------------------------------------------------- /src/test/resources/templates/mail/passwordResetEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/resources/templates/mail/passwordResetEmail.html -------------------------------------------------------------------------------- /src/test/resources/templates/mail/testEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/src/test/resources/templates/mail/testEmail.html -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/webpack/environment.js -------------------------------------------------------------------------------- /webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /webpack/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /webpack/proxy.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/webpack/proxy.conf.js -------------------------------------------------------------------------------- /webpack/webpack.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/jhipster-sample-app-elasticsearch/HEAD/webpack/webpack.custom.js --------------------------------------------------------------------------------