├── .gitignore ├── README.md ├── defaultSpring4 ├── .angular-cli.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jhipster │ ├── BankAccount.json │ ├── Label.json │ └── Operation.json ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── .yo-rc.json ├── README.md ├── gatling-results │ ├── ElasticAndAggressiveUsers │ │ └── 5000 │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-oper-e8918.html │ │ │ ├── req_delete-created--75ca3.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-operati-419ef.html │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ ├── ElasticAndSlowUsers │ │ ├── 5000 │ │ │ ├── bankaccountgatlingtest-1499352104455 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-bank-2a2a3.html │ │ │ │ ├── req_delete-created--f98fb.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-bankacc-cc200.html │ │ │ │ ├── req_get-created-ban-af22b.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ ├── labelgatlingtest-1499351584000 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-labe-44e80.html │ │ │ │ ├── req_delete-created--bc348.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-labels-f75c9.html │ │ │ │ ├── req_get-created-lab-1c0f7.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ └── operationgatlingtest-1499352624712 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-oper-e8918.html │ │ │ │ ├── req_delete-created--75ca3.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-operati-419ef.html │ │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ ├── 20170705132247 │ │ │ ├── bankaccountgatlingtest-1499261608987 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-bank-2a2a3.html │ │ │ │ ├── req_delete-created--f98fb.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-bankacc-cc200.html │ │ │ │ ├── req_get-created-ban-af22b.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ ├── labelgatlingtest-1499260969880 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-labe-44e80.html │ │ │ │ ├── req_delete-created--bc348.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-labels-f75c9.html │ │ │ │ ├── req_get-created-lab-1c0f7.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ └── operationgatlingtest-1499262293934 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-oper-e8918.html │ │ │ │ ├── req_delete-created--75ca3.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-operati-419ef.html │ │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ ├── 20170705135318 │ │ │ ├── bankaccountgatlingtest-1499263517672 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-bank-2a2a3.html │ │ │ │ ├── req_delete-created--f98fb.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-bankacc-cc200.html │ │ │ │ ├── req_get-created-ban-af22b.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ ├── labelgatlingtest-1499262800876 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-labe-44e80.html │ │ │ │ ├── req_delete-created--bc348.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-labels-f75c9.html │ │ │ │ ├── req_get-created-lab-1c0f7.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ └── operationgatlingtest-1499264186611 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-oper-e8918.html │ │ │ │ ├── req_delete-created--75ca3.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-operati-419ef.html │ │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ └── 20170705142451 │ │ │ ├── bankaccountgatlingtest-1499265195990 │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-bank-2a2a3.html │ │ │ ├── req_delete-created--f98fb.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-bankacc-cc200.html │ │ │ ├── req_get-created-ban-af22b.html │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ │ ├── labelgatlingtest-1499264693524 │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-labe-44e80.html │ │ │ ├── req_delete-created--bc348.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-labels-f75c9.html │ │ │ ├── req_get-created-lab-1c0f7.html │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ │ └── operationgatlingtest-1499265632453 │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-oper-e8918.html │ │ │ ├── req_delete-created--75ca3.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-operati-419ef.html │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ └── ParallelAndAggressiveUsers │ │ ├── 5000 │ │ ├── index.html │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ │ ├── 10000 │ │ ├── index.html │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ │ └── 15000 │ │ ├── index.html │ │ ├── js │ │ ├── all_sessions.js │ │ ├── assertions.json │ │ ├── assertions.xml │ │ ├── bootstrap.min.js │ │ ├── gatling.js │ │ ├── global_stats.json │ │ ├── highcharts-more.js │ │ ├── highstock.js │ │ ├── jquery.min.js │ │ ├── menu.js │ │ ├── moment.min.js │ │ ├── stats.js │ │ ├── stats.json │ │ ├── theme.js │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ ├── arrow_down.png │ │ ├── arrow_down_black.png │ │ ├── arrow_right.png │ │ ├── arrow_right_black.png │ │ ├── bootstrap.min.css │ │ ├── cible.png │ │ ├── favicon.ico │ │ ├── fond-degrade.gif │ │ ├── fond-lueur.gif │ │ ├── little_arrow_right.png │ │ ├── logo-gatling.jpg │ │ ├── logo.png │ │ ├── sortable.png │ │ ├── sorted-down.png │ │ ├── sorted-up.png │ │ ├── stat-fleche-bas.png │ │ ├── stat-fond.png │ │ ├── stat-l-roue.png │ │ ├── stat-l-temps.png │ │ └── style.css ├── mvnw ├── mvnw.cmd ├── package.json ├── pom.xml ├── proxy.conf.json ├── src │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ ├── app.yml │ │ │ ├── mongodb-cluster.yml │ │ │ ├── mongodb.yml │ │ │ ├── mongodb │ │ │ │ ├── MongoDB.Dockerfile │ │ │ │ └── scripts │ │ │ │ │ └── init_replicaset.js │ │ │ └── sonar.yml │ │ ├── java │ │ │ └── jhipster │ │ │ │ └── reactive │ │ │ │ ├── ApplicationWebXml.java │ │ │ │ ├── DefaultMongoDbApp.java │ │ │ │ ├── aop │ │ │ │ └── logging │ │ │ │ │ └── LoggingAspect.java │ │ │ │ ├── config │ │ │ │ ├── ApplicationProperties.java │ │ │ │ ├── AsyncConfiguration.java │ │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DatabaseConfiguration.java │ │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ │ ├── DefaultProfileUtil.java │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ ├── LocaleConfiguration.java │ │ │ │ ├── LoggingAspectConfiguration.java │ │ │ │ ├── LoggingConfiguration.java │ │ │ │ ├── MetricsConfiguration.java │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ ├── ThymeleafConfiguration.java │ │ │ │ ├── WebConfigurer.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditEventConverter.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── dbmigrations │ │ │ │ │ ├── InitialSetupMigration.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ ├── domain │ │ │ │ ├── AbstractAuditingEntity.java │ │ │ │ ├── Authority.java │ │ │ │ ├── BankAccount.java │ │ │ │ ├── Label.java │ │ │ │ ├── Operation.java │ │ │ │ ├── PersistentAuditEvent.java │ │ │ │ ├── User.java │ │ │ │ └── package-info.java │ │ │ │ ├── repository │ │ │ │ ├── AuthorityRepository.java │ │ │ │ ├── BankAccountRepository.java │ │ │ │ ├── CustomAuditEventRepository.java │ │ │ │ ├── LabelRepository.java │ │ │ │ ├── OperationRepository.java │ │ │ │ ├── PersistenceAuditEventRepository.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── package-info.java │ │ │ │ ├── security │ │ │ │ ├── AuthoritiesConstants.java │ │ │ │ ├── DomainUserDetailsService.java │ │ │ │ ├── SecurityUtils.java │ │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ │ ├── UserNotActivatedException.java │ │ │ │ ├── jwt │ │ │ │ │ ├── JWTConfigurer.java │ │ │ │ │ ├── JWTFilter.java │ │ │ │ │ └── TokenProvider.java │ │ │ │ └── package-info.java │ │ │ │ ├── service │ │ │ │ ├── AuditEventService.java │ │ │ │ ├── MailService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── dto │ │ │ │ │ ├── UserDTO.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── mapper │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── util │ │ │ │ │ └── RandomUtil.java │ │ │ │ └── web │ │ │ │ └── rest │ │ │ │ ├── AccountResource.java │ │ │ │ ├── AuditResource.java │ │ │ │ ├── BankAccountResource.java │ │ │ │ ├── LabelResource.java │ │ │ │ ├── LogsResource.java │ │ │ │ ├── OperationResource.java │ │ │ │ ├── ProfileInfoResource.java │ │ │ │ ├── UserJWTController.java │ │ │ │ ├── UserResource.java │ │ │ │ ├── errors │ │ │ │ ├── CustomParameterizedException.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── ErrorVM.java │ │ │ │ ├── ExceptionTranslator.java │ │ │ │ ├── FieldErrorVM.java │ │ │ │ └── ParameterizedErrorVM.java │ │ │ │ ├── package-info.java │ │ │ │ ├── util │ │ │ │ ├── HeaderUtil.java │ │ │ │ └── PaginationUtil.java │ │ │ │ └── vm │ │ │ │ ├── KeyAndPasswordVM.java │ │ │ │ ├── LoggerVM.java │ │ │ │ ├── LoginVM.java │ │ │ │ ├── ManagedUserVM.java │ │ │ │ └── package-info.java │ │ ├── resources │ │ │ ├── banner.txt │ │ │ ├── config │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ └── application.yml │ │ │ ├── i18n │ │ │ │ └── messages.properties │ │ │ ├── logback-spring.xml │ │ │ ├── mails │ │ │ │ ├── activationEmail.html │ │ │ │ ├── creationEmail.html │ │ │ │ └── passwordResetEmail.html │ │ │ └── templates │ │ │ │ └── error.html │ │ └── webapp │ │ │ ├── 404.html │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── account.module.ts │ │ │ │ ├── account.route.ts │ │ │ │ ├── activate │ │ │ │ │ ├── activate.component.html │ │ │ │ │ ├── activate.component.ts │ │ │ │ │ ├── activate.route.ts │ │ │ │ │ └── activate.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ ├── password-reset-finish.component.html │ │ │ │ │ │ ├── password-reset-finish.component.ts │ │ │ │ │ │ ├── password-reset-finish.route.ts │ │ │ │ │ │ └── password-reset-finish.service.ts │ │ │ │ │ └── init │ │ │ │ │ │ ├── password-reset-init.component.html │ │ │ │ │ │ ├── password-reset-init.component.ts │ │ │ │ │ │ ├── password-reset-init.route.ts │ │ │ │ │ │ └── password-reset-init.service.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.ts │ │ │ │ │ ├── password-strength-bar.css │ │ │ │ │ ├── password.component.html │ │ │ │ │ ├── password.component.ts │ │ │ │ │ ├── password.route.ts │ │ │ │ │ └── password.service.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.html │ │ │ │ │ ├── register.component.ts │ │ │ │ │ ├── register.route.ts │ │ │ │ │ └── register.service.ts │ │ │ │ └── settings │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.ts │ │ │ │ │ └── settings.route.ts │ │ │ ├── admin │ │ │ │ ├── admin.module.ts │ │ │ │ ├── admin.route.ts │ │ │ │ ├── audits │ │ │ │ │ ├── audit-data.model.ts │ │ │ │ │ ├── audit.model.ts │ │ │ │ │ ├── audits.component.html │ │ │ │ │ ├── audits.component.ts │ │ │ │ │ ├── audits.route.ts │ │ │ │ │ └── audits.service.ts │ │ │ │ ├── configuration │ │ │ │ │ ├── configuration.component.html │ │ │ │ │ ├── configuration.component.ts │ │ │ │ │ ├── configuration.route.ts │ │ │ │ │ └── configuration.service.ts │ │ │ │ ├── docs │ │ │ │ │ ├── docs.component.html │ │ │ │ │ ├── docs.component.ts │ │ │ │ │ └── docs.route.ts │ │ │ │ ├── health │ │ │ │ │ ├── health-modal.component.html │ │ │ │ │ ├── health-modal.component.ts │ │ │ │ │ ├── health.component.html │ │ │ │ │ ├── health.component.ts │ │ │ │ │ ├── health.route.ts │ │ │ │ │ └── health.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logs │ │ │ │ │ ├── log.model.ts │ │ │ │ │ ├── logs.component.html │ │ │ │ │ ├── logs.component.ts │ │ │ │ │ ├── logs.route.ts │ │ │ │ │ └── logs.service.ts │ │ │ │ ├── metrics │ │ │ │ │ ├── metrics-modal.component.html │ │ │ │ │ ├── metrics-modal.component.ts │ │ │ │ │ ├── metrics.component.html │ │ │ │ │ ├── metrics.component.ts │ │ │ │ │ ├── metrics.route.ts │ │ │ │ │ └── metrics.service.ts │ │ │ │ └── user-management │ │ │ │ │ ├── user-management-delete-dialog.component.html │ │ │ │ │ ├── user-management-delete-dialog.component.ts │ │ │ │ │ ├── user-management-detail.component.html │ │ │ │ │ ├── user-management-detail.component.ts │ │ │ │ │ ├── user-management-dialog.component.html │ │ │ │ │ ├── user-management-dialog.component.ts │ │ │ │ │ ├── user-management.component.html │ │ │ │ │ ├── user-management.component.ts │ │ │ │ │ ├── user-management.route.ts │ │ │ │ │ └── user-modal.service.ts │ │ │ ├── app.constants.ts │ │ │ ├── app.main.ts │ │ │ ├── app.module.ts │ │ │ ├── app.route.ts │ │ │ ├── blocks │ │ │ │ ├── config │ │ │ │ │ ├── prod.config.ts │ │ │ │ │ └── uib-pagination.config.ts │ │ │ │ └── interceptor │ │ │ │ │ ├── auth-expired.interceptor.ts │ │ │ │ │ ├── auth.interceptor.ts │ │ │ │ │ ├── errorhandler.interceptor.ts │ │ │ │ │ ├── http.provider.ts │ │ │ │ │ └── notification.interceptor.ts │ │ │ ├── entities │ │ │ │ ├── bank-account │ │ │ │ │ ├── bank-account-delete-dialog.component.html │ │ │ │ │ ├── bank-account-delete-dialog.component.ts │ │ │ │ │ ├── bank-account-detail.component.html │ │ │ │ │ ├── bank-account-detail.component.ts │ │ │ │ │ ├── bank-account-dialog.component.html │ │ │ │ │ ├── bank-account-dialog.component.ts │ │ │ │ │ ├── bank-account-popup.service.ts │ │ │ │ │ ├── bank-account.component.html │ │ │ │ │ ├── bank-account.component.ts │ │ │ │ │ ├── bank-account.model.ts │ │ │ │ │ ├── bank-account.module.ts │ │ │ │ │ ├── bank-account.route.ts │ │ │ │ │ ├── bank-account.service.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── entity.module.ts │ │ │ │ ├── label │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── label-delete-dialog.component.html │ │ │ │ │ ├── label-delete-dialog.component.ts │ │ │ │ │ ├── label-detail.component.html │ │ │ │ │ ├── label-detail.component.ts │ │ │ │ │ ├── label-dialog.component.html │ │ │ │ │ ├── label-dialog.component.ts │ │ │ │ │ ├── label-popup.service.ts │ │ │ │ │ ├── label.component.html │ │ │ │ │ ├── label.component.ts │ │ │ │ │ ├── label.model.ts │ │ │ │ │ ├── label.module.ts │ │ │ │ │ ├── label.route.ts │ │ │ │ │ └── label.service.ts │ │ │ │ └── operation │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── operation-delete-dialog.component.html │ │ │ │ │ ├── operation-delete-dialog.component.ts │ │ │ │ │ ├── operation-detail.component.html │ │ │ │ │ ├── operation-detail.component.ts │ │ │ │ │ ├── operation-dialog.component.html │ │ │ │ │ ├── operation-dialog.component.ts │ │ │ │ │ ├── operation-popup.service.ts │ │ │ │ │ ├── operation.component.html │ │ │ │ │ ├── operation.component.ts │ │ │ │ │ ├── operation.model.ts │ │ │ │ │ ├── operation.module.ts │ │ │ │ │ ├── operation.route.ts │ │ │ │ │ └── operation.service.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.ts │ │ │ │ ├── home.css │ │ │ │ ├── home.module.ts │ │ │ │ ├── home.route.ts │ │ │ │ └── index.ts │ │ │ ├── layouts │ │ │ │ ├── error │ │ │ │ │ ├── error.component.html │ │ │ │ │ ├── error.component.ts │ │ │ │ │ └── error.route.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layout-routing.module.ts │ │ │ │ ├── main │ │ │ │ │ ├── main.component.html │ │ │ │ │ └── main.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ ├── navbar.component.ts │ │ │ │ │ └── navbar.css │ │ │ │ └── profiles │ │ │ │ │ ├── page-ribbon.component.ts │ │ │ │ │ ├── page-ribbon.css │ │ │ │ │ ├── profile-info.model.ts │ │ │ │ │ └── profile.service.ts │ │ │ ├── polyfills.ts │ │ │ ├── shared │ │ │ │ ├── alert │ │ │ │ │ ├── alert-error.component.ts │ │ │ │ │ └── alert.component.ts │ │ │ │ ├── auth │ │ │ │ │ ├── account.service.ts │ │ │ │ │ ├── auth-jwt.service.ts │ │ │ │ │ ├── csrf.service.ts │ │ │ │ │ ├── has-any-authority.directive.ts │ │ │ │ │ ├── principal.service.ts │ │ │ │ │ ├── state-storage.service.ts │ │ │ │ │ └── user-route-access-service.ts │ │ │ │ ├── constants │ │ │ │ │ └── pagination.constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── login │ │ │ │ │ ├── login-modal.service.ts │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.service.ts │ │ │ │ ├── model │ │ │ │ │ ├── base-entity.ts │ │ │ │ │ ├── request-util.ts │ │ │ │ │ └── response-wrapper.model.ts │ │ │ │ ├── shared-common.module.ts │ │ │ │ ├── shared-libs.module.ts │ │ │ │ ├── shared.module.ts │ │ │ │ └── user │ │ │ │ │ ├── account.model.ts │ │ │ │ │ ├── user.model.ts │ │ │ │ │ └── user.service.ts │ │ │ └── vendor.ts │ │ │ ├── content │ │ │ ├── css │ │ │ │ ├── documentation.css │ │ │ │ ├── global.css │ │ │ │ └── vendor.css │ │ │ └── images │ │ │ │ ├── hipster.png │ │ │ │ ├── hipster2x.png │ │ │ │ └── logo-jhipster.png │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.webapp │ │ │ ├── robots.txt │ │ │ ├── sw.js │ │ │ └── swagger-ui │ │ │ ├── images │ │ │ └── throbber.gif │ │ │ └── index.html │ └── test │ │ ├── gatling │ │ ├── bin │ │ │ ├── gatling.bat │ │ │ ├── gatling.sh │ │ │ ├── recorder.bat │ │ │ └── recorder.sh │ │ ├── conf │ │ │ ├── gatling.conf │ │ │ └── logback.xml │ │ └── user-files │ │ │ └── simulations │ │ │ ├── BankAccountGatlingTest.scala │ │ │ ├── LabelGatlingTest.scala │ │ │ └── OperationGatlingTest.scala │ │ ├── java │ │ └── jhipster │ │ │ └── reactive │ │ │ ├── config │ │ │ ├── WebConfigurerTest.java │ │ │ └── WebConfigurerTestController.java │ │ │ ├── repository │ │ │ └── CustomAuditEventRepositoryIntTest.java │ │ │ ├── security │ │ │ ├── SecurityUtilsUnitTest.java │ │ │ └── jwt │ │ │ │ ├── JWTFilterTest.java │ │ │ │ └── TokenProviderTest.java │ │ │ ├── service │ │ │ ├── MailServiceIntTest.java │ │ │ └── UserServiceIntTest.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── AccountResourceIntTest.java │ │ │ ├── AuditResourceIntTest.java │ │ │ ├── BankAccountResourceIntTest.java │ │ │ ├── LabelResourceIntTest.java │ │ │ ├── LogsResourceIntTest.java │ │ │ ├── OperationResourceIntTest.java │ │ │ ├── ProfileInfoResourceIntTest.java │ │ │ ├── TestUtil.java │ │ │ ├── UserJWTControllerIntTest.java │ │ │ ├── UserResourceIntTest.java │ │ │ └── errors │ │ │ ├── ExceptionTranslatorIntTest.java │ │ │ └── ExceptionTranslatorTestController.java │ │ ├── javascript │ │ ├── karma.conf.js │ │ └── spec │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── activate │ │ │ │ │ └── activate.component.spec.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ └── password-reset-finish.component.spec.ts │ │ │ │ │ └── init │ │ │ │ │ │ └── password-reset-init.component.spec.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.spec.ts │ │ │ │ │ └── password.component.spec.ts │ │ │ │ ├── register │ │ │ │ │ └── register.component.spec.ts │ │ │ │ └── settings │ │ │ │ │ └── settings.component.spec.ts │ │ │ ├── admin │ │ │ │ ├── audits │ │ │ │ │ └── audits.component.spec.ts │ │ │ │ └── health │ │ │ │ │ └── health.component.spec.ts │ │ │ └── entities │ │ │ │ ├── bank-account │ │ │ │ └── bank-account-detail.component.spec.ts │ │ │ │ ├── label │ │ │ │ └── label-detail.component.spec.ts │ │ │ │ └── operation │ │ │ │ └── operation-detail.component.spec.ts │ │ │ ├── entry.ts │ │ │ ├── helpers │ │ │ ├── mock-account.service.ts │ │ │ ├── mock-principal.service.ts │ │ │ ├── mock-route.service.ts │ │ │ └── spyobject.ts │ │ │ └── test.module.ts │ │ └── resources │ │ ├── config │ │ └── application.yml │ │ ├── i18n │ │ └── messages_en.properties │ │ ├── logback.xml │ │ └── mails │ │ └── testEmail.html ├── tsconfig-aot.json ├── tsconfig.json ├── tslint.json └── webpack │ ├── logo-jhipster.png │ ├── utils.js │ ├── webpack.common.js │ ├── webpack.dev.js │ ├── webpack.prod.js │ └── webpack.vendor.js ├── defaultSpring5 ├── .angular-cli.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jhipster │ ├── BankAccount.json │ ├── Label.json │ └── Operation.json ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── .yo-rc.json ├── README.md ├── gatling-results │ ├── ElasticAndAggressiveUsers │ │ └── 5000 │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-oper-e8918.html │ │ │ ├── req_delete-created--75ca3.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-operati-419ef.html │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ ├── ElasticAndSlowUsers │ │ ├── 5000 │ │ │ ├── bankaccountgatlingtest-1499353896928 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-bank-2a2a3.html │ │ │ │ ├── req_delete-created--f98fb.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-bankacc-cc200.html │ │ │ │ ├── req_get-created-ban-af22b.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ ├── labelgatlingtest-1499353246854 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-labe-44e80.html │ │ │ │ ├── req_delete-created--bc348.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-labels-f75c9.html │ │ │ │ ├── req_get-created-lab-1c0f7.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ └── operationgatlingtest-1499354417390 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-oper-e8918.html │ │ │ │ ├── req_delete-created--75ca3.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-operati-419ef.html │ │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ ├── 10000 │ │ │ ├── bankaccountgatlingtest-1499270297103 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-bank-2a2a3.html │ │ │ │ ├── req_delete-created--f98fb.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-bankacc-cc200.html │ │ │ │ ├── req_get-created-ban-af22b.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ ├── labelgatlingtest-1499269596647 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-labe-44e80.html │ │ │ │ ├── req_delete-created--bc348.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-labels-f75c9.html │ │ │ │ ├── req_get-created-lab-1c0f7.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ └── operationgatlingtest-1499271013392 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-oper-e8918.html │ │ │ │ ├── req_delete-created--75ca3.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-operati-419ef.html │ │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ ├── 20170705161855 │ │ │ ├── bankaccountgatlingtest-1499272194945 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-bank-2a2a3.html │ │ │ │ ├── req_delete-created--f98fb.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-bankacc-cc200.html │ │ │ │ ├── req_get-created-ban-af22b.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ ├── labelgatlingtest-1499271537848 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-labe-44e80.html │ │ │ │ ├── req_delete-created--bc348.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-labels-f75c9.html │ │ │ │ ├── req_get-created-lab-1c0f7.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ └── operationgatlingtest-1499272829881 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-oper-e8918.html │ │ │ │ ├── req_delete-created--75ca3.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-operati-419ef.html │ │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ └── 20170705164914 │ │ │ ├── bankaccountgatlingtest-1499273900132 │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-bank-2a2a3.html │ │ │ ├── req_delete-created--f98fb.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-bankacc-cc200.html │ │ │ ├── req_get-created-ban-af22b.html │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ │ ├── labelgatlingtest-1499273357117 │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-labe-44e80.html │ │ │ ├── req_delete-created--bc348.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-labels-f75c9.html │ │ │ ├── req_get-created-lab-1c0f7.html │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ │ └── operationgatlingtest-1499274429560 │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-oper-e8918.html │ │ │ ├── req_delete-created--75ca3.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-operati-419ef.html │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ └── ParallelAndAggressiveUsers │ │ ├── 5000 │ │ ├── index.html │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ │ ├── 10000 │ │ ├── index.html │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ │ └── 15000 │ │ ├── index.html │ │ ├── js │ │ ├── all_sessions.js │ │ ├── assertions.json │ │ ├── assertions.xml │ │ ├── bootstrap.min.js │ │ ├── gatling.js │ │ ├── global_stats.json │ │ ├── highcharts-more.js │ │ ├── highstock.js │ │ ├── jquery.min.js │ │ ├── menu.js │ │ ├── moment.min.js │ │ ├── stats.js │ │ ├── stats.json │ │ ├── theme.js │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ ├── arrow_down.png │ │ ├── arrow_down_black.png │ │ ├── arrow_right.png │ │ ├── arrow_right_black.png │ │ ├── bootstrap.min.css │ │ ├── cible.png │ │ ├── favicon.ico │ │ ├── fond-degrade.gif │ │ ├── fond-lueur.gif │ │ ├── little_arrow_right.png │ │ ├── logo-gatling.jpg │ │ ├── logo.png │ │ ├── sortable.png │ │ ├── sorted-down.png │ │ ├── sorted-up.png │ │ ├── stat-fleche-bas.png │ │ ├── stat-fond.png │ │ ├── stat-l-roue.png │ │ ├── stat-l-temps.png │ │ └── style.css ├── mvnw ├── mvnw.cmd ├── package.json ├── pom.xml ├── proxy.conf.json ├── src │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ ├── app.yml │ │ │ ├── mongodb-cluster.yml │ │ │ ├── mongodb.yml │ │ │ ├── mongodb │ │ │ │ ├── MongoDB.Dockerfile │ │ │ │ └── scripts │ │ │ │ │ └── init_replicaset.js │ │ │ └── sonar.yml │ │ ├── java │ │ │ └── jhipster │ │ │ │ └── reactive │ │ │ │ ├── ApplicationWebXml.java │ │ │ │ ├── DefaultMongoDbApp.java │ │ │ │ ├── aop │ │ │ │ └── logging │ │ │ │ │ └── LoggingAspect.java │ │ │ │ ├── config │ │ │ │ ├── ApplicationProperties.java │ │ │ │ ├── AsyncConfiguration.java │ │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DatabaseConfiguration.java │ │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ │ ├── DefaultProfileUtil.java │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ ├── LocaleConfiguration.java │ │ │ │ ├── LoggingAspectConfiguration.java │ │ │ │ ├── LoggingConfiguration.java │ │ │ │ ├── MetricsConfiguration.java │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ ├── ThymeleafConfiguration.java │ │ │ │ ├── WebConfigurer.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditEventConverter.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── dbmigrations │ │ │ │ │ ├── InitialSetupMigration.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ ├── domain │ │ │ │ ├── AbstractAuditingEntity.java │ │ │ │ ├── Authority.java │ │ │ │ ├── BankAccount.java │ │ │ │ ├── Label.java │ │ │ │ ├── Operation.java │ │ │ │ ├── PersistentAuditEvent.java │ │ │ │ ├── User.java │ │ │ │ └── package-info.java │ │ │ │ ├── repository │ │ │ │ ├── AuthorityRepository.java │ │ │ │ ├── BankAccountRepository.java │ │ │ │ ├── CustomAuditEventRepository.java │ │ │ │ ├── LabelRepository.java │ │ │ │ ├── OperationRepository.java │ │ │ │ ├── PersistenceAuditEventRepository.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── package-info.java │ │ │ │ ├── security │ │ │ │ ├── AuthoritiesConstants.java │ │ │ │ ├── DomainUserDetailsService.java │ │ │ │ ├── SecurityUtils.java │ │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ │ ├── UserNotActivatedException.java │ │ │ │ ├── jwt │ │ │ │ │ ├── JWTConfigurer.java │ │ │ │ │ ├── JWTFilter.java │ │ │ │ │ └── TokenProvider.java │ │ │ │ └── package-info.java │ │ │ │ ├── service │ │ │ │ ├── AuditEventService.java │ │ │ │ ├── MailService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── dto │ │ │ │ │ ├── UserDTO.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── mapper │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── util │ │ │ │ │ └── RandomUtil.java │ │ │ │ └── web │ │ │ │ └── rest │ │ │ │ ├── AccountResource.java │ │ │ │ ├── AuditResource.java │ │ │ │ ├── BankAccountResource.java │ │ │ │ ├── LabelResource.java │ │ │ │ ├── LogsResource.java │ │ │ │ ├── OperationResource.java │ │ │ │ ├── ProfileInfoResource.java │ │ │ │ ├── UserJWTController.java │ │ │ │ ├── UserResource.java │ │ │ │ ├── errors │ │ │ │ ├── CustomParameterizedException.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── ErrorVM.java │ │ │ │ ├── ExceptionTranslator.java │ │ │ │ ├── FieldErrorVM.java │ │ │ │ └── ParameterizedErrorVM.java │ │ │ │ ├── package-info.java │ │ │ │ ├── util │ │ │ │ ├── HeaderUtil.java │ │ │ │ └── PaginationUtil.java │ │ │ │ └── vm │ │ │ │ ├── KeyAndPasswordVM.java │ │ │ │ ├── LoggerVM.java │ │ │ │ ├── LoginVM.java │ │ │ │ ├── ManagedUserVM.java │ │ │ │ └── package-info.java │ │ ├── resources │ │ │ ├── banner.txt │ │ │ ├── config │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ └── application.yml │ │ │ ├── i18n │ │ │ │ └── messages.properties │ │ │ ├── logback-spring.xml │ │ │ ├── mails │ │ │ │ ├── activationEmail.html │ │ │ │ ├── creationEmail.html │ │ │ │ └── passwordResetEmail.html │ │ │ └── templates │ │ │ │ └── error.html │ │ └── webapp │ │ │ ├── 404.html │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── account.module.ts │ │ │ │ ├── account.route.ts │ │ │ │ ├── activate │ │ │ │ │ ├── activate.component.html │ │ │ │ │ ├── activate.component.ts │ │ │ │ │ ├── activate.route.ts │ │ │ │ │ └── activate.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ ├── password-reset-finish.component.html │ │ │ │ │ │ ├── password-reset-finish.component.ts │ │ │ │ │ │ ├── password-reset-finish.route.ts │ │ │ │ │ │ └── password-reset-finish.service.ts │ │ │ │ │ └── init │ │ │ │ │ │ ├── password-reset-init.component.html │ │ │ │ │ │ ├── password-reset-init.component.ts │ │ │ │ │ │ ├── password-reset-init.route.ts │ │ │ │ │ │ └── password-reset-init.service.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.ts │ │ │ │ │ ├── password-strength-bar.css │ │ │ │ │ ├── password.component.html │ │ │ │ │ ├── password.component.ts │ │ │ │ │ ├── password.route.ts │ │ │ │ │ └── password.service.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.html │ │ │ │ │ ├── register.component.ts │ │ │ │ │ ├── register.route.ts │ │ │ │ │ └── register.service.ts │ │ │ │ └── settings │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.ts │ │ │ │ │ └── settings.route.ts │ │ │ ├── admin │ │ │ │ ├── admin.module.ts │ │ │ │ ├── admin.route.ts │ │ │ │ ├── audits │ │ │ │ │ ├── audit-data.model.ts │ │ │ │ │ ├── audit.model.ts │ │ │ │ │ ├── audits.component.html │ │ │ │ │ ├── audits.component.ts │ │ │ │ │ ├── audits.route.ts │ │ │ │ │ └── audits.service.ts │ │ │ │ ├── configuration │ │ │ │ │ ├── configuration.component.html │ │ │ │ │ ├── configuration.component.ts │ │ │ │ │ ├── configuration.route.ts │ │ │ │ │ └── configuration.service.ts │ │ │ │ ├── docs │ │ │ │ │ ├── docs.component.html │ │ │ │ │ ├── docs.component.ts │ │ │ │ │ └── docs.route.ts │ │ │ │ ├── health │ │ │ │ │ ├── health-modal.component.html │ │ │ │ │ ├── health-modal.component.ts │ │ │ │ │ ├── health.component.html │ │ │ │ │ ├── health.component.ts │ │ │ │ │ ├── health.route.ts │ │ │ │ │ └── health.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logs │ │ │ │ │ ├── log.model.ts │ │ │ │ │ ├── logs.component.html │ │ │ │ │ ├── logs.component.ts │ │ │ │ │ ├── logs.route.ts │ │ │ │ │ └── logs.service.ts │ │ │ │ ├── metrics │ │ │ │ │ ├── metrics-modal.component.html │ │ │ │ │ ├── metrics-modal.component.ts │ │ │ │ │ ├── metrics.component.html │ │ │ │ │ ├── metrics.component.ts │ │ │ │ │ ├── metrics.route.ts │ │ │ │ │ └── metrics.service.ts │ │ │ │ └── user-management │ │ │ │ │ ├── user-management-delete-dialog.component.html │ │ │ │ │ ├── user-management-delete-dialog.component.ts │ │ │ │ │ ├── user-management-detail.component.html │ │ │ │ │ ├── user-management-detail.component.ts │ │ │ │ │ ├── user-management-dialog.component.html │ │ │ │ │ ├── user-management-dialog.component.ts │ │ │ │ │ ├── user-management.component.html │ │ │ │ │ ├── user-management.component.ts │ │ │ │ │ ├── user-management.route.ts │ │ │ │ │ └── user-modal.service.ts │ │ │ ├── app.constants.ts │ │ │ ├── app.main.ts │ │ │ ├── app.module.ts │ │ │ ├── app.route.ts │ │ │ ├── blocks │ │ │ │ ├── config │ │ │ │ │ ├── prod.config.ts │ │ │ │ │ └── uib-pagination.config.ts │ │ │ │ └── interceptor │ │ │ │ │ ├── auth-expired.interceptor.ts │ │ │ │ │ ├── auth.interceptor.ts │ │ │ │ │ ├── errorhandler.interceptor.ts │ │ │ │ │ ├── http.provider.ts │ │ │ │ │ └── notification.interceptor.ts │ │ │ ├── entities │ │ │ │ ├── bank-account │ │ │ │ │ ├── bank-account-delete-dialog.component.html │ │ │ │ │ ├── bank-account-delete-dialog.component.ts │ │ │ │ │ ├── bank-account-detail.component.html │ │ │ │ │ ├── bank-account-detail.component.ts │ │ │ │ │ ├── bank-account-dialog.component.html │ │ │ │ │ ├── bank-account-dialog.component.ts │ │ │ │ │ ├── bank-account-popup.service.ts │ │ │ │ │ ├── bank-account.component.html │ │ │ │ │ ├── bank-account.component.ts │ │ │ │ │ ├── bank-account.model.ts │ │ │ │ │ ├── bank-account.module.ts │ │ │ │ │ ├── bank-account.route.ts │ │ │ │ │ ├── bank-account.service.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── entity.module.ts │ │ │ │ ├── label │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── label-delete-dialog.component.html │ │ │ │ │ ├── label-delete-dialog.component.ts │ │ │ │ │ ├── label-detail.component.html │ │ │ │ │ ├── label-detail.component.ts │ │ │ │ │ ├── label-dialog.component.html │ │ │ │ │ ├── label-dialog.component.ts │ │ │ │ │ ├── label-popup.service.ts │ │ │ │ │ ├── label.component.html │ │ │ │ │ ├── label.component.ts │ │ │ │ │ ├── label.model.ts │ │ │ │ │ ├── label.module.ts │ │ │ │ │ ├── label.route.ts │ │ │ │ │ └── label.service.ts │ │ │ │ └── operation │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── operation-delete-dialog.component.html │ │ │ │ │ ├── operation-delete-dialog.component.ts │ │ │ │ │ ├── operation-detail.component.html │ │ │ │ │ ├── operation-detail.component.ts │ │ │ │ │ ├── operation-dialog.component.html │ │ │ │ │ ├── operation-dialog.component.ts │ │ │ │ │ ├── operation-popup.service.ts │ │ │ │ │ ├── operation.component.html │ │ │ │ │ ├── operation.component.ts │ │ │ │ │ ├── operation.model.ts │ │ │ │ │ ├── operation.module.ts │ │ │ │ │ ├── operation.route.ts │ │ │ │ │ └── operation.service.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.ts │ │ │ │ ├── home.css │ │ │ │ ├── home.module.ts │ │ │ │ ├── home.route.ts │ │ │ │ └── index.ts │ │ │ ├── layouts │ │ │ │ ├── error │ │ │ │ │ ├── error.component.html │ │ │ │ │ ├── error.component.ts │ │ │ │ │ └── error.route.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layout-routing.module.ts │ │ │ │ ├── main │ │ │ │ │ ├── main.component.html │ │ │ │ │ └── main.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ ├── navbar.component.ts │ │ │ │ │ └── navbar.css │ │ │ │ └── profiles │ │ │ │ │ ├── page-ribbon.component.ts │ │ │ │ │ ├── page-ribbon.css │ │ │ │ │ ├── profile-info.model.ts │ │ │ │ │ └── profile.service.ts │ │ │ ├── polyfills.ts │ │ │ ├── shared │ │ │ │ ├── alert │ │ │ │ │ ├── alert-error.component.ts │ │ │ │ │ └── alert.component.ts │ │ │ │ ├── auth │ │ │ │ │ ├── account.service.ts │ │ │ │ │ ├── auth-jwt.service.ts │ │ │ │ │ ├── csrf.service.ts │ │ │ │ │ ├── has-any-authority.directive.ts │ │ │ │ │ ├── principal.service.ts │ │ │ │ │ ├── state-storage.service.ts │ │ │ │ │ └── user-route-access-service.ts │ │ │ │ ├── constants │ │ │ │ │ └── pagination.constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── login │ │ │ │ │ ├── login-modal.service.ts │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.service.ts │ │ │ │ ├── model │ │ │ │ │ ├── base-entity.ts │ │ │ │ │ ├── request-util.ts │ │ │ │ │ └── response-wrapper.model.ts │ │ │ │ ├── shared-common.module.ts │ │ │ │ ├── shared-libs.module.ts │ │ │ │ ├── shared.module.ts │ │ │ │ └── user │ │ │ │ │ ├── account.model.ts │ │ │ │ │ ├── user.model.ts │ │ │ │ │ └── user.service.ts │ │ │ └── vendor.ts │ │ │ ├── content │ │ │ ├── css │ │ │ │ ├── documentation.css │ │ │ │ ├── global.css │ │ │ │ └── vendor.css │ │ │ └── images │ │ │ │ ├── hipster.png │ │ │ │ ├── hipster2x.png │ │ │ │ └── logo-jhipster.png │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.webapp │ │ │ ├── robots.txt │ │ │ ├── sw.js │ │ │ └── swagger-ui │ │ │ ├── images │ │ │ └── throbber.gif │ │ │ └── index.html │ └── test │ │ ├── gatling │ │ ├── bin │ │ │ ├── gatling.bat │ │ │ ├── gatling.sh │ │ │ ├── recorder.bat │ │ │ └── recorder.sh │ │ ├── conf │ │ │ ├── gatling.conf │ │ │ └── logback.xml │ │ └── user-files │ │ │ └── simulations │ │ │ ├── BankAccountGatlingTest.scala │ │ │ ├── LabelGatlingTest.scala │ │ │ └── OperationGatlingTest.scala │ │ ├── java │ │ └── jhipster │ │ │ └── reactive │ │ │ ├── config │ │ │ ├── WebConfigurerTest.java │ │ │ └── WebConfigurerTestController.java │ │ │ ├── repository │ │ │ └── CustomAuditEventRepositoryIntTest.java │ │ │ ├── security │ │ │ ├── SecurityUtilsUnitTest.java │ │ │ └── jwt │ │ │ │ ├── JWTFilterTest.java │ │ │ │ └── TokenProviderTest.java │ │ │ ├── service │ │ │ ├── MailServiceIntTest.java │ │ │ └── UserServiceIntTest.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── AccountResourceIntTest.java │ │ │ ├── AuditResourceIntTest.java │ │ │ ├── BankAccountResourceIntTest.java │ │ │ ├── LabelResourceIntTest.java │ │ │ ├── LogsResourceIntTest.java │ │ │ ├── OperationResourceIntTest.java │ │ │ ├── ProfileInfoResourceIntTest.java │ │ │ ├── TestUtil.java │ │ │ ├── UserJWTControllerIntTest.java │ │ │ ├── UserResourceIntTest.java │ │ │ └── errors │ │ │ ├── ExceptionTranslatorIntTest.java │ │ │ └── ExceptionTranslatorTestController.java │ │ ├── javascript │ │ ├── karma.conf.js │ │ └── spec │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── activate │ │ │ │ │ └── activate.component.spec.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ └── password-reset-finish.component.spec.ts │ │ │ │ │ └── init │ │ │ │ │ │ └── password-reset-init.component.spec.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.spec.ts │ │ │ │ │ └── password.component.spec.ts │ │ │ │ ├── register │ │ │ │ │ └── register.component.spec.ts │ │ │ │ └── settings │ │ │ │ │ └── settings.component.spec.ts │ │ │ ├── admin │ │ │ │ ├── audits │ │ │ │ │ └── audits.component.spec.ts │ │ │ │ └── health │ │ │ │ │ └── health.component.spec.ts │ │ │ └── entities │ │ │ │ ├── bank-account │ │ │ │ └── bank-account-detail.component.spec.ts │ │ │ │ ├── label │ │ │ │ └── label-detail.component.spec.ts │ │ │ │ └── operation │ │ │ │ └── operation-detail.component.spec.ts │ │ │ ├── entry.ts │ │ │ ├── helpers │ │ │ ├── mock-account.service.ts │ │ │ ├── mock-principal.service.ts │ │ │ ├── mock-route.service.ts │ │ │ └── spyobject.ts │ │ │ └── test.module.ts │ │ └── resources │ │ ├── config │ │ └── application.yml │ │ ├── i18n │ │ └── messages_en.properties │ │ ├── logback.xml │ │ └── mails │ │ └── testEmail.html ├── tsconfig-aot.json ├── tsconfig.json ├── tslint.json └── webpack │ ├── logo-jhipster.png │ ├── utils.js │ ├── webpack.common.js │ ├── webpack.dev.js │ ├── webpack.prod.js │ └── webpack.vendor.js ├── jhipster462withSpringBoot2 ├── .angular-cli.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jhipster │ ├── BankAccount.json │ ├── Label.json │ └── Operation.json ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── .yo-rc.json ├── README.md ├── mvnw ├── mvnw.cmd ├── package.json ├── pom.xml ├── proxy.conf.json ├── src │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ ├── app.yml │ │ │ ├── mongodb-cluster.yml │ │ │ ├── mongodb.yml │ │ │ ├── mongodb │ │ │ │ ├── MongoDB.Dockerfile │ │ │ │ └── scripts │ │ │ │ │ └── init_replicaset.js │ │ │ └── sonar.yml │ │ ├── java │ │ │ └── jhipster │ │ │ │ └── reactive │ │ │ │ ├── ApplicationWebXml.java │ │ │ │ ├── DefaultMongoDbApp.java │ │ │ │ ├── aop │ │ │ │ └── logging │ │ │ │ │ └── LoggingAspect.java │ │ │ │ ├── config │ │ │ │ ├── ApplicationProperties.java │ │ │ │ ├── AsyncConfiguration.java │ │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DatabaseConfiguration.java │ │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ │ ├── DefaultProfileUtil.java │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ ├── LocaleConfiguration.java │ │ │ │ ├── LoggingAspectConfiguration.java │ │ │ │ ├── LoggingConfiguration.java │ │ │ │ ├── MetricsConfiguration.java │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ ├── ThymeleafConfiguration.java │ │ │ │ ├── WebConfigurer.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditEventConverter.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── dbmigrations │ │ │ │ │ ├── InitialSetupMigration.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ ├── domain │ │ │ │ ├── AbstractAuditingEntity.java │ │ │ │ ├── Authority.java │ │ │ │ ├── BankAccount.java │ │ │ │ ├── Label.java │ │ │ │ ├── Operation.java │ │ │ │ ├── PersistentAuditEvent.java │ │ │ │ ├── User.java │ │ │ │ └── package-info.java │ │ │ │ ├── repository │ │ │ │ ├── AuthorityRepository.java │ │ │ │ ├── BankAccountRepository.java │ │ │ │ ├── CustomAuditEventRepository.java │ │ │ │ ├── LabelRepository.java │ │ │ │ ├── OperationRepository.java │ │ │ │ ├── PersistenceAuditEventRepository.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── package-info.java │ │ │ │ ├── security │ │ │ │ ├── AuthoritiesConstants.java │ │ │ │ ├── DomainUserDetailsService.java │ │ │ │ ├── SecurityUtils.java │ │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ │ ├── UserNotActivatedException.java │ │ │ │ ├── jwt │ │ │ │ │ ├── JWTConfigurer.java │ │ │ │ │ ├── JWTFilter.java │ │ │ │ │ └── TokenProvider.java │ │ │ │ └── package-info.java │ │ │ │ ├── service │ │ │ │ ├── AuditEventService.java │ │ │ │ ├── MailService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── dto │ │ │ │ │ ├── UserDTO.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── mapper │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── util │ │ │ │ │ └── RandomUtil.java │ │ │ │ └── web │ │ │ │ └── rest │ │ │ │ ├── AccountResource.java │ │ │ │ ├── AuditResource.java │ │ │ │ ├── BankAccountResource.java │ │ │ │ ├── LabelResource.java │ │ │ │ ├── LogsResource.java │ │ │ │ ├── OperationResource.java │ │ │ │ ├── ProfileInfoResource.java │ │ │ │ ├── UserJWTController.java │ │ │ │ ├── UserResource.java │ │ │ │ ├── errors │ │ │ │ ├── CustomParameterizedException.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── ErrorVM.java │ │ │ │ ├── ExceptionTranslator.java │ │ │ │ ├── FieldErrorVM.java │ │ │ │ └── ParameterizedErrorVM.java │ │ │ │ ├── package-info.java │ │ │ │ ├── util │ │ │ │ ├── HeaderUtil.java │ │ │ │ └── PaginationUtil.java │ │ │ │ └── vm │ │ │ │ ├── KeyAndPasswordVM.java │ │ │ │ ├── LoggerVM.java │ │ │ │ ├── LoginVM.java │ │ │ │ ├── ManagedUserVM.java │ │ │ │ └── package-info.java │ │ ├── resources │ │ │ ├── banner.txt │ │ │ ├── config │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ └── application.yml │ │ │ ├── i18n │ │ │ │ └── messages.properties │ │ │ ├── logback-spring.xml │ │ │ ├── mails │ │ │ │ ├── activationEmail.html │ │ │ │ ├── creationEmail.html │ │ │ │ └── passwordResetEmail.html │ │ │ └── templates │ │ │ │ └── error.html │ │ └── webapp │ │ │ ├── 404.html │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── account.module.ts │ │ │ │ ├── account.route.ts │ │ │ │ ├── activate │ │ │ │ │ ├── activate.component.html │ │ │ │ │ ├── activate.component.ts │ │ │ │ │ ├── activate.route.ts │ │ │ │ │ └── activate.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ ├── password-reset-finish.component.html │ │ │ │ │ │ ├── password-reset-finish.component.ts │ │ │ │ │ │ ├── password-reset-finish.route.ts │ │ │ │ │ │ └── password-reset-finish.service.ts │ │ │ │ │ └── init │ │ │ │ │ │ ├── password-reset-init.component.html │ │ │ │ │ │ ├── password-reset-init.component.ts │ │ │ │ │ │ ├── password-reset-init.route.ts │ │ │ │ │ │ └── password-reset-init.service.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.ts │ │ │ │ │ ├── password-strength-bar.css │ │ │ │ │ ├── password.component.html │ │ │ │ │ ├── password.component.ts │ │ │ │ │ ├── password.route.ts │ │ │ │ │ └── password.service.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.html │ │ │ │ │ ├── register.component.ts │ │ │ │ │ ├── register.route.ts │ │ │ │ │ └── register.service.ts │ │ │ │ └── settings │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.ts │ │ │ │ │ └── settings.route.ts │ │ │ ├── admin │ │ │ │ ├── admin.module.ts │ │ │ │ ├── admin.route.ts │ │ │ │ ├── audits │ │ │ │ │ ├── audit-data.model.ts │ │ │ │ │ ├── audit.model.ts │ │ │ │ │ ├── audits.component.html │ │ │ │ │ ├── audits.component.ts │ │ │ │ │ ├── audits.route.ts │ │ │ │ │ └── audits.service.ts │ │ │ │ ├── configuration │ │ │ │ │ ├── configuration.component.html │ │ │ │ │ ├── configuration.component.ts │ │ │ │ │ ├── configuration.route.ts │ │ │ │ │ └── configuration.service.ts │ │ │ │ ├── docs │ │ │ │ │ ├── docs.component.html │ │ │ │ │ ├── docs.component.ts │ │ │ │ │ └── docs.route.ts │ │ │ │ ├── health │ │ │ │ │ ├── health-modal.component.html │ │ │ │ │ ├── health-modal.component.ts │ │ │ │ │ ├── health.component.html │ │ │ │ │ ├── health.component.ts │ │ │ │ │ ├── health.route.ts │ │ │ │ │ └── health.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logs │ │ │ │ │ ├── log.model.ts │ │ │ │ │ ├── logs.component.html │ │ │ │ │ ├── logs.component.ts │ │ │ │ │ ├── logs.route.ts │ │ │ │ │ └── logs.service.ts │ │ │ │ ├── metrics │ │ │ │ │ ├── metrics-modal.component.html │ │ │ │ │ ├── metrics-modal.component.ts │ │ │ │ │ ├── metrics.component.html │ │ │ │ │ ├── metrics.component.ts │ │ │ │ │ ├── metrics.route.ts │ │ │ │ │ └── metrics.service.ts │ │ │ │ └── user-management │ │ │ │ │ ├── user-management-delete-dialog.component.html │ │ │ │ │ ├── user-management-delete-dialog.component.ts │ │ │ │ │ ├── user-management-detail.component.html │ │ │ │ │ ├── user-management-detail.component.ts │ │ │ │ │ ├── user-management-dialog.component.html │ │ │ │ │ ├── user-management-dialog.component.ts │ │ │ │ │ ├── user-management.component.html │ │ │ │ │ ├── user-management.component.ts │ │ │ │ │ ├── user-management.route.ts │ │ │ │ │ └── user-modal.service.ts │ │ │ ├── app.constants.ts │ │ │ ├── app.main-aot.ts │ │ │ ├── app.main.ts │ │ │ ├── app.module.ts │ │ │ ├── app.route.ts │ │ │ ├── blocks │ │ │ │ ├── config │ │ │ │ │ ├── prod.config.ts │ │ │ │ │ └── uib-pagination.config.ts │ │ │ │ └── interceptor │ │ │ │ │ ├── auth-expired.interceptor.ts │ │ │ │ │ ├── auth.interceptor.ts │ │ │ │ │ ├── errorhandler.interceptor.ts │ │ │ │ │ ├── http.provider.ts │ │ │ │ │ └── notification.interceptor.ts │ │ │ ├── entities │ │ │ │ ├── bank-account │ │ │ │ │ ├── bank-account-delete-dialog.component.html │ │ │ │ │ ├── bank-account-delete-dialog.component.ts │ │ │ │ │ ├── bank-account-detail.component.html │ │ │ │ │ ├── bank-account-detail.component.ts │ │ │ │ │ ├── bank-account-dialog.component.html │ │ │ │ │ ├── bank-account-dialog.component.ts │ │ │ │ │ ├── bank-account-popup.service.ts │ │ │ │ │ ├── bank-account.component.html │ │ │ │ │ ├── bank-account.component.ts │ │ │ │ │ ├── bank-account.model.ts │ │ │ │ │ ├── bank-account.module.ts │ │ │ │ │ ├── bank-account.route.ts │ │ │ │ │ ├── bank-account.service.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── entity.module.ts │ │ │ │ ├── label │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── label-delete-dialog.component.html │ │ │ │ │ ├── label-delete-dialog.component.ts │ │ │ │ │ ├── label-detail.component.html │ │ │ │ │ ├── label-detail.component.ts │ │ │ │ │ ├── label-dialog.component.html │ │ │ │ │ ├── label-dialog.component.ts │ │ │ │ │ ├── label-popup.service.ts │ │ │ │ │ ├── label.component.html │ │ │ │ │ ├── label.component.ts │ │ │ │ │ ├── label.model.ts │ │ │ │ │ ├── label.module.ts │ │ │ │ │ ├── label.route.ts │ │ │ │ │ └── label.service.ts │ │ │ │ └── operation │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── operation-delete-dialog.component.html │ │ │ │ │ ├── operation-delete-dialog.component.ts │ │ │ │ │ ├── operation-detail.component.html │ │ │ │ │ ├── operation-detail.component.ts │ │ │ │ │ ├── operation-dialog.component.html │ │ │ │ │ ├── operation-dialog.component.ts │ │ │ │ │ ├── operation-popup.service.ts │ │ │ │ │ ├── operation.component.html │ │ │ │ │ ├── operation.component.ts │ │ │ │ │ ├── operation.model.ts │ │ │ │ │ ├── operation.module.ts │ │ │ │ │ ├── operation.route.ts │ │ │ │ │ └── operation.service.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.ts │ │ │ │ ├── home.css │ │ │ │ ├── home.module.ts │ │ │ │ ├── home.route.ts │ │ │ │ └── index.ts │ │ │ ├── layouts │ │ │ │ ├── error │ │ │ │ │ ├── error.component.html │ │ │ │ │ ├── error.component.ts │ │ │ │ │ └── error.route.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layout-routing.module.ts │ │ │ │ ├── main │ │ │ │ │ ├── main.component.html │ │ │ │ │ └── main.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ ├── navbar.component.ts │ │ │ │ │ └── navbar.css │ │ │ │ └── profiles │ │ │ │ │ ├── page-ribbon.component.ts │ │ │ │ │ ├── page-ribbon.css │ │ │ │ │ ├── profile-info.model.ts │ │ │ │ │ └── profile.service.ts │ │ │ ├── polyfills.ts │ │ │ ├── shared │ │ │ │ ├── alert │ │ │ │ │ ├── alert-error.component.ts │ │ │ │ │ └── alert.component.ts │ │ │ │ ├── auth │ │ │ │ │ ├── account.service.ts │ │ │ │ │ ├── auth-jwt.service.ts │ │ │ │ │ ├── csrf.service.ts │ │ │ │ │ ├── has-any-authority.directive.ts │ │ │ │ │ ├── principal.service.ts │ │ │ │ │ ├── state-storage.service.ts │ │ │ │ │ └── user-route-access-service.ts │ │ │ │ ├── constants │ │ │ │ │ └── pagination.constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── login │ │ │ │ │ ├── login-modal.service.ts │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.service.ts │ │ │ │ ├── model │ │ │ │ │ ├── base-entity.ts │ │ │ │ │ ├── request-util.ts │ │ │ │ │ └── response-wrapper.model.ts │ │ │ │ ├── shared-common.module.ts │ │ │ │ ├── shared-libs.module.ts │ │ │ │ ├── shared.module.ts │ │ │ │ └── user │ │ │ │ │ ├── account.model.ts │ │ │ │ │ ├── user.model.ts │ │ │ │ │ └── user.service.ts │ │ │ └── vendor.ts │ │ │ ├── content │ │ │ ├── css │ │ │ │ ├── documentation.css │ │ │ │ ├── global.css │ │ │ │ └── vendor.css │ │ │ └── images │ │ │ │ ├── hipster.png │ │ │ │ ├── hipster2x.png │ │ │ │ └── logo-jhipster.png │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.webapp │ │ │ ├── robots.txt │ │ │ ├── sw.js │ │ │ └── swagger-ui │ │ │ ├── dist │ │ │ └── images │ │ │ │ └── throbber.gif │ │ │ └── index.html │ └── test │ │ ├── gatling │ │ ├── conf │ │ │ ├── gatling.conf │ │ │ └── logback.xml │ │ └── user-files │ │ │ └── simulations │ │ │ ├── BankAccountGatlingTest.scala │ │ │ ├── LabelGatlingTest.scala │ │ │ └── OperationGatlingTest.scala │ │ ├── java │ │ └── jhipster │ │ │ └── reactive │ │ │ ├── config │ │ │ ├── WebConfigurerTest.java │ │ │ └── WebConfigurerTestController.java │ │ │ ├── repository │ │ │ └── CustomAuditEventRepositoryIntTest.java │ │ │ ├── security │ │ │ ├── SecurityUtilsUnitTest.java │ │ │ └── jwt │ │ │ │ ├── JWTFilterTest.java │ │ │ │ └── TokenProviderTest.java │ │ │ ├── service │ │ │ ├── MailServiceIntTest.java │ │ │ └── UserServiceIntTest.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── AccountResourceIntTest.java │ │ │ ├── AuditResourceIntTest.java │ │ │ ├── BankAccountResourceIntTest.java │ │ │ ├── LabelResourceIntTest.java │ │ │ ├── LogsResourceIntTest.java │ │ │ ├── OperationResourceIntTest.java │ │ │ ├── ProfileInfoResourceIntTest.java │ │ │ ├── TestUtil.java │ │ │ ├── UserJWTControllerIntTest.java │ │ │ ├── UserResourceIntTest.java │ │ │ ├── errors │ │ │ ├── ExceptionTranslatorIntTest.java │ │ │ └── ExceptionTranslatorTestController.java │ │ │ └── util │ │ │ └── PaginationUtilUnitTest.java │ │ ├── javascript │ │ ├── karma.conf.js │ │ └── spec │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── activate │ │ │ │ │ └── activate.component.spec.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ └── password-reset-finish.component.spec.ts │ │ │ │ │ └── init │ │ │ │ │ │ └── password-reset-init.component.spec.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.spec.ts │ │ │ │ │ └── password.component.spec.ts │ │ │ │ ├── register │ │ │ │ │ └── register.component.spec.ts │ │ │ │ └── settings │ │ │ │ │ └── settings.component.spec.ts │ │ │ ├── admin │ │ │ │ ├── audits │ │ │ │ │ └── audits.component.spec.ts │ │ │ │ └── health │ │ │ │ │ └── health.component.spec.ts │ │ │ └── entities │ │ │ │ ├── bank-account │ │ │ │ └── bank-account-detail.component.spec.ts │ │ │ │ ├── label │ │ │ │ └── label-detail.component.spec.ts │ │ │ │ └── operation │ │ │ │ └── operation-detail.component.spec.ts │ │ │ ├── entry.ts │ │ │ ├── helpers │ │ │ ├── mock-account.service.ts │ │ │ ├── mock-principal.service.ts │ │ │ ├── mock-route.service.ts │ │ │ └── spyobject.ts │ │ │ └── test.module.ts │ │ └── resources │ │ ├── config │ │ └── application.yml │ │ ├── i18n │ │ └── messages_en.properties │ │ ├── logback.xml │ │ └── mails │ │ └── testEmail.html ├── tsconfig-aot.json ├── tsconfig.json ├── tslint.json ├── webpack │ ├── logo-jhipster.png │ ├── utils.js │ ├── webpack.common.js │ ├── webpack.dev.js │ ├── webpack.prod.js │ └── webpack.test.js └── yarn.lock ├── onlyoperationReactive ├── .angular-cli.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jhipster │ ├── BankAccount.json │ ├── Label.json │ └── Operation.json ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── .yo-rc.json ├── README.md ├── gatling-results │ ├── ElasticAndAggressiveUsers │ │ └── 5000 │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-oper-e8918.html │ │ │ ├── req_delete-created--75ca3.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-operati-419ef.html │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ └── ParallelAndAggressiveUsers │ │ ├── 5000 │ │ ├── index.html │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ │ ├── 10000 │ │ ├── index.html │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ │ └── 15000 │ │ ├── index.html │ │ ├── js │ │ ├── all_sessions.js │ │ ├── assertions.json │ │ ├── assertions.xml │ │ ├── bootstrap.min.js │ │ ├── gatling.js │ │ ├── global_stats.json │ │ ├── highcharts-more.js │ │ ├── highstock.js │ │ ├── jquery.min.js │ │ ├── menu.js │ │ ├── moment.min.js │ │ ├── stats.js │ │ ├── stats.json │ │ ├── theme.js │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ ├── arrow_down.png │ │ ├── arrow_down_black.png │ │ ├── arrow_right.png │ │ ├── arrow_right_black.png │ │ ├── bootstrap.min.css │ │ ├── cible.png │ │ ├── favicon.ico │ │ ├── fond-degrade.gif │ │ ├── fond-lueur.gif │ │ ├── little_arrow_right.png │ │ ├── logo-gatling.jpg │ │ ├── logo.png │ │ ├── sortable.png │ │ ├── sorted-down.png │ │ ├── sorted-up.png │ │ ├── stat-fleche-bas.png │ │ ├── stat-fond.png │ │ ├── stat-l-roue.png │ │ ├── stat-l-temps.png │ │ └── style.css ├── mvnw ├── mvnw.cmd ├── package.json ├── pom.xml ├── proxy.conf.json ├── src │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ ├── app.yml │ │ │ ├── mongodb-cluster.yml │ │ │ ├── mongodb.yml │ │ │ ├── mongodb │ │ │ │ ├── MongoDB.Dockerfile │ │ │ │ └── scripts │ │ │ │ │ └── init_replicaset.js │ │ │ └── sonar.yml │ │ ├── java │ │ │ └── jhipster │ │ │ │ └── reactive │ │ │ │ ├── ApplicationWebXml.java │ │ │ │ ├── DefaultMongoDbApp.java │ │ │ │ ├── aop │ │ │ │ └── logging │ │ │ │ │ └── LoggingAspect.java │ │ │ │ ├── config │ │ │ │ ├── ApplicationProperties.java │ │ │ │ ├── AsyncConfiguration.java │ │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DatabaseConfiguration.java │ │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ │ ├── DefaultProfileUtil.java │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ ├── LocaleConfiguration.java │ │ │ │ ├── LoggingAspectConfiguration.java │ │ │ │ ├── LoggingConfiguration.java │ │ │ │ ├── MetricsConfiguration.java │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ ├── ThymeleafConfiguration.java │ │ │ │ ├── WebConfigurer.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditEventConverter.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── dbmigrations │ │ │ │ │ ├── InitialSetupMigration.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ ├── domain │ │ │ │ ├── AbstractAuditingEntity.java │ │ │ │ ├── Authority.java │ │ │ │ ├── BankAccount.java │ │ │ │ ├── Label.java │ │ │ │ ├── Operation.java │ │ │ │ ├── PersistentAuditEvent.java │ │ │ │ ├── User.java │ │ │ │ └── package-info.java │ │ │ │ ├── repository │ │ │ │ ├── AuthorityRepository.java │ │ │ │ ├── BankAccountRepository.java │ │ │ │ ├── CustomAuditEventRepository.java │ │ │ │ ├── LabelRepository.java │ │ │ │ ├── OperationRepository.java │ │ │ │ ├── PersistenceAuditEventRepository.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── package-info.java │ │ │ │ ├── security │ │ │ │ ├── AuthoritiesConstants.java │ │ │ │ ├── DomainUserDetailsService.java │ │ │ │ ├── SecurityUtils.java │ │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ │ ├── UserNotActivatedException.java │ │ │ │ ├── jwt │ │ │ │ │ ├── JWTConfigurer.java │ │ │ │ │ ├── JWTFilter.java │ │ │ │ │ └── TokenProvider.java │ │ │ │ └── package-info.java │ │ │ │ ├── service │ │ │ │ ├── AuditEventService.java │ │ │ │ ├── MailService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── dto │ │ │ │ │ ├── UserDTO.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── mapper │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── util │ │ │ │ │ └── RandomUtil.java │ │ │ │ └── web │ │ │ │ └── rest │ │ │ │ ├── AccountResource.java │ │ │ │ ├── AuditResource.java │ │ │ │ ├── BankAccountResource.java │ │ │ │ ├── LabelResource.java │ │ │ │ ├── LogsResource.java │ │ │ │ ├── OperationResource.java │ │ │ │ ├── ProfileInfoResource.java │ │ │ │ ├── UserJWTController.java │ │ │ │ ├── UserResource.java │ │ │ │ ├── errors │ │ │ │ ├── CustomParameterizedException.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── ErrorVM.java │ │ │ │ ├── ExceptionTranslator.java │ │ │ │ ├── FieldErrorVM.java │ │ │ │ └── ParameterizedErrorVM.java │ │ │ │ ├── package-info.java │ │ │ │ ├── util │ │ │ │ ├── AsyncUtil.java │ │ │ │ ├── HeaderUtil.java │ │ │ │ └── PaginationUtil.java │ │ │ │ └── vm │ │ │ │ ├── KeyAndPasswordVM.java │ │ │ │ ├── LoggerVM.java │ │ │ │ ├── LoginVM.java │ │ │ │ ├── ManagedUserVM.java │ │ │ │ └── package-info.java │ │ ├── resources │ │ │ ├── banner.txt │ │ │ ├── config │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ └── application.yml │ │ │ ├── i18n │ │ │ │ └── messages.properties │ │ │ ├── logback-spring.xml │ │ │ ├── mails │ │ │ │ ├── activationEmail.html │ │ │ │ ├── creationEmail.html │ │ │ │ └── passwordResetEmail.html │ │ │ └── templates │ │ │ │ └── error.html │ │ └── webapp │ │ │ ├── 404.html │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── account.module.ts │ │ │ │ ├── account.route.ts │ │ │ │ ├── activate │ │ │ │ │ ├── activate.component.html │ │ │ │ │ ├── activate.component.ts │ │ │ │ │ ├── activate.route.ts │ │ │ │ │ └── activate.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ ├── password-reset-finish.component.html │ │ │ │ │ │ ├── password-reset-finish.component.ts │ │ │ │ │ │ ├── password-reset-finish.route.ts │ │ │ │ │ │ └── password-reset-finish.service.ts │ │ │ │ │ └── init │ │ │ │ │ │ ├── password-reset-init.component.html │ │ │ │ │ │ ├── password-reset-init.component.ts │ │ │ │ │ │ ├── password-reset-init.route.ts │ │ │ │ │ │ └── password-reset-init.service.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.ts │ │ │ │ │ ├── password-strength-bar.css │ │ │ │ │ ├── password.component.html │ │ │ │ │ ├── password.component.ts │ │ │ │ │ ├── password.route.ts │ │ │ │ │ └── password.service.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.html │ │ │ │ │ ├── register.component.ts │ │ │ │ │ ├── register.route.ts │ │ │ │ │ └── register.service.ts │ │ │ │ └── settings │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.ts │ │ │ │ │ └── settings.route.ts │ │ │ ├── admin │ │ │ │ ├── admin.module.ts │ │ │ │ ├── admin.route.ts │ │ │ │ ├── audits │ │ │ │ │ ├── audit-data.model.ts │ │ │ │ │ ├── audit.model.ts │ │ │ │ │ ├── audits.component.html │ │ │ │ │ ├── audits.component.ts │ │ │ │ │ ├── audits.route.ts │ │ │ │ │ └── audits.service.ts │ │ │ │ ├── configuration │ │ │ │ │ ├── configuration.component.html │ │ │ │ │ ├── configuration.component.ts │ │ │ │ │ ├── configuration.route.ts │ │ │ │ │ └── configuration.service.ts │ │ │ │ ├── docs │ │ │ │ │ ├── docs.component.html │ │ │ │ │ ├── docs.component.ts │ │ │ │ │ └── docs.route.ts │ │ │ │ ├── health │ │ │ │ │ ├── health-modal.component.html │ │ │ │ │ ├── health-modal.component.ts │ │ │ │ │ ├── health.component.html │ │ │ │ │ ├── health.component.ts │ │ │ │ │ ├── health.route.ts │ │ │ │ │ └── health.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logs │ │ │ │ │ ├── log.model.ts │ │ │ │ │ ├── logs.component.html │ │ │ │ │ ├── logs.component.ts │ │ │ │ │ ├── logs.route.ts │ │ │ │ │ └── logs.service.ts │ │ │ │ ├── metrics │ │ │ │ │ ├── metrics-modal.component.html │ │ │ │ │ ├── metrics-modal.component.ts │ │ │ │ │ ├── metrics.component.html │ │ │ │ │ ├── metrics.component.ts │ │ │ │ │ ├── metrics.route.ts │ │ │ │ │ └── metrics.service.ts │ │ │ │ └── user-management │ │ │ │ │ ├── user-management-delete-dialog.component.html │ │ │ │ │ ├── user-management-delete-dialog.component.ts │ │ │ │ │ ├── user-management-detail.component.html │ │ │ │ │ ├── user-management-detail.component.ts │ │ │ │ │ ├── user-management-dialog.component.html │ │ │ │ │ ├── user-management-dialog.component.ts │ │ │ │ │ ├── user-management.component.html │ │ │ │ │ ├── user-management.component.ts │ │ │ │ │ ├── user-management.route.ts │ │ │ │ │ └── user-modal.service.ts │ │ │ ├── app.constants.ts │ │ │ ├── app.main.ts │ │ │ ├── app.module.ts │ │ │ ├── app.route.ts │ │ │ ├── blocks │ │ │ │ ├── config │ │ │ │ │ ├── prod.config.ts │ │ │ │ │ └── uib-pagination.config.ts │ │ │ │ └── interceptor │ │ │ │ │ ├── auth-expired.interceptor.ts │ │ │ │ │ ├── auth.interceptor.ts │ │ │ │ │ ├── errorhandler.interceptor.ts │ │ │ │ │ ├── http.provider.ts │ │ │ │ │ └── notification.interceptor.ts │ │ │ ├── entities │ │ │ │ ├── bank-account │ │ │ │ │ ├── bank-account-delete-dialog.component.html │ │ │ │ │ ├── bank-account-delete-dialog.component.ts │ │ │ │ │ ├── bank-account-detail.component.html │ │ │ │ │ ├── bank-account-detail.component.ts │ │ │ │ │ ├── bank-account-dialog.component.html │ │ │ │ │ ├── bank-account-dialog.component.ts │ │ │ │ │ ├── bank-account-popup.service.ts │ │ │ │ │ ├── bank-account.component.html │ │ │ │ │ ├── bank-account.component.ts │ │ │ │ │ ├── bank-account.model.ts │ │ │ │ │ ├── bank-account.module.ts │ │ │ │ │ ├── bank-account.route.ts │ │ │ │ │ ├── bank-account.service.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── entity.module.ts │ │ │ │ ├── label │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── label-delete-dialog.component.html │ │ │ │ │ ├── label-delete-dialog.component.ts │ │ │ │ │ ├── label-detail.component.html │ │ │ │ │ ├── label-detail.component.ts │ │ │ │ │ ├── label-dialog.component.html │ │ │ │ │ ├── label-dialog.component.ts │ │ │ │ │ ├── label-popup.service.ts │ │ │ │ │ ├── label.component.html │ │ │ │ │ ├── label.component.ts │ │ │ │ │ ├── label.model.ts │ │ │ │ │ ├── label.module.ts │ │ │ │ │ ├── label.route.ts │ │ │ │ │ └── label.service.ts │ │ │ │ └── operation │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── operation-delete-dialog.component.html │ │ │ │ │ ├── operation-delete-dialog.component.ts │ │ │ │ │ ├── operation-detail.component.html │ │ │ │ │ ├── operation-detail.component.ts │ │ │ │ │ ├── operation-dialog.component.html │ │ │ │ │ ├── operation-dialog.component.ts │ │ │ │ │ ├── operation-popup.service.ts │ │ │ │ │ ├── operation.component.html │ │ │ │ │ ├── operation.component.ts │ │ │ │ │ ├── operation.model.ts │ │ │ │ │ ├── operation.module.ts │ │ │ │ │ ├── operation.route.ts │ │ │ │ │ └── operation.service.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.ts │ │ │ │ ├── home.css │ │ │ │ ├── home.module.ts │ │ │ │ ├── home.route.ts │ │ │ │ └── index.ts │ │ │ ├── layouts │ │ │ │ ├── error │ │ │ │ │ ├── error.component.html │ │ │ │ │ ├── error.component.ts │ │ │ │ │ └── error.route.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layout-routing.module.ts │ │ │ │ ├── main │ │ │ │ │ ├── main.component.html │ │ │ │ │ └── main.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ ├── navbar.component.ts │ │ │ │ │ └── navbar.css │ │ │ │ └── profiles │ │ │ │ │ ├── page-ribbon.component.ts │ │ │ │ │ ├── page-ribbon.css │ │ │ │ │ ├── profile-info.model.ts │ │ │ │ │ └── profile.service.ts │ │ │ ├── polyfills.ts │ │ │ ├── shared │ │ │ │ ├── alert │ │ │ │ │ ├── alert-error.component.ts │ │ │ │ │ └── alert.component.ts │ │ │ │ ├── auth │ │ │ │ │ ├── account.service.ts │ │ │ │ │ ├── auth-jwt.service.ts │ │ │ │ │ ├── csrf.service.ts │ │ │ │ │ ├── has-any-authority.directive.ts │ │ │ │ │ ├── principal.service.ts │ │ │ │ │ ├── state-storage.service.ts │ │ │ │ │ └── user-route-access-service.ts │ │ │ │ ├── constants │ │ │ │ │ └── pagination.constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── login │ │ │ │ │ ├── login-modal.service.ts │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.service.ts │ │ │ │ ├── model │ │ │ │ │ ├── base-entity.ts │ │ │ │ │ ├── request-util.ts │ │ │ │ │ └── response-wrapper.model.ts │ │ │ │ ├── shared-common.module.ts │ │ │ │ ├── shared-libs.module.ts │ │ │ │ ├── shared.module.ts │ │ │ │ └── user │ │ │ │ │ ├── account.model.ts │ │ │ │ │ ├── user.model.ts │ │ │ │ │ └── user.service.ts │ │ │ └── vendor.ts │ │ │ ├── content │ │ │ ├── css │ │ │ │ ├── documentation.css │ │ │ │ ├── global.css │ │ │ │ └── vendor.css │ │ │ └── images │ │ │ │ ├── hipster.png │ │ │ │ ├── hipster2x.png │ │ │ │ └── logo-jhipster.png │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.webapp │ │ │ ├── robots.txt │ │ │ ├── sw.js │ │ │ └── swagger-ui │ │ │ ├── images │ │ │ └── throbber.gif │ │ │ └── index.html │ └── test │ │ ├── gatling │ │ ├── bin │ │ │ ├── gatling.bat │ │ │ ├── gatling.sh │ │ │ ├── recorder.bat │ │ │ └── recorder.sh │ │ ├── conf │ │ │ ├── gatling.conf │ │ │ └── logback.xml │ │ └── user-files │ │ │ └── simulations │ │ │ ├── BankAccountGatlingTest.scala │ │ │ ├── LabelGatlingTest.scala │ │ │ └── OperationGatlingTest.scala │ │ ├── java │ │ └── jhipster │ │ │ └── reactive │ │ │ ├── config │ │ │ ├── WebConfigurerTest.java │ │ │ └── WebConfigurerTestController.java │ │ │ ├── repository │ │ │ └── CustomAuditEventRepositoryIntTest.java │ │ │ ├── security │ │ │ ├── SecurityUtilsUnitTest.java │ │ │ └── jwt │ │ │ │ ├── JWTFilterTest.java │ │ │ │ └── TokenProviderTest.java │ │ │ ├── service │ │ │ ├── MailServiceIntTest.java │ │ │ └── UserServiceIntTest.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── AccountResourceIntTest.java │ │ │ ├── AuditResourceIntTest.java │ │ │ ├── BankAccountResourceIntTest.java │ │ │ ├── LabelResourceIntTest.java │ │ │ ├── LogsResourceIntTest.java │ │ │ ├── OperationResourceIntTest.java │ │ │ ├── ProfileInfoResourceIntTest.java │ │ │ ├── TestUtil.java │ │ │ ├── UserJWTControllerIntTest.java │ │ │ ├── UserResourceIntTest.java │ │ │ └── errors │ │ │ ├── ExceptionTranslatorIntTest.java │ │ │ └── ExceptionTranslatorTestController.java │ │ ├── javascript │ │ ├── karma.conf.js │ │ └── spec │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── activate │ │ │ │ │ └── activate.component.spec.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ └── password-reset-finish.component.spec.ts │ │ │ │ │ └── init │ │ │ │ │ │ └── password-reset-init.component.spec.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.spec.ts │ │ │ │ │ └── password.component.spec.ts │ │ │ │ ├── register │ │ │ │ │ └── register.component.spec.ts │ │ │ │ └── settings │ │ │ │ │ └── settings.component.spec.ts │ │ │ ├── admin │ │ │ │ ├── audits │ │ │ │ │ └── audits.component.spec.ts │ │ │ │ └── health │ │ │ │ │ └── health.component.spec.ts │ │ │ └── entities │ │ │ │ ├── bank-account │ │ │ │ └── bank-account-detail.component.spec.ts │ │ │ │ ├── label │ │ │ │ └── label-detail.component.spec.ts │ │ │ │ └── operation │ │ │ │ └── operation-detail.component.spec.ts │ │ │ ├── entry.ts │ │ │ ├── helpers │ │ │ ├── mock-account.service.ts │ │ │ ├── mock-principal.service.ts │ │ │ ├── mock-route.service.ts │ │ │ └── spyobject.ts │ │ │ └── test.module.ts │ │ └── resources │ │ ├── config │ │ └── application.yml │ │ ├── i18n │ │ └── messages_en.properties │ │ ├── logback.xml │ │ └── mails │ │ └── testEmail.html ├── tsconfig-aot.json ├── tsconfig.json ├── tslint.json └── webpack │ ├── logo-jhipster.png │ ├── utils.js │ ├── webpack.common.js │ ├── webpack.dev.js │ ├── webpack.prod.js │ └── webpack.vendor.js ├── onlyoperationReporeactive ├── .angular-cli.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jhipster │ ├── BankAccount.json │ ├── Label.json │ └── Operation.json ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── .yo-rc.json ├── README.md ├── gatling-results │ ├── ElasticAndAggressiveUsers │ │ └── 5000 │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-oper-e8918.html │ │ │ ├── req_delete-created--75ca3.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-operati-419ef.html │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ └── ParallelAndAggressiveUsers │ │ ├── 5000 │ │ ├── index.html │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ │ ├── 10000 │ │ ├── index.html │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ │ └── 15000 │ │ ├── index.html │ │ ├── js │ │ ├── all_sessions.js │ │ ├── assertions.json │ │ ├── assertions.xml │ │ ├── bootstrap.min.js │ │ ├── gatling.js │ │ ├── global_stats.json │ │ ├── highcharts-more.js │ │ ├── highstock.js │ │ ├── jquery.min.js │ │ ├── menu.js │ │ ├── moment.min.js │ │ ├── stats.js │ │ ├── stats.json │ │ ├── theme.js │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ ├── arrow_down.png │ │ ├── arrow_down_black.png │ │ ├── arrow_right.png │ │ ├── arrow_right_black.png │ │ ├── bootstrap.min.css │ │ ├── cible.png │ │ ├── favicon.ico │ │ ├── fond-degrade.gif │ │ ├── fond-lueur.gif │ │ ├── little_arrow_right.png │ │ ├── logo-gatling.jpg │ │ ├── logo.png │ │ ├── sortable.png │ │ ├── sorted-down.png │ │ ├── sorted-up.png │ │ ├── stat-fleche-bas.png │ │ ├── stat-fond.png │ │ ├── stat-l-roue.png │ │ ├── stat-l-temps.png │ │ └── style.css ├── mvnw ├── mvnw.cmd ├── package.json ├── pom.xml ├── proxy.conf.json ├── src │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ ├── app.yml │ │ │ ├── mongodb-cluster.yml │ │ │ ├── mongodb.yml │ │ │ ├── mongodb │ │ │ │ ├── MongoDB.Dockerfile │ │ │ │ └── scripts │ │ │ │ │ └── init_replicaset.js │ │ │ └── sonar.yml │ │ ├── java │ │ │ └── jhipster │ │ │ │ └── reactive │ │ │ │ ├── ApplicationWebXml.java │ │ │ │ ├── DefaultMongoDbApp.java │ │ │ │ ├── aop │ │ │ │ └── logging │ │ │ │ │ └── LoggingAspect.java │ │ │ │ ├── config │ │ │ │ ├── ApplicationProperties.java │ │ │ │ ├── AsyncConfiguration.java │ │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DatabaseConfiguration.java │ │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ │ ├── DefaultProfileUtil.java │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ ├── LocaleConfiguration.java │ │ │ │ ├── LoggingAspectConfiguration.java │ │ │ │ ├── LoggingConfiguration.java │ │ │ │ ├── MetricsConfiguration.java │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ ├── ThymeleafConfiguration.java │ │ │ │ ├── WebConfigurer.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditEventConverter.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── dbmigrations │ │ │ │ │ ├── InitialSetupMigration.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ ├── domain │ │ │ │ ├── AbstractAuditingEntity.java │ │ │ │ ├── Authority.java │ │ │ │ ├── BankAccount.java │ │ │ │ ├── Label.java │ │ │ │ ├── Operation.java │ │ │ │ ├── PersistentAuditEvent.java │ │ │ │ ├── User.java │ │ │ │ └── package-info.java │ │ │ │ ├── repository │ │ │ │ ├── AuthorityRepository.java │ │ │ │ ├── BankAccountRepository.java │ │ │ │ ├── CustomAuditEventRepository.java │ │ │ │ ├── LabelRepository.java │ │ │ │ ├── OperationRepository.java │ │ │ │ ├── PersistenceAuditEventRepository.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── package-info.java │ │ │ │ ├── security │ │ │ │ ├── AuthoritiesConstants.java │ │ │ │ ├── DomainUserDetailsService.java │ │ │ │ ├── SecurityUtils.java │ │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ │ ├── UserNotActivatedException.java │ │ │ │ ├── jwt │ │ │ │ │ ├── JWTConfigurer.java │ │ │ │ │ ├── JWTFilter.java │ │ │ │ │ └── TokenProvider.java │ │ │ │ └── package-info.java │ │ │ │ ├── service │ │ │ │ ├── AuditEventService.java │ │ │ │ ├── MailService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── dto │ │ │ │ │ ├── UserDTO.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── mapper │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── util │ │ │ │ │ └── RandomUtil.java │ │ │ │ └── web │ │ │ │ └── rest │ │ │ │ ├── AccountResource.java │ │ │ │ ├── AuditResource.java │ │ │ │ ├── BankAccountResource.java │ │ │ │ ├── LabelResource.java │ │ │ │ ├── LogsResource.java │ │ │ │ ├── OperationResource.java │ │ │ │ ├── ProfileInfoResource.java │ │ │ │ ├── UserJWTController.java │ │ │ │ ├── UserResource.java │ │ │ │ ├── errors │ │ │ │ ├── CustomParameterizedException.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── ErrorVM.java │ │ │ │ ├── ExceptionTranslator.java │ │ │ │ ├── FieldErrorVM.java │ │ │ │ └── ParameterizedErrorVM.java │ │ │ │ ├── package-info.java │ │ │ │ ├── util │ │ │ │ ├── AsyncUtil.java │ │ │ │ ├── HeaderUtil.java │ │ │ │ └── PaginationUtil.java │ │ │ │ └── vm │ │ │ │ ├── KeyAndPasswordVM.java │ │ │ │ ├── LoggerVM.java │ │ │ │ ├── LoginVM.java │ │ │ │ ├── ManagedUserVM.java │ │ │ │ └── package-info.java │ │ ├── resources │ │ │ ├── banner.txt │ │ │ ├── config │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ └── application.yml │ │ │ ├── i18n │ │ │ │ └── messages.properties │ │ │ ├── logback-spring.xml │ │ │ ├── mails │ │ │ │ ├── activationEmail.html │ │ │ │ ├── creationEmail.html │ │ │ │ └── passwordResetEmail.html │ │ │ └── templates │ │ │ │ └── error.html │ │ └── webapp │ │ │ ├── 404.html │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── account.module.ts │ │ │ │ ├── account.route.ts │ │ │ │ ├── activate │ │ │ │ │ ├── activate.component.html │ │ │ │ │ ├── activate.component.ts │ │ │ │ │ ├── activate.route.ts │ │ │ │ │ └── activate.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ ├── password-reset-finish.component.html │ │ │ │ │ │ ├── password-reset-finish.component.ts │ │ │ │ │ │ ├── password-reset-finish.route.ts │ │ │ │ │ │ └── password-reset-finish.service.ts │ │ │ │ │ └── init │ │ │ │ │ │ ├── password-reset-init.component.html │ │ │ │ │ │ ├── password-reset-init.component.ts │ │ │ │ │ │ ├── password-reset-init.route.ts │ │ │ │ │ │ └── password-reset-init.service.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.ts │ │ │ │ │ ├── password-strength-bar.css │ │ │ │ │ ├── password.component.html │ │ │ │ │ ├── password.component.ts │ │ │ │ │ ├── password.route.ts │ │ │ │ │ └── password.service.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.html │ │ │ │ │ ├── register.component.ts │ │ │ │ │ ├── register.route.ts │ │ │ │ │ └── register.service.ts │ │ │ │ └── settings │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.ts │ │ │ │ │ └── settings.route.ts │ │ │ ├── admin │ │ │ │ ├── admin.module.ts │ │ │ │ ├── admin.route.ts │ │ │ │ ├── audits │ │ │ │ │ ├── audit-data.model.ts │ │ │ │ │ ├── audit.model.ts │ │ │ │ │ ├── audits.component.html │ │ │ │ │ ├── audits.component.ts │ │ │ │ │ ├── audits.route.ts │ │ │ │ │ └── audits.service.ts │ │ │ │ ├── configuration │ │ │ │ │ ├── configuration.component.html │ │ │ │ │ ├── configuration.component.ts │ │ │ │ │ ├── configuration.route.ts │ │ │ │ │ └── configuration.service.ts │ │ │ │ ├── docs │ │ │ │ │ ├── docs.component.html │ │ │ │ │ ├── docs.component.ts │ │ │ │ │ └── docs.route.ts │ │ │ │ ├── health │ │ │ │ │ ├── health-modal.component.html │ │ │ │ │ ├── health-modal.component.ts │ │ │ │ │ ├── health.component.html │ │ │ │ │ ├── health.component.ts │ │ │ │ │ ├── health.route.ts │ │ │ │ │ └── health.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logs │ │ │ │ │ ├── log.model.ts │ │ │ │ │ ├── logs.component.html │ │ │ │ │ ├── logs.component.ts │ │ │ │ │ ├── logs.route.ts │ │ │ │ │ └── logs.service.ts │ │ │ │ ├── metrics │ │ │ │ │ ├── metrics-modal.component.html │ │ │ │ │ ├── metrics-modal.component.ts │ │ │ │ │ ├── metrics.component.html │ │ │ │ │ ├── metrics.component.ts │ │ │ │ │ ├── metrics.route.ts │ │ │ │ │ └── metrics.service.ts │ │ │ │ └── user-management │ │ │ │ │ ├── user-management-delete-dialog.component.html │ │ │ │ │ ├── user-management-delete-dialog.component.ts │ │ │ │ │ ├── user-management-detail.component.html │ │ │ │ │ ├── user-management-detail.component.ts │ │ │ │ │ ├── user-management-dialog.component.html │ │ │ │ │ ├── user-management-dialog.component.ts │ │ │ │ │ ├── user-management.component.html │ │ │ │ │ ├── user-management.component.ts │ │ │ │ │ ├── user-management.route.ts │ │ │ │ │ └── user-modal.service.ts │ │ │ ├── app.constants.ts │ │ │ ├── app.main.ts │ │ │ ├── app.module.ts │ │ │ ├── app.route.ts │ │ │ ├── blocks │ │ │ │ ├── config │ │ │ │ │ ├── prod.config.ts │ │ │ │ │ └── uib-pagination.config.ts │ │ │ │ └── interceptor │ │ │ │ │ ├── auth-expired.interceptor.ts │ │ │ │ │ ├── auth.interceptor.ts │ │ │ │ │ ├── errorhandler.interceptor.ts │ │ │ │ │ ├── http.provider.ts │ │ │ │ │ └── notification.interceptor.ts │ │ │ ├── entities │ │ │ │ ├── bank-account │ │ │ │ │ ├── bank-account-delete-dialog.component.html │ │ │ │ │ ├── bank-account-delete-dialog.component.ts │ │ │ │ │ ├── bank-account-detail.component.html │ │ │ │ │ ├── bank-account-detail.component.ts │ │ │ │ │ ├── bank-account-dialog.component.html │ │ │ │ │ ├── bank-account-dialog.component.ts │ │ │ │ │ ├── bank-account-popup.service.ts │ │ │ │ │ ├── bank-account.component.html │ │ │ │ │ ├── bank-account.component.ts │ │ │ │ │ ├── bank-account.model.ts │ │ │ │ │ ├── bank-account.module.ts │ │ │ │ │ ├── bank-account.route.ts │ │ │ │ │ ├── bank-account.service.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── entity.module.ts │ │ │ │ ├── label │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── label-delete-dialog.component.html │ │ │ │ │ ├── label-delete-dialog.component.ts │ │ │ │ │ ├── label-detail.component.html │ │ │ │ │ ├── label-detail.component.ts │ │ │ │ │ ├── label-dialog.component.html │ │ │ │ │ ├── label-dialog.component.ts │ │ │ │ │ ├── label-popup.service.ts │ │ │ │ │ ├── label.component.html │ │ │ │ │ ├── label.component.ts │ │ │ │ │ ├── label.model.ts │ │ │ │ │ ├── label.module.ts │ │ │ │ │ ├── label.route.ts │ │ │ │ │ └── label.service.ts │ │ │ │ └── operation │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── operation-delete-dialog.component.html │ │ │ │ │ ├── operation-delete-dialog.component.ts │ │ │ │ │ ├── operation-detail.component.html │ │ │ │ │ ├── operation-detail.component.ts │ │ │ │ │ ├── operation-dialog.component.html │ │ │ │ │ ├── operation-dialog.component.ts │ │ │ │ │ ├── operation-popup.service.ts │ │ │ │ │ ├── operation.component.html │ │ │ │ │ ├── operation.component.ts │ │ │ │ │ ├── operation.model.ts │ │ │ │ │ ├── operation.module.ts │ │ │ │ │ ├── operation.route.ts │ │ │ │ │ └── operation.service.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.ts │ │ │ │ ├── home.css │ │ │ │ ├── home.module.ts │ │ │ │ ├── home.route.ts │ │ │ │ └── index.ts │ │ │ ├── layouts │ │ │ │ ├── error │ │ │ │ │ ├── error.component.html │ │ │ │ │ ├── error.component.ts │ │ │ │ │ └── error.route.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layout-routing.module.ts │ │ │ │ ├── main │ │ │ │ │ ├── main.component.html │ │ │ │ │ └── main.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ ├── navbar.component.ts │ │ │ │ │ └── navbar.css │ │ │ │ └── profiles │ │ │ │ │ ├── page-ribbon.component.ts │ │ │ │ │ ├── page-ribbon.css │ │ │ │ │ ├── profile-info.model.ts │ │ │ │ │ └── profile.service.ts │ │ │ ├── polyfills.ts │ │ │ ├── shared │ │ │ │ ├── alert │ │ │ │ │ ├── alert-error.component.ts │ │ │ │ │ └── alert.component.ts │ │ │ │ ├── auth │ │ │ │ │ ├── account.service.ts │ │ │ │ │ ├── auth-jwt.service.ts │ │ │ │ │ ├── csrf.service.ts │ │ │ │ │ ├── has-any-authority.directive.ts │ │ │ │ │ ├── principal.service.ts │ │ │ │ │ ├── state-storage.service.ts │ │ │ │ │ └── user-route-access-service.ts │ │ │ │ ├── constants │ │ │ │ │ └── pagination.constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── login │ │ │ │ │ ├── login-modal.service.ts │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.service.ts │ │ │ │ ├── model │ │ │ │ │ ├── base-entity.ts │ │ │ │ │ ├── request-util.ts │ │ │ │ │ └── response-wrapper.model.ts │ │ │ │ ├── shared-common.module.ts │ │ │ │ ├── shared-libs.module.ts │ │ │ │ ├── shared.module.ts │ │ │ │ └── user │ │ │ │ │ ├── account.model.ts │ │ │ │ │ ├── user.model.ts │ │ │ │ │ └── user.service.ts │ │ │ └── vendor.ts │ │ │ ├── content │ │ │ ├── css │ │ │ │ ├── documentation.css │ │ │ │ ├── global.css │ │ │ │ └── vendor.css │ │ │ └── images │ │ │ │ ├── hipster.png │ │ │ │ ├── hipster2x.png │ │ │ │ └── logo-jhipster.png │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.webapp │ │ │ ├── robots.txt │ │ │ ├── sw.js │ │ │ └── swagger-ui │ │ │ ├── images │ │ │ └── throbber.gif │ │ │ └── index.html │ └── test │ │ ├── gatling │ │ ├── bin │ │ │ ├── gatling.bat │ │ │ ├── gatling.sh │ │ │ ├── recorder.bat │ │ │ └── recorder.sh │ │ ├── conf │ │ │ ├── gatling.conf │ │ │ └── logback.xml │ │ └── user-files │ │ │ └── simulations │ │ │ ├── BankAccountGatlingTest.scala │ │ │ ├── LabelGatlingTest.scala │ │ │ └── OperationGatlingTest.scala │ │ ├── java │ │ └── jhipster │ │ │ └── reactive │ │ │ ├── config │ │ │ ├── WebConfigurerTest.java │ │ │ └── WebConfigurerTestController.java │ │ │ ├── repository │ │ │ └── CustomAuditEventRepositoryIntTest.java │ │ │ ├── security │ │ │ ├── SecurityUtilsUnitTest.java │ │ │ └── jwt │ │ │ │ ├── JWTFilterTest.java │ │ │ │ └── TokenProviderTest.java │ │ │ ├── service │ │ │ ├── MailServiceIntTest.java │ │ │ └── UserServiceIntTest.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── AccountResourceIntTest.java │ │ │ ├── AuditResourceIntTest.java │ │ │ ├── BankAccountResourceIntTest.java │ │ │ ├── LabelResourceIntTest.java │ │ │ ├── LogsResourceIntTest.java │ │ │ ├── OperationResourceIntTest.java │ │ │ ├── ProfileInfoResourceIntTest.java │ │ │ ├── TestUtil.java │ │ │ ├── UserJWTControllerIntTest.java │ │ │ ├── UserResourceIntTest.java │ │ │ └── errors │ │ │ ├── ExceptionTranslatorIntTest.java │ │ │ └── ExceptionTranslatorTestController.java │ │ ├── javascript │ │ ├── karma.conf.js │ │ └── spec │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── activate │ │ │ │ │ └── activate.component.spec.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ └── password-reset-finish.component.spec.ts │ │ │ │ │ └── init │ │ │ │ │ │ └── password-reset-init.component.spec.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.spec.ts │ │ │ │ │ └── password.component.spec.ts │ │ │ │ ├── register │ │ │ │ │ └── register.component.spec.ts │ │ │ │ └── settings │ │ │ │ │ └── settings.component.spec.ts │ │ │ ├── admin │ │ │ │ ├── audits │ │ │ │ │ └── audits.component.spec.ts │ │ │ │ └── health │ │ │ │ │ └── health.component.spec.ts │ │ │ └── entities │ │ │ │ ├── bank-account │ │ │ │ └── bank-account-detail.component.spec.ts │ │ │ │ ├── label │ │ │ │ └── label-detail.component.spec.ts │ │ │ │ └── operation │ │ │ │ └── operation-detail.component.spec.ts │ │ │ ├── entry.ts │ │ │ ├── helpers │ │ │ ├── mock-account.service.ts │ │ │ ├── mock-principal.service.ts │ │ │ ├── mock-route.service.ts │ │ │ └── spyobject.ts │ │ │ └── test.module.ts │ │ └── resources │ │ ├── config │ │ └── application.yml │ │ ├── i18n │ │ └── messages_en.properties │ │ ├── logback.xml │ │ └── mails │ │ └── testEmail.html ├── tsconfig-aot.json ├── tsconfig.json ├── tslint.json └── webpack │ ├── logo-jhipster.png │ ├── utils.js │ ├── webpack.common.js │ ├── webpack.dev.js │ ├── webpack.prod.js │ └── webpack.vendor.js ├── pom.xml ├── reactiveMongoDB ├── .angular-cli.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jhipster │ ├── BankAccount.json │ ├── Label.json │ └── Operation.json ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── .yo-rc.json ├── README.md ├── gatling-results │ ├── ElasticAndAggressiveUsers │ │ └── 5000 │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-oper-e8918.html │ │ │ ├── req_delete-created--75ca3.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-operati-419ef.html │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ ├── ElasticAndSlowUsers │ │ ├── 5000 │ │ │ ├── bankaccountgatlingtest-1499357900502 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-bank-2a2a3.html │ │ │ │ ├── req_delete-created--f98fb.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-bankacc-cc200.html │ │ │ │ ├── req_get-created-ban-af22b.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ ├── labelgatlingtest-1499357202775 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-labe-44e80.html │ │ │ │ ├── req_delete-created--bc348.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-labels-f75c9.html │ │ │ │ ├── req_get-created-lab-1c0f7.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ └── operationgatlingtest-1499358425571 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-oper-e8918.html │ │ │ │ ├── req_delete-created--75ca3.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-operati-419ef.html │ │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ └── 10000 │ │ │ ├── bankaccountgatlingtest-1499348131194 │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-bank-2a2a3.html │ │ │ ├── req_delete-created--f98fb.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-bankacc-cc200.html │ │ │ ├── req_get-created-ban-af22b.html │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ │ ├── labelgatlingtest-1499347521343 │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-labe-44e80.html │ │ │ ├── req_delete-created--bc348.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-labels-f75c9.html │ │ │ ├── req_get-created-lab-1c0f7.html │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ │ └── operationgatlingtest-1499440957364 │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-oper-e8918.html │ │ │ ├── req_delete-created--75ca3.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-operati-419ef.html │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ └── ParallelAndAggressiveUsers │ │ ├── 5000 │ │ ├── index.html │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ │ ├── 10000 │ │ ├── index.html │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ │ └── 15000 │ │ ├── index.html │ │ ├── js │ │ ├── all_sessions.js │ │ ├── assertions.json │ │ ├── assertions.xml │ │ ├── bootstrap.min.js │ │ ├── gatling.js │ │ ├── global_stats.json │ │ ├── highcharts-more.js │ │ ├── highstock.js │ │ ├── jquery.min.js │ │ ├── menu.js │ │ ├── moment.min.js │ │ ├── stats.js │ │ ├── stats.json │ │ ├── theme.js │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ ├── arrow_down.png │ │ ├── arrow_down_black.png │ │ ├── arrow_right.png │ │ ├── arrow_right_black.png │ │ ├── bootstrap.min.css │ │ ├── cible.png │ │ ├── favicon.ico │ │ ├── fond-degrade.gif │ │ ├── fond-lueur.gif │ │ ├── little_arrow_right.png │ │ ├── logo-gatling.jpg │ │ ├── logo.png │ │ ├── sortable.png │ │ ├── sorted-down.png │ │ ├── sorted-up.png │ │ ├── stat-fleche-bas.png │ │ ├── stat-fond.png │ │ ├── stat-l-roue.png │ │ ├── stat-l-temps.png │ │ └── style.css ├── mvnw ├── mvnw.cmd ├── package.json ├── pom.xml ├── proxy.conf.json ├── src │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ ├── app.yml │ │ │ ├── mongodb-cluster.yml │ │ │ ├── mongodb.yml │ │ │ ├── mongodb │ │ │ │ ├── MongoDB.Dockerfile │ │ │ │ └── scripts │ │ │ │ │ └── init_replicaset.js │ │ │ └── sonar.yml │ │ ├── java │ │ │ └── jhipster │ │ │ │ └── reactive │ │ │ │ ├── ApplicationWebXml.java │ │ │ │ ├── ReactiveMongoDbApp.java │ │ │ │ ├── aop │ │ │ │ └── logging │ │ │ │ │ └── LoggingAspect.java │ │ │ │ ├── config │ │ │ │ ├── ApplicationProperties.java │ │ │ │ ├── AsyncConfiguration.java │ │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DatabaseConfiguration.java │ │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ │ ├── DefaultProfileUtil.java │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ ├── LocaleConfiguration.java │ │ │ │ ├── LoggingAspectConfiguration.java │ │ │ │ ├── LoggingConfiguration.java │ │ │ │ ├── MetricsConfiguration.java │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ ├── ThymeleafConfiguration.java │ │ │ │ ├── WebConfigurer.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditEventConverter.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── dbmigrations │ │ │ │ │ ├── InitialSetupMigration.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ ├── domain │ │ │ │ ├── AbstractAuditingEntity.java │ │ │ │ ├── Authority.java │ │ │ │ ├── BankAccount.java │ │ │ │ ├── Label.java │ │ │ │ ├── Operation.java │ │ │ │ ├── PersistentAuditEvent.java │ │ │ │ ├── User.java │ │ │ │ └── package-info.java │ │ │ │ ├── repository │ │ │ │ ├── AuthorityRepository.java │ │ │ │ ├── BankAccountRepository.java │ │ │ │ ├── CustomAuditEventRepository.java │ │ │ │ ├── LabelRepository.java │ │ │ │ ├── OperationRepository.java │ │ │ │ ├── PersistenceAuditEventRepository.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── package-info.java │ │ │ │ ├── security │ │ │ │ ├── AuthoritiesConstants.java │ │ │ │ ├── DomainUserDetailsService.java │ │ │ │ ├── SecurityUtils.java │ │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ │ ├── UserNotActivatedException.java │ │ │ │ ├── jwt │ │ │ │ │ ├── JWTConfigurer.java │ │ │ │ │ ├── JWTFilter.java │ │ │ │ │ └── TokenProvider.java │ │ │ │ └── package-info.java │ │ │ │ ├── service │ │ │ │ ├── AuditEventService.java │ │ │ │ ├── MailService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── dto │ │ │ │ │ ├── UserDTO.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── mapper │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── util │ │ │ │ │ └── RandomUtil.java │ │ │ │ └── web │ │ │ │ └── rest │ │ │ │ ├── AccountResource.java │ │ │ │ ├── AuditResource.java │ │ │ │ ├── BankAccountResource.java │ │ │ │ ├── LabelResource.java │ │ │ │ ├── LogsResource.java │ │ │ │ ├── OperationResource.java │ │ │ │ ├── ProfileInfoResource.java │ │ │ │ ├── UserJWTController.java │ │ │ │ ├── UserResource.java │ │ │ │ ├── errors │ │ │ │ ├── CustomParameterizedException.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── ErrorVM.java │ │ │ │ ├── ExceptionTranslator.java │ │ │ │ ├── FieldErrorVM.java │ │ │ │ └── ParameterizedErrorVM.java │ │ │ │ ├── package-info.java │ │ │ │ ├── util │ │ │ │ ├── AsyncUtil.java │ │ │ │ ├── HeaderUtil.java │ │ │ │ └── PaginationUtil.java │ │ │ │ └── vm │ │ │ │ ├── KeyAndPasswordVM.java │ │ │ │ ├── LoggerVM.java │ │ │ │ ├── LoginVM.java │ │ │ │ ├── ManagedUserVM.java │ │ │ │ └── package-info.java │ │ ├── resources │ │ │ ├── banner.txt │ │ │ ├── config │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ └── application.yml │ │ │ ├── i18n │ │ │ │ └── messages.properties │ │ │ ├── logback-spring.xml │ │ │ ├── mails │ │ │ │ ├── activationEmail.html │ │ │ │ ├── creationEmail.html │ │ │ │ └── passwordResetEmail.html │ │ │ └── templates │ │ │ │ └── error.html │ │ └── webapp │ │ │ ├── 404.html │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── account.module.ts │ │ │ │ ├── account.route.ts │ │ │ │ ├── activate │ │ │ │ │ ├── activate.component.html │ │ │ │ │ ├── activate.component.ts │ │ │ │ │ ├── activate.route.ts │ │ │ │ │ └── activate.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ ├── password-reset-finish.component.html │ │ │ │ │ │ ├── password-reset-finish.component.ts │ │ │ │ │ │ ├── password-reset-finish.route.ts │ │ │ │ │ │ └── password-reset-finish.service.ts │ │ │ │ │ └── init │ │ │ │ │ │ ├── password-reset-init.component.html │ │ │ │ │ │ ├── password-reset-init.component.ts │ │ │ │ │ │ ├── password-reset-init.route.ts │ │ │ │ │ │ └── password-reset-init.service.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.ts │ │ │ │ │ ├── password-strength-bar.css │ │ │ │ │ ├── password.component.html │ │ │ │ │ ├── password.component.ts │ │ │ │ │ ├── password.route.ts │ │ │ │ │ └── password.service.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.html │ │ │ │ │ ├── register.component.ts │ │ │ │ │ ├── register.route.ts │ │ │ │ │ └── register.service.ts │ │ │ │ └── settings │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.ts │ │ │ │ │ └── settings.route.ts │ │ │ ├── admin │ │ │ │ ├── admin.module.ts │ │ │ │ ├── admin.route.ts │ │ │ │ ├── audits │ │ │ │ │ ├── audit-data.model.ts │ │ │ │ │ ├── audit.model.ts │ │ │ │ │ ├── audits.component.html │ │ │ │ │ ├── audits.component.ts │ │ │ │ │ ├── audits.route.ts │ │ │ │ │ └── audits.service.ts │ │ │ │ ├── configuration │ │ │ │ │ ├── configuration.component.html │ │ │ │ │ ├── configuration.component.ts │ │ │ │ │ ├── configuration.route.ts │ │ │ │ │ └── configuration.service.ts │ │ │ │ ├── docs │ │ │ │ │ ├── docs.component.html │ │ │ │ │ ├── docs.component.ts │ │ │ │ │ └── docs.route.ts │ │ │ │ ├── health │ │ │ │ │ ├── health-modal.component.html │ │ │ │ │ ├── health-modal.component.ts │ │ │ │ │ ├── health.component.html │ │ │ │ │ ├── health.component.ts │ │ │ │ │ ├── health.route.ts │ │ │ │ │ └── health.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logs │ │ │ │ │ ├── log.model.ts │ │ │ │ │ ├── logs.component.html │ │ │ │ │ ├── logs.component.ts │ │ │ │ │ ├── logs.route.ts │ │ │ │ │ └── logs.service.ts │ │ │ │ ├── metrics │ │ │ │ │ ├── metrics-modal.component.html │ │ │ │ │ ├── metrics-modal.component.ts │ │ │ │ │ ├── metrics.component.html │ │ │ │ │ ├── metrics.component.ts │ │ │ │ │ ├── metrics.route.ts │ │ │ │ │ └── metrics.service.ts │ │ │ │ └── user-management │ │ │ │ │ ├── user-management-delete-dialog.component.html │ │ │ │ │ ├── user-management-delete-dialog.component.ts │ │ │ │ │ ├── user-management-detail.component.html │ │ │ │ │ ├── user-management-detail.component.ts │ │ │ │ │ ├── user-management-dialog.component.html │ │ │ │ │ ├── user-management-dialog.component.ts │ │ │ │ │ ├── user-management.component.html │ │ │ │ │ ├── user-management.component.ts │ │ │ │ │ ├── user-management.route.ts │ │ │ │ │ └── user-modal.service.ts │ │ │ ├── app.constants.ts │ │ │ ├── app.main.ts │ │ │ ├── app.module.ts │ │ │ ├── app.route.ts │ │ │ ├── blocks │ │ │ │ ├── config │ │ │ │ │ ├── prod.config.ts │ │ │ │ │ └── uib-pagination.config.ts │ │ │ │ └── interceptor │ │ │ │ │ ├── auth-expired.interceptor.ts │ │ │ │ │ ├── auth.interceptor.ts │ │ │ │ │ ├── errorhandler.interceptor.ts │ │ │ │ │ ├── http.provider.ts │ │ │ │ │ └── notification.interceptor.ts │ │ │ ├── entities │ │ │ │ ├── bank-account │ │ │ │ │ ├── bank-account-delete-dialog.component.html │ │ │ │ │ ├── bank-account-delete-dialog.component.ts │ │ │ │ │ ├── bank-account-detail.component.html │ │ │ │ │ ├── bank-account-detail.component.ts │ │ │ │ │ ├── bank-account-dialog.component.html │ │ │ │ │ ├── bank-account-dialog.component.ts │ │ │ │ │ ├── bank-account-popup.service.ts │ │ │ │ │ ├── bank-account.component.html │ │ │ │ │ ├── bank-account.component.ts │ │ │ │ │ ├── bank-account.model.ts │ │ │ │ │ ├── bank-account.module.ts │ │ │ │ │ ├── bank-account.route.ts │ │ │ │ │ ├── bank-account.service.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── entity.module.ts │ │ │ │ ├── label │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── label-delete-dialog.component.html │ │ │ │ │ ├── label-delete-dialog.component.ts │ │ │ │ │ ├── label-detail.component.html │ │ │ │ │ ├── label-detail.component.ts │ │ │ │ │ ├── label-dialog.component.html │ │ │ │ │ ├── label-dialog.component.ts │ │ │ │ │ ├── label-popup.service.ts │ │ │ │ │ ├── label.component.html │ │ │ │ │ ├── label.component.ts │ │ │ │ │ ├── label.model.ts │ │ │ │ │ ├── label.module.ts │ │ │ │ │ ├── label.route.ts │ │ │ │ │ └── label.service.ts │ │ │ │ └── operation │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── operation-delete-dialog.component.html │ │ │ │ │ ├── operation-delete-dialog.component.ts │ │ │ │ │ ├── operation-detail.component.html │ │ │ │ │ ├── operation-detail.component.ts │ │ │ │ │ ├── operation-dialog.component.html │ │ │ │ │ ├── operation-dialog.component.ts │ │ │ │ │ ├── operation-popup.service.ts │ │ │ │ │ ├── operation.component.html │ │ │ │ │ ├── operation.component.ts │ │ │ │ │ ├── operation.model.ts │ │ │ │ │ ├── operation.module.ts │ │ │ │ │ ├── operation.route.ts │ │ │ │ │ └── operation.service.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.ts │ │ │ │ ├── home.css │ │ │ │ ├── home.module.ts │ │ │ │ ├── home.route.ts │ │ │ │ └── index.ts │ │ │ ├── layouts │ │ │ │ ├── error │ │ │ │ │ ├── error.component.html │ │ │ │ │ ├── error.component.ts │ │ │ │ │ └── error.route.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layout-routing.module.ts │ │ │ │ ├── main │ │ │ │ │ ├── main.component.html │ │ │ │ │ └── main.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ ├── navbar.component.ts │ │ │ │ │ └── navbar.css │ │ │ │ └── profiles │ │ │ │ │ ├── page-ribbon.component.ts │ │ │ │ │ ├── page-ribbon.css │ │ │ │ │ ├── profile-info.model.ts │ │ │ │ │ └── profile.service.ts │ │ │ ├── polyfills.ts │ │ │ ├── shared │ │ │ │ ├── alert │ │ │ │ │ ├── alert-error.component.ts │ │ │ │ │ └── alert.component.ts │ │ │ │ ├── auth │ │ │ │ │ ├── account.service.ts │ │ │ │ │ ├── auth-jwt.service.ts │ │ │ │ │ ├── csrf.service.ts │ │ │ │ │ ├── has-any-authority.directive.ts │ │ │ │ │ ├── principal.service.ts │ │ │ │ │ ├── state-storage.service.ts │ │ │ │ │ └── user-route-access-service.ts │ │ │ │ ├── constants │ │ │ │ │ └── pagination.constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── login │ │ │ │ │ ├── login-modal.service.ts │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.service.ts │ │ │ │ ├── model │ │ │ │ │ ├── base-entity.ts │ │ │ │ │ ├── request-util.ts │ │ │ │ │ └── response-wrapper.model.ts │ │ │ │ ├── shared-common.module.ts │ │ │ │ ├── shared-libs.module.ts │ │ │ │ ├── shared.module.ts │ │ │ │ └── user │ │ │ │ │ ├── account.model.ts │ │ │ │ │ ├── user.model.ts │ │ │ │ │ └── user.service.ts │ │ │ └── vendor.ts │ │ │ ├── content │ │ │ ├── css │ │ │ │ ├── documentation.css │ │ │ │ ├── global.css │ │ │ │ └── vendor.css │ │ │ └── images │ │ │ │ ├── hipster.png │ │ │ │ ├── hipster2x.png │ │ │ │ └── logo-jhipster.png │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.webapp │ │ │ ├── robots.txt │ │ │ ├── sw.js │ │ │ └── swagger-ui │ │ │ ├── images │ │ │ └── throbber.gif │ │ │ └── index.html │ └── test │ │ ├── gatling │ │ ├── bin │ │ │ ├── gatling.bat │ │ │ ├── gatling.sh │ │ │ ├── recorder.bat │ │ │ └── recorder.sh │ │ ├── conf │ │ │ ├── gatling.conf │ │ │ └── logback.xml │ │ └── user-files │ │ │ └── simulations │ │ │ ├── BankAccountGatlingTest.scala │ │ │ ├── LabelGatlingTest.scala │ │ │ └── OperationGatlingTest.scala │ │ ├── java │ │ └── jhipster │ │ │ └── reactive │ │ │ ├── config │ │ │ ├── WebConfigurerTest.java │ │ │ └── WebConfigurerTestController.java │ │ │ ├── repository │ │ │ └── CustomAuditEventRepositoryIntTest.java │ │ │ ├── security │ │ │ ├── SecurityUtilsUnitTest.java │ │ │ └── jwt │ │ │ │ ├── JWTFilterTest.java │ │ │ │ └── TokenProviderTest.java │ │ │ ├── service │ │ │ ├── MailServiceIntTest.java │ │ │ └── UserServiceIntTest.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── AccountResourceIntTest.java │ │ │ ├── AuditResourceIntTest.java │ │ │ ├── BankAccountResourceIntTest.java │ │ │ ├── LabelResourceIntTest.java │ │ │ ├── LogsResourceIntTest.java │ │ │ ├── OperationResourceIntTest.java │ │ │ ├── ProfileInfoResourceIntTest.java │ │ │ ├── TestUtil.java │ │ │ ├── UserJWTControllerIntTest.java │ │ │ ├── UserResourceIntTest.java │ │ │ └── errors │ │ │ ├── ExceptionTranslatorIntTest.java │ │ │ └── ExceptionTranslatorTestController.java │ │ ├── javascript │ │ ├── karma.conf.js │ │ └── spec │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── activate │ │ │ │ │ └── activate.component.spec.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ └── password-reset-finish.component.spec.ts │ │ │ │ │ └── init │ │ │ │ │ │ └── password-reset-init.component.spec.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.spec.ts │ │ │ │ │ └── password.component.spec.ts │ │ │ │ ├── register │ │ │ │ │ └── register.component.spec.ts │ │ │ │ └── settings │ │ │ │ │ └── settings.component.spec.ts │ │ │ ├── admin │ │ │ │ ├── audits │ │ │ │ │ └── audits.component.spec.ts │ │ │ │ └── health │ │ │ │ │ └── health.component.spec.ts │ │ │ └── entities │ │ │ │ ├── bank-account │ │ │ │ └── bank-account-detail.component.spec.ts │ │ │ │ ├── label │ │ │ │ └── label-detail.component.spec.ts │ │ │ │ └── operation │ │ │ │ └── operation-detail.component.spec.ts │ │ │ ├── entry.ts │ │ │ ├── helpers │ │ │ ├── mock-account.service.ts │ │ │ ├── mock-principal.service.ts │ │ │ ├── mock-route.service.ts │ │ │ └── spyobject.ts │ │ │ └── test.module.ts │ │ └── resources │ │ ├── config │ │ └── application.yml │ │ ├── i18n │ │ └── messages_en.properties │ │ ├── logback.xml │ │ └── mails │ │ └── testEmail.html ├── tsconfig-aot.json ├── tsconfig.json ├── tslint.json ├── webpack │ ├── logo-jhipster.png │ ├── utils.js │ ├── webpack.common.js │ ├── webpack.dev.js │ ├── webpack.prod.js │ └── webpack.vendor.js └── yarn.lock ├── reporeactiveMongoDB ├── .angular-cli.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jhipster │ ├── BankAccount.json │ ├── Label.json │ └── Operation.json ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── .yo-rc.json ├── README.md ├── gatling-results │ ├── ElasticAndSlowUsers │ │ ├── 5000 │ │ │ ├── bankaccountgatlingtest-1499343466465 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-bank-2a2a3.html │ │ │ │ ├── req_delete-created--f98fb.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-bankacc-cc200.html │ │ │ │ ├── req_get-created-ban-af22b.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ ├── labelgatlingtest-1499342943426 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── all_sessions.js │ │ │ │ │ ├── assertions.json │ │ │ │ │ ├── assertions.xml │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── gatling.js │ │ │ │ │ ├── global_stats.json │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.json │ │ │ │ │ ├── theme.js │ │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-labe-44e80.html │ │ │ │ ├── req_delete-created--bc348.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-labels-f75c9.html │ │ │ │ ├── req_get-created-lab-1c0f7.html │ │ │ │ └── style │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_down_black.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right_black.png │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── cible.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fond-degrade.gif │ │ │ │ │ ├── fond-lueur.gif │ │ │ │ │ ├── little_arrow_right.png │ │ │ │ │ ├── logo-gatling.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── sorted-down.png │ │ │ │ │ ├── sorted-up.png │ │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ │ ├── stat-fond.png │ │ │ │ │ ├── stat-l-roue.png │ │ │ │ │ ├── stat-l-temps.png │ │ │ │ │ └── style.css │ │ │ └── operationgatlingtest-1499343988546 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ │ ├── req_authenticated-r-6889d.html │ │ │ │ ├── req_authentication-c75f7.html │ │ │ │ ├── req_create-new-oper-e8918.html │ │ │ │ ├── req_delete-created--75ca3.html │ │ │ │ ├── req_first-unauthent-b0694.html │ │ │ │ ├── req_get-all-operati-419ef.html │ │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ └── 10000 │ │ │ ├── bankaccountgatlingtest-1499344937664 │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-bank-2a2a3.html │ │ │ ├── req_delete-created--f98fb.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-bankacc-cc200.html │ │ │ ├── req_get-created-ban-af22b.html │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ │ ├── labelgatlingtest-1499344512033 │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── all_sessions.js │ │ │ │ ├── assertions.json │ │ │ │ ├── assertions.xml │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── gatling.js │ │ │ │ ├── global_stats.json │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highstock.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── menu.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── stats.js │ │ │ │ ├── stats.json │ │ │ │ ├── theme.js │ │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-labe-44e80.html │ │ │ ├── req_delete-created--bc348.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-labels-f75c9.html │ │ │ ├── req_get-created-lab-1c0f7.html │ │ │ └── style │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_black.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_black.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── cible.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fond-degrade.gif │ │ │ │ ├── fond-lueur.gif │ │ │ │ ├── little_arrow_right.png │ │ │ │ ├── logo-gatling.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── sortable.png │ │ │ │ ├── sorted-down.png │ │ │ │ ├── sorted-up.png │ │ │ │ ├── stat-fleche-bas.png │ │ │ │ ├── stat-fond.png │ │ │ │ ├── stat-l-roue.png │ │ │ │ ├── stat-l-temps.png │ │ │ │ └── style.css │ │ │ └── operationgatlingtest-1499345743744 │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── all_sessions.js │ │ │ ├── assertions.json │ │ │ ├── assertions.xml │ │ │ ├── bootstrap.min.js │ │ │ ├── gatling.js │ │ │ ├── global_stats.json │ │ │ ├── highcharts-more.js │ │ │ ├── highstock.js │ │ │ ├── jquery.min.js │ │ │ ├── menu.js │ │ │ ├── moment.min.js │ │ │ ├── stats.js │ │ │ ├── stats.json │ │ │ ├── theme.js │ │ │ └── unpack.js │ │ │ ├── req_authenticated-r-6889d.html │ │ │ ├── req_authentication-c75f7.html │ │ │ ├── req_create-new-oper-e8918.html │ │ │ ├── req_delete-created--75ca3.html │ │ │ ├── req_first-unauthent-b0694.html │ │ │ ├── req_get-all-operati-419ef.html │ │ │ ├── req_get-created-ope-c5b0c.html │ │ │ └── style │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_black.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_right_black.png │ │ │ ├── bootstrap.min.css │ │ │ ├── cible.png │ │ │ ├── favicon.ico │ │ │ ├── fond-degrade.gif │ │ │ ├── fond-lueur.gif │ │ │ ├── little_arrow_right.png │ │ │ ├── logo-gatling.jpg │ │ │ ├── logo.png │ │ │ ├── sortable.png │ │ │ ├── sorted-down.png │ │ │ ├── sorted-up.png │ │ │ ├── stat-fleche-bas.png │ │ │ ├── stat-fond.png │ │ │ ├── stat-l-roue.png │ │ │ ├── stat-l-temps.png │ │ │ └── style.css │ └── ParallelAndAggressiveUsers │ │ └── 5000 │ │ ├── index.html │ │ ├── js │ │ ├── all_sessions.js │ │ ├── assertions.json │ │ ├── assertions.xml │ │ ├── bootstrap.min.js │ │ ├── gatling.js │ │ ├── global_stats.json │ │ ├── highcharts-more.js │ │ ├── highstock.js │ │ ├── jquery.min.js │ │ ├── menu.js │ │ ├── moment.min.js │ │ ├── stats.js │ │ ├── stats.json │ │ ├── theme.js │ │ └── unpack.js │ │ ├── req_authenticated-r-6889d.html │ │ ├── req_authentication-c75f7.html │ │ ├── req_create-new-oper-e8918.html │ │ ├── req_delete-created--75ca3.html │ │ ├── req_first-unauthent-b0694.html │ │ ├── req_get-all-operati-419ef.html │ │ ├── req_get-created-ope-c5b0c.html │ │ └── style │ │ ├── arrow_down.png │ │ ├── arrow_down_black.png │ │ ├── arrow_right.png │ │ ├── arrow_right_black.png │ │ ├── bootstrap.min.css │ │ ├── cible.png │ │ ├── favicon.ico │ │ ├── fond-degrade.gif │ │ ├── fond-lueur.gif │ │ ├── little_arrow_right.png │ │ ├── logo-gatling.jpg │ │ ├── logo.png │ │ ├── sortable.png │ │ ├── sorted-down.png │ │ ├── sorted-up.png │ │ ├── stat-fleche-bas.png │ │ ├── stat-fond.png │ │ ├── stat-l-roue.png │ │ ├── stat-l-temps.png │ │ └── style.css ├── mvnw ├── mvnw.cmd ├── package.json ├── pom.xml ├── proxy.conf.json ├── src │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ ├── app.yml │ │ │ ├── mongodb-cluster.yml │ │ │ ├── mongodb.yml │ │ │ ├── mongodb │ │ │ │ ├── MongoDB.Dockerfile │ │ │ │ └── scripts │ │ │ │ │ └── init_replicaset.js │ │ │ └── sonar.yml │ │ ├── java │ │ │ └── jhipster │ │ │ │ └── reactive │ │ │ │ ├── ApplicationWebXml.java │ │ │ │ ├── ReporeactiveMongoDbApp.java │ │ │ │ ├── aop │ │ │ │ └── logging │ │ │ │ │ └── LoggingAspect.java │ │ │ │ ├── config │ │ │ │ ├── ApplicationProperties.java │ │ │ │ ├── AsyncConfiguration.java │ │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DatabaseConfiguration.java │ │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ │ ├── DefaultProfileUtil.java │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ ├── LocaleConfiguration.java │ │ │ │ ├── LoggingAspectConfiguration.java │ │ │ │ ├── LoggingConfiguration.java │ │ │ │ ├── MetricsConfiguration.java │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ ├── ThymeleafConfiguration.java │ │ │ │ ├── WebConfigurer.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditEventConverter.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── dbmigrations │ │ │ │ │ ├── InitialSetupMigration.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ ├── domain │ │ │ │ ├── AbstractAuditingEntity.java │ │ │ │ ├── Authority.java │ │ │ │ ├── BankAccount.java │ │ │ │ ├── Label.java │ │ │ │ ├── Operation.java │ │ │ │ ├── PersistentAuditEvent.java │ │ │ │ ├── User.java │ │ │ │ └── package-info.java │ │ │ │ ├── repository │ │ │ │ ├── AuthorityRepository.java │ │ │ │ ├── BankAccountRepository.java │ │ │ │ ├── CustomAuditEventRepository.java │ │ │ │ ├── LabelRepository.java │ │ │ │ ├── OperationRepository.java │ │ │ │ ├── PersistenceAuditEventRepository.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── package-info.java │ │ │ │ ├── security │ │ │ │ ├── AuthoritiesConstants.java │ │ │ │ ├── DomainUserDetailsService.java │ │ │ │ ├── SecurityUtils.java │ │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ │ ├── UserNotActivatedException.java │ │ │ │ ├── jwt │ │ │ │ │ ├── JWTConfigurer.java │ │ │ │ │ ├── JWTFilter.java │ │ │ │ │ └── TokenProvider.java │ │ │ │ └── package-info.java │ │ │ │ ├── service │ │ │ │ ├── AuditEventService.java │ │ │ │ ├── MailService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── dto │ │ │ │ │ ├── UserDTO.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── mapper │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── util │ │ │ │ │ └── RandomUtil.java │ │ │ │ └── web │ │ │ │ └── rest │ │ │ │ ├── AccountResource.java │ │ │ │ ├── AuditResource.java │ │ │ │ ├── BankAccountResource.java │ │ │ │ ├── LabelResource.java │ │ │ │ ├── LogsResource.java │ │ │ │ ├── OperationResource.java │ │ │ │ ├── ProfileInfoResource.java │ │ │ │ ├── UserJWTController.java │ │ │ │ ├── UserResource.java │ │ │ │ ├── errors │ │ │ │ ├── CustomParameterizedException.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── ErrorVM.java │ │ │ │ ├── ExceptionTranslator.java │ │ │ │ ├── FieldErrorVM.java │ │ │ │ ├── ParameterizedErrorVM.java │ │ │ │ └── ReactiveException.java │ │ │ │ ├── package-info.java │ │ │ │ ├── util │ │ │ │ ├── AsyncUtil.java │ │ │ │ ├── HeaderUtil.java │ │ │ │ └── PaginationUtil.java │ │ │ │ └── vm │ │ │ │ ├── KeyAndPasswordVM.java │ │ │ │ ├── LoggerVM.java │ │ │ │ ├── LoginVM.java │ │ │ │ ├── ManagedUserVM.java │ │ │ │ └── package-info.java │ │ ├── resources │ │ │ ├── banner.txt │ │ │ ├── config │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ └── application.yml │ │ │ ├── i18n │ │ │ │ └── messages.properties │ │ │ ├── logback-spring.xml │ │ │ ├── mails │ │ │ │ ├── activationEmail.html │ │ │ │ ├── creationEmail.html │ │ │ │ └── passwordResetEmail.html │ │ │ └── templates │ │ │ │ └── error.html │ │ └── webapp │ │ │ ├── 404.html │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── account.module.ts │ │ │ │ ├── account.route.ts │ │ │ │ ├── activate │ │ │ │ │ ├── activate.component.html │ │ │ │ │ ├── activate.component.ts │ │ │ │ │ ├── activate.route.ts │ │ │ │ │ └── activate.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ ├── password-reset-finish.component.html │ │ │ │ │ │ ├── password-reset-finish.component.ts │ │ │ │ │ │ ├── password-reset-finish.route.ts │ │ │ │ │ │ └── password-reset-finish.service.ts │ │ │ │ │ └── init │ │ │ │ │ │ ├── password-reset-init.component.html │ │ │ │ │ │ ├── password-reset-init.component.ts │ │ │ │ │ │ ├── password-reset-init.route.ts │ │ │ │ │ │ └── password-reset-init.service.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.ts │ │ │ │ │ ├── password-strength-bar.css │ │ │ │ │ ├── password.component.html │ │ │ │ │ ├── password.component.ts │ │ │ │ │ ├── password.route.ts │ │ │ │ │ └── password.service.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.html │ │ │ │ │ ├── register.component.ts │ │ │ │ │ ├── register.route.ts │ │ │ │ │ └── register.service.ts │ │ │ │ └── settings │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.ts │ │ │ │ │ └── settings.route.ts │ │ │ ├── admin │ │ │ │ ├── admin.module.ts │ │ │ │ ├── admin.route.ts │ │ │ │ ├── audits │ │ │ │ │ ├── audit-data.model.ts │ │ │ │ │ ├── audit.model.ts │ │ │ │ │ ├── audits.component.html │ │ │ │ │ ├── audits.component.ts │ │ │ │ │ ├── audits.route.ts │ │ │ │ │ └── audits.service.ts │ │ │ │ ├── configuration │ │ │ │ │ ├── configuration.component.html │ │ │ │ │ ├── configuration.component.ts │ │ │ │ │ ├── configuration.route.ts │ │ │ │ │ └── configuration.service.ts │ │ │ │ ├── docs │ │ │ │ │ ├── docs.component.html │ │ │ │ │ ├── docs.component.ts │ │ │ │ │ └── docs.route.ts │ │ │ │ ├── health │ │ │ │ │ ├── health-modal.component.html │ │ │ │ │ ├── health-modal.component.ts │ │ │ │ │ ├── health.component.html │ │ │ │ │ ├── health.component.ts │ │ │ │ │ ├── health.route.ts │ │ │ │ │ └── health.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logs │ │ │ │ │ ├── log.model.ts │ │ │ │ │ ├── logs.component.html │ │ │ │ │ ├── logs.component.ts │ │ │ │ │ ├── logs.route.ts │ │ │ │ │ └── logs.service.ts │ │ │ │ ├── metrics │ │ │ │ │ ├── metrics-modal.component.html │ │ │ │ │ ├── metrics-modal.component.ts │ │ │ │ │ ├── metrics.component.html │ │ │ │ │ ├── metrics.component.ts │ │ │ │ │ ├── metrics.route.ts │ │ │ │ │ └── metrics.service.ts │ │ │ │ └── user-management │ │ │ │ │ ├── user-management-delete-dialog.component.html │ │ │ │ │ ├── user-management-delete-dialog.component.ts │ │ │ │ │ ├── user-management-detail.component.html │ │ │ │ │ ├── user-management-detail.component.ts │ │ │ │ │ ├── user-management-dialog.component.html │ │ │ │ │ ├── user-management-dialog.component.ts │ │ │ │ │ ├── user-management.component.html │ │ │ │ │ ├── user-management.component.ts │ │ │ │ │ ├── user-management.route.ts │ │ │ │ │ └── user-modal.service.ts │ │ │ ├── app.constants.ts │ │ │ ├── app.main.ts │ │ │ ├── app.module.ts │ │ │ ├── app.route.ts │ │ │ ├── blocks │ │ │ │ ├── config │ │ │ │ │ ├── prod.config.ts │ │ │ │ │ └── uib-pagination.config.ts │ │ │ │ └── interceptor │ │ │ │ │ ├── auth-expired.interceptor.ts │ │ │ │ │ ├── auth.interceptor.ts │ │ │ │ │ ├── errorhandler.interceptor.ts │ │ │ │ │ ├── http.provider.ts │ │ │ │ │ └── notification.interceptor.ts │ │ │ ├── entities │ │ │ │ ├── bank-account │ │ │ │ │ ├── bank-account-delete-dialog.component.html │ │ │ │ │ ├── bank-account-delete-dialog.component.ts │ │ │ │ │ ├── bank-account-detail.component.html │ │ │ │ │ ├── bank-account-detail.component.ts │ │ │ │ │ ├── bank-account-dialog.component.html │ │ │ │ │ ├── bank-account-dialog.component.ts │ │ │ │ │ ├── bank-account-popup.service.ts │ │ │ │ │ ├── bank-account.component.html │ │ │ │ │ ├── bank-account.component.ts │ │ │ │ │ ├── bank-account.model.ts │ │ │ │ │ ├── bank-account.module.ts │ │ │ │ │ ├── bank-account.route.ts │ │ │ │ │ ├── bank-account.service.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── entity.module.ts │ │ │ │ ├── label │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── label-delete-dialog.component.html │ │ │ │ │ ├── label-delete-dialog.component.ts │ │ │ │ │ ├── label-detail.component.html │ │ │ │ │ ├── label-detail.component.ts │ │ │ │ │ ├── label-dialog.component.html │ │ │ │ │ ├── label-dialog.component.ts │ │ │ │ │ ├── label-popup.service.ts │ │ │ │ │ ├── label.component.html │ │ │ │ │ ├── label.component.ts │ │ │ │ │ ├── label.model.ts │ │ │ │ │ ├── label.module.ts │ │ │ │ │ ├── label.route.ts │ │ │ │ │ └── label.service.ts │ │ │ │ └── operation │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── operation-delete-dialog.component.html │ │ │ │ │ ├── operation-delete-dialog.component.ts │ │ │ │ │ ├── operation-detail.component.html │ │ │ │ │ ├── operation-detail.component.ts │ │ │ │ │ ├── operation-dialog.component.html │ │ │ │ │ ├── operation-dialog.component.ts │ │ │ │ │ ├── operation-popup.service.ts │ │ │ │ │ ├── operation.component.html │ │ │ │ │ ├── operation.component.ts │ │ │ │ │ ├── operation.model.ts │ │ │ │ │ ├── operation.module.ts │ │ │ │ │ ├── operation.route.ts │ │ │ │ │ └── operation.service.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.ts │ │ │ │ ├── home.css │ │ │ │ ├── home.module.ts │ │ │ │ ├── home.route.ts │ │ │ │ └── index.ts │ │ │ ├── layouts │ │ │ │ ├── error │ │ │ │ │ ├── error.component.html │ │ │ │ │ ├── error.component.ts │ │ │ │ │ └── error.route.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layout-routing.module.ts │ │ │ │ ├── main │ │ │ │ │ ├── main.component.html │ │ │ │ │ └── main.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ ├── navbar.component.ts │ │ │ │ │ └── navbar.css │ │ │ │ └── profiles │ │ │ │ │ ├── page-ribbon.component.ts │ │ │ │ │ ├── page-ribbon.css │ │ │ │ │ ├── profile-info.model.ts │ │ │ │ │ └── profile.service.ts │ │ │ ├── polyfills.ts │ │ │ ├── shared │ │ │ │ ├── alert │ │ │ │ │ ├── alert-error.component.ts │ │ │ │ │ └── alert.component.ts │ │ │ │ ├── auth │ │ │ │ │ ├── account.service.ts │ │ │ │ │ ├── auth-jwt.service.ts │ │ │ │ │ ├── csrf.service.ts │ │ │ │ │ ├── has-any-authority.directive.ts │ │ │ │ │ ├── principal.service.ts │ │ │ │ │ ├── state-storage.service.ts │ │ │ │ │ └── user-route-access-service.ts │ │ │ │ ├── constants │ │ │ │ │ └── pagination.constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── login │ │ │ │ │ ├── login-modal.service.ts │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.service.ts │ │ │ │ ├── model │ │ │ │ │ ├── base-entity.ts │ │ │ │ │ ├── request-util.ts │ │ │ │ │ └── response-wrapper.model.ts │ │ │ │ ├── shared-common.module.ts │ │ │ │ ├── shared-libs.module.ts │ │ │ │ ├── shared.module.ts │ │ │ │ └── user │ │ │ │ │ ├── account.model.ts │ │ │ │ │ ├── user.model.ts │ │ │ │ │ └── user.service.ts │ │ │ └── vendor.ts │ │ │ ├── content │ │ │ ├── css │ │ │ │ ├── documentation.css │ │ │ │ ├── global.css │ │ │ │ └── vendor.css │ │ │ └── images │ │ │ │ ├── hipster.png │ │ │ │ ├── hipster2x.png │ │ │ │ └── logo-jhipster.png │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.webapp │ │ │ ├── robots.txt │ │ │ ├── sw.js │ │ │ └── swagger-ui │ │ │ ├── images │ │ │ └── throbber.gif │ │ │ └── index.html │ └── test │ │ ├── gatling │ │ ├── bin │ │ │ ├── gatling.bat │ │ │ ├── gatling.sh │ │ │ ├── recorder.bat │ │ │ └── recorder.sh │ │ ├── conf │ │ │ ├── gatling.conf │ │ │ └── logback.xml │ │ └── user-files │ │ │ └── simulations │ │ │ ├── BankAccountGatlingTest.scala │ │ │ ├── LabelGatlingTest.scala │ │ │ └── OperationGatlingTest.scala │ │ ├── java │ │ └── jhipster │ │ │ └── reactive │ │ │ ├── config │ │ │ ├── WebConfigurerTest.java │ │ │ └── WebConfigurerTestController.java │ │ │ ├── repository │ │ │ └── CustomAuditEventRepositoryIntTest.java │ │ │ ├── security │ │ │ ├── SecurityUtilsUnitTest.java │ │ │ └── jwt │ │ │ │ ├── JWTFilterTest.java │ │ │ │ └── TokenProviderTest.java │ │ │ ├── service │ │ │ ├── MailServiceIntTest.java │ │ │ └── UserServiceIntTest.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── AccountResourceIntTest.java │ │ │ ├── AuditResourceIntTest.java │ │ │ ├── BankAccountResourceIntTest.java │ │ │ ├── LabelResourceIntTest.java │ │ │ ├── LogsResourceIntTest.java │ │ │ ├── OperationResourceIntTest.java │ │ │ ├── ProfileInfoResourceIntTest.java │ │ │ ├── TestUtil.java │ │ │ ├── UserJWTControllerIntTest.java │ │ │ ├── UserResourceIntTest.java │ │ │ └── errors │ │ │ ├── ExceptionTranslatorIntTest.java │ │ │ └── ExceptionTranslatorTestController.java │ │ ├── javascript │ │ ├── karma.conf.js │ │ └── spec │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── activate │ │ │ │ │ └── activate.component.spec.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ └── password-reset-finish.component.spec.ts │ │ │ │ │ └── init │ │ │ │ │ │ └── password-reset-init.component.spec.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.spec.ts │ │ │ │ │ └── password.component.spec.ts │ │ │ │ ├── register │ │ │ │ │ └── register.component.spec.ts │ │ │ │ └── settings │ │ │ │ │ └── settings.component.spec.ts │ │ │ ├── admin │ │ │ │ ├── audits │ │ │ │ │ └── audits.component.spec.ts │ │ │ │ └── health │ │ │ │ │ └── health.component.spec.ts │ │ │ └── entities │ │ │ │ ├── bank-account │ │ │ │ └── bank-account-detail.component.spec.ts │ │ │ │ ├── label │ │ │ │ └── label-detail.component.spec.ts │ │ │ │ └── operation │ │ │ │ └── operation-detail.component.spec.ts │ │ │ ├── entry.ts │ │ │ ├── helpers │ │ │ ├── mock-account.service.ts │ │ │ ├── mock-principal.service.ts │ │ │ ├── mock-route.service.ts │ │ │ └── spyobject.ts │ │ │ └── test.module.ts │ │ └── resources │ │ ├── config │ │ └── application.yml │ │ ├── i18n │ │ └── messages_en.properties │ │ ├── logback.xml │ │ └── mails │ │ └── testEmail.html ├── tsconfig-aot.json ├── tsconfig.json ├── tslint.json ├── webpack │ ├── logo-jhipster.png │ ├── utils.js │ ├── webpack.common.js │ ├── webpack.dev.js │ ├── webpack.prod.js │ └── webpack.vendor.js └── yarn.lock ├── serverResponseOnlyopeRepoReact ├── .angular-cli.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jhipster │ ├── BankAccount.json │ ├── Label.json │ └── Operation.json ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── .yo-rc.json ├── README.md ├── mvnw ├── mvnw.cmd ├── package.json ├── pom.xml ├── proxy.conf.json ├── src │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ ├── app.yml │ │ │ ├── mongodb-cluster.yml │ │ │ ├── mongodb.yml │ │ │ ├── mongodb │ │ │ │ ├── MongoDB.Dockerfile │ │ │ │ └── scripts │ │ │ │ │ └── init_replicaset.js │ │ │ └── sonar.yml │ │ ├── java │ │ │ └── jhipster │ │ │ │ └── reactive │ │ │ │ ├── ApplicationWebXml.java │ │ │ │ ├── DefaultMongoDbApp.java │ │ │ │ ├── aop │ │ │ │ └── logging │ │ │ │ │ └── LoggingAspect.java │ │ │ │ ├── config │ │ │ │ ├── ApplicationProperties.java │ │ │ │ ├── AsyncConfiguration.java │ │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DatabaseConfiguration.java │ │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ │ ├── DefaultProfileUtil.java │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ ├── LocaleConfiguration.java │ │ │ │ ├── LoggingAspectConfiguration.java │ │ │ │ ├── LoggingConfiguration.java │ │ │ │ ├── MetricsConfiguration.java │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ ├── ThymeleafConfiguration.java │ │ │ │ ├── WebConfigurer.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditEventConverter.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── dbmigrations │ │ │ │ │ ├── InitialSetupMigration.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ ├── domain │ │ │ │ ├── AbstractAuditingEntity.java │ │ │ │ ├── Authority.java │ │ │ │ ├── BankAccount.java │ │ │ │ ├── Label.java │ │ │ │ ├── Operation.java │ │ │ │ ├── PersistentAuditEvent.java │ │ │ │ ├── User.java │ │ │ │ └── package-info.java │ │ │ │ ├── repository │ │ │ │ ├── AuthorityRepository.java │ │ │ │ ├── BankAccountRepository.java │ │ │ │ ├── CustomAuditEventRepository.java │ │ │ │ ├── LabelRepository.java │ │ │ │ ├── OperationRepository.java │ │ │ │ ├── PersistenceAuditEventRepository.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── package-info.java │ │ │ │ ├── security │ │ │ │ ├── AuthoritiesConstants.java │ │ │ │ ├── DomainUserDetailsService.java │ │ │ │ ├── SecurityUtils.java │ │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ │ ├── UserNotActivatedException.java │ │ │ │ ├── jwt │ │ │ │ │ ├── JWTConfigurer.java │ │ │ │ │ ├── JWTFilter.java │ │ │ │ │ └── TokenProvider.java │ │ │ │ └── package-info.java │ │ │ │ ├── service │ │ │ │ ├── AuditEventService.java │ │ │ │ ├── MailService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── dto │ │ │ │ │ ├── UserDTO.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── mapper │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── util │ │ │ │ │ └── RandomUtil.java │ │ │ │ └── web │ │ │ │ └── rest │ │ │ │ ├── AccountResource.java │ │ │ │ ├── AuditResource.java │ │ │ │ ├── BankAccountResource.java │ │ │ │ ├── LabelResource.java │ │ │ │ ├── LogsResource.java │ │ │ │ ├── OperationResource.java │ │ │ │ ├── ProfileInfoResource.java │ │ │ │ ├── UserJWTController.java │ │ │ │ ├── UserResource.java │ │ │ │ ├── errors │ │ │ │ ├── CustomParameterizedException.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── ErrorVM.java │ │ │ │ ├── ExceptionTranslator.java │ │ │ │ ├── FieldErrorVM.java │ │ │ │ └── ParameterizedErrorVM.java │ │ │ │ ├── package-info.java │ │ │ │ ├── util │ │ │ │ ├── AsyncUtil.java │ │ │ │ ├── HeaderUtil.java │ │ │ │ └── PaginationUtil.java │ │ │ │ └── vm │ │ │ │ ├── KeyAndPasswordVM.java │ │ │ │ ├── LoggerVM.java │ │ │ │ ├── LoginVM.java │ │ │ │ ├── ManagedUserVM.java │ │ │ │ └── package-info.java │ │ ├── resources │ │ │ ├── banner.txt │ │ │ ├── config │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ └── application.yml │ │ │ ├── i18n │ │ │ │ └── messages.properties │ │ │ ├── logback-spring.xml │ │ │ ├── mails │ │ │ │ ├── activationEmail.html │ │ │ │ ├── creationEmail.html │ │ │ │ └── passwordResetEmail.html │ │ │ └── templates │ │ │ │ └── error.html │ │ └── webapp │ │ │ ├── 404.html │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── account.module.ts │ │ │ │ ├── account.route.ts │ │ │ │ ├── activate │ │ │ │ │ ├── activate.component.html │ │ │ │ │ ├── activate.component.ts │ │ │ │ │ ├── activate.route.ts │ │ │ │ │ └── activate.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ ├── password-reset-finish.component.html │ │ │ │ │ │ ├── password-reset-finish.component.ts │ │ │ │ │ │ ├── password-reset-finish.route.ts │ │ │ │ │ │ └── password-reset-finish.service.ts │ │ │ │ │ └── init │ │ │ │ │ │ ├── password-reset-init.component.html │ │ │ │ │ │ ├── password-reset-init.component.ts │ │ │ │ │ │ ├── password-reset-init.route.ts │ │ │ │ │ │ └── password-reset-init.service.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.ts │ │ │ │ │ ├── password-strength-bar.css │ │ │ │ │ ├── password.component.html │ │ │ │ │ ├── password.component.ts │ │ │ │ │ ├── password.route.ts │ │ │ │ │ └── password.service.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.html │ │ │ │ │ ├── register.component.ts │ │ │ │ │ ├── register.route.ts │ │ │ │ │ └── register.service.ts │ │ │ │ └── settings │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.ts │ │ │ │ │ └── settings.route.ts │ │ │ ├── admin │ │ │ │ ├── admin.module.ts │ │ │ │ ├── admin.route.ts │ │ │ │ ├── audits │ │ │ │ │ ├── audit-data.model.ts │ │ │ │ │ ├── audit.model.ts │ │ │ │ │ ├── audits.component.html │ │ │ │ │ ├── audits.component.ts │ │ │ │ │ ├── audits.route.ts │ │ │ │ │ └── audits.service.ts │ │ │ │ ├── configuration │ │ │ │ │ ├── configuration.component.html │ │ │ │ │ ├── configuration.component.ts │ │ │ │ │ ├── configuration.route.ts │ │ │ │ │ └── configuration.service.ts │ │ │ │ ├── docs │ │ │ │ │ ├── docs.component.html │ │ │ │ │ ├── docs.component.ts │ │ │ │ │ └── docs.route.ts │ │ │ │ ├── health │ │ │ │ │ ├── health-modal.component.html │ │ │ │ │ ├── health-modal.component.ts │ │ │ │ │ ├── health.component.html │ │ │ │ │ ├── health.component.ts │ │ │ │ │ ├── health.route.ts │ │ │ │ │ └── health.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logs │ │ │ │ │ ├── log.model.ts │ │ │ │ │ ├── logs.component.html │ │ │ │ │ ├── logs.component.ts │ │ │ │ │ ├── logs.route.ts │ │ │ │ │ └── logs.service.ts │ │ │ │ ├── metrics │ │ │ │ │ ├── metrics-modal.component.html │ │ │ │ │ ├── metrics-modal.component.ts │ │ │ │ │ ├── metrics.component.html │ │ │ │ │ ├── metrics.component.ts │ │ │ │ │ ├── metrics.route.ts │ │ │ │ │ └── metrics.service.ts │ │ │ │ └── user-management │ │ │ │ │ ├── user-management-delete-dialog.component.html │ │ │ │ │ ├── user-management-delete-dialog.component.ts │ │ │ │ │ ├── user-management-detail.component.html │ │ │ │ │ ├── user-management-detail.component.ts │ │ │ │ │ ├── user-management-dialog.component.html │ │ │ │ │ ├── user-management-dialog.component.ts │ │ │ │ │ ├── user-management.component.html │ │ │ │ │ ├── user-management.component.ts │ │ │ │ │ ├── user-management.route.ts │ │ │ │ │ └── user-modal.service.ts │ │ │ ├── app.constants.ts │ │ │ ├── app.main.ts │ │ │ ├── app.module.ts │ │ │ ├── app.route.ts │ │ │ ├── blocks │ │ │ │ ├── config │ │ │ │ │ ├── prod.config.ts │ │ │ │ │ └── uib-pagination.config.ts │ │ │ │ └── interceptor │ │ │ │ │ ├── auth-expired.interceptor.ts │ │ │ │ │ ├── auth.interceptor.ts │ │ │ │ │ ├── errorhandler.interceptor.ts │ │ │ │ │ ├── http.provider.ts │ │ │ │ │ └── notification.interceptor.ts │ │ │ ├── entities │ │ │ │ ├── bank-account │ │ │ │ │ ├── bank-account-delete-dialog.component.html │ │ │ │ │ ├── bank-account-delete-dialog.component.ts │ │ │ │ │ ├── bank-account-detail.component.html │ │ │ │ │ ├── bank-account-detail.component.ts │ │ │ │ │ ├── bank-account-dialog.component.html │ │ │ │ │ ├── bank-account-dialog.component.ts │ │ │ │ │ ├── bank-account-popup.service.ts │ │ │ │ │ ├── bank-account.component.html │ │ │ │ │ ├── bank-account.component.ts │ │ │ │ │ ├── bank-account.model.ts │ │ │ │ │ ├── bank-account.module.ts │ │ │ │ │ ├── bank-account.route.ts │ │ │ │ │ ├── bank-account.service.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── entity.module.ts │ │ │ │ ├── label │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── label-delete-dialog.component.html │ │ │ │ │ ├── label-delete-dialog.component.ts │ │ │ │ │ ├── label-detail.component.html │ │ │ │ │ ├── label-detail.component.ts │ │ │ │ │ ├── label-dialog.component.html │ │ │ │ │ ├── label-dialog.component.ts │ │ │ │ │ ├── label-popup.service.ts │ │ │ │ │ ├── label.component.html │ │ │ │ │ ├── label.component.ts │ │ │ │ │ ├── label.model.ts │ │ │ │ │ ├── label.module.ts │ │ │ │ │ ├── label.route.ts │ │ │ │ │ └── label.service.ts │ │ │ │ └── operation │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── operation-delete-dialog.component.html │ │ │ │ │ ├── operation-delete-dialog.component.ts │ │ │ │ │ ├── operation-detail.component.html │ │ │ │ │ ├── operation-detail.component.ts │ │ │ │ │ ├── operation-dialog.component.html │ │ │ │ │ ├── operation-dialog.component.ts │ │ │ │ │ ├── operation-popup.service.ts │ │ │ │ │ ├── operation.component.html │ │ │ │ │ ├── operation.component.ts │ │ │ │ │ ├── operation.model.ts │ │ │ │ │ ├── operation.module.ts │ │ │ │ │ ├── operation.route.ts │ │ │ │ │ └── operation.service.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.ts │ │ │ │ ├── home.css │ │ │ │ ├── home.module.ts │ │ │ │ ├── home.route.ts │ │ │ │ └── index.ts │ │ │ ├── layouts │ │ │ │ ├── error │ │ │ │ │ ├── error.component.html │ │ │ │ │ ├── error.component.ts │ │ │ │ │ └── error.route.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layout-routing.module.ts │ │ │ │ ├── main │ │ │ │ │ ├── main.component.html │ │ │ │ │ └── main.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ ├── navbar.component.ts │ │ │ │ │ └── navbar.css │ │ │ │ └── profiles │ │ │ │ │ ├── page-ribbon.component.ts │ │ │ │ │ ├── page-ribbon.css │ │ │ │ │ ├── profile-info.model.ts │ │ │ │ │ └── profile.service.ts │ │ │ ├── polyfills.ts │ │ │ ├── shared │ │ │ │ ├── alert │ │ │ │ │ ├── alert-error.component.ts │ │ │ │ │ └── alert.component.ts │ │ │ │ ├── auth │ │ │ │ │ ├── account.service.ts │ │ │ │ │ ├── auth-jwt.service.ts │ │ │ │ │ ├── csrf.service.ts │ │ │ │ │ ├── has-any-authority.directive.ts │ │ │ │ │ ├── principal.service.ts │ │ │ │ │ ├── state-storage.service.ts │ │ │ │ │ └── user-route-access-service.ts │ │ │ │ ├── constants │ │ │ │ │ └── pagination.constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── login │ │ │ │ │ ├── login-modal.service.ts │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.service.ts │ │ │ │ ├── model │ │ │ │ │ ├── base-entity.ts │ │ │ │ │ ├── request-util.ts │ │ │ │ │ └── response-wrapper.model.ts │ │ │ │ ├── shared-common.module.ts │ │ │ │ ├── shared-libs.module.ts │ │ │ │ ├── shared.module.ts │ │ │ │ └── user │ │ │ │ │ ├── account.model.ts │ │ │ │ │ ├── user.model.ts │ │ │ │ │ └── user.service.ts │ │ │ └── vendor.ts │ │ │ ├── content │ │ │ ├── css │ │ │ │ ├── documentation.css │ │ │ │ ├── global.css │ │ │ │ └── vendor.css │ │ │ └── images │ │ │ │ ├── hipster.png │ │ │ │ ├── hipster2x.png │ │ │ │ └── logo-jhipster.png │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.webapp │ │ │ ├── robots.txt │ │ │ ├── sw.js │ │ │ └── swagger-ui │ │ │ ├── images │ │ │ └── throbber.gif │ │ │ └── index.html │ └── test │ │ ├── gatling │ │ ├── bin │ │ │ ├── gatling.bat │ │ │ ├── gatling.sh │ │ │ ├── recorder.bat │ │ │ └── recorder.sh │ │ ├── conf │ │ │ ├── gatling.conf │ │ │ └── logback.xml │ │ └── user-files │ │ │ └── simulations │ │ │ ├── BankAccountGatlingTest.scala │ │ │ ├── LabelGatlingTest.scala │ │ │ └── OperationGatlingTest.scala │ │ ├── java │ │ └── jhipster │ │ │ └── reactive │ │ │ ├── config │ │ │ ├── WebConfigurerTest.java │ │ │ └── WebConfigurerTestController.java │ │ │ ├── repository │ │ │ └── CustomAuditEventRepositoryIntTest.java │ │ │ ├── security │ │ │ ├── SecurityUtilsUnitTest.java │ │ │ └── jwt │ │ │ │ ├── JWTFilterTest.java │ │ │ │ └── TokenProviderTest.java │ │ │ ├── service │ │ │ ├── MailServiceIntTest.java │ │ │ └── UserServiceIntTest.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── AccountResourceIntTest.java │ │ │ ├── AuditResourceIntTest.java │ │ │ ├── BankAccountResourceIntTest.java │ │ │ ├── LabelResourceIntTest.java │ │ │ ├── LogsResourceIntTest.java │ │ │ ├── OperationResourceIntTest.java │ │ │ ├── ProfileInfoResourceIntTest.java │ │ │ ├── TestUtil.java │ │ │ ├── UserJWTControllerIntTest.java │ │ │ ├── UserResourceIntTest.java │ │ │ └── errors │ │ │ ├── ExceptionTranslatorIntTest.java │ │ │ └── ExceptionTranslatorTestController.java │ │ ├── javascript │ │ ├── karma.conf.js │ │ └── spec │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── activate │ │ │ │ │ └── activate.component.spec.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ └── password-reset-finish.component.spec.ts │ │ │ │ │ └── init │ │ │ │ │ │ └── password-reset-init.component.spec.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.spec.ts │ │ │ │ │ └── password.component.spec.ts │ │ │ │ ├── register │ │ │ │ │ └── register.component.spec.ts │ │ │ │ └── settings │ │ │ │ │ └── settings.component.spec.ts │ │ │ ├── admin │ │ │ │ ├── audits │ │ │ │ │ └── audits.component.spec.ts │ │ │ │ └── health │ │ │ │ │ └── health.component.spec.ts │ │ │ └── entities │ │ │ │ ├── bank-account │ │ │ │ └── bank-account-detail.component.spec.ts │ │ │ │ ├── label │ │ │ │ └── label-detail.component.spec.ts │ │ │ │ └── operation │ │ │ │ └── operation-detail.component.spec.ts │ │ │ ├── entry.ts │ │ │ ├── helpers │ │ │ ├── mock-account.service.ts │ │ │ ├── mock-principal.service.ts │ │ │ ├── mock-route.service.ts │ │ │ └── spyobject.ts │ │ │ └── test.module.ts │ │ └── resources │ │ ├── config │ │ └── application.yml │ │ ├── i18n │ │ └── messages_en.properties │ │ ├── logback.xml │ │ └── mails │ │ └── testEmail.html ├── tsconfig-aot.json ├── tsconfig.json ├── tslint.json └── webpack │ ├── logo-jhipster.png │ ├── utils.js │ ├── webpack.common.js │ ├── webpack.dev.js │ ├── webpack.prod.js │ └── webpack.vendor.js ├── withSecuWithoutResponseEntity ├── .angular-cli.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jhipster │ ├── BankAccount.json │ ├── Label.json │ └── Operation.json ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── .yo-rc.json ├── README.md ├── mvnw ├── mvnw.cmd ├── package.json ├── pom.xml ├── proxy.conf.json ├── src │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ ├── app.yml │ │ │ ├── mongodb-cluster.yml │ │ │ ├── mongodb.yml │ │ │ ├── mongodb │ │ │ │ ├── MongoDB.Dockerfile │ │ │ │ └── scripts │ │ │ │ │ └── init_replicaset.js │ │ │ └── sonar.yml │ │ ├── java │ │ │ └── jhipster │ │ │ │ └── reactive │ │ │ │ ├── ApplicationWebXml.java │ │ │ │ ├── DefaultMongoDbApp.java │ │ │ │ ├── aop │ │ │ │ └── logging │ │ │ │ │ └── LoggingAspect.java │ │ │ │ ├── config │ │ │ │ ├── ApplicationProperties.java │ │ │ │ ├── AsyncConfiguration.java │ │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DatabaseConfiguration.java │ │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ │ ├── DefaultProfileUtil.java │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ ├── LocaleConfiguration.java │ │ │ │ ├── LoggingAspectConfiguration.java │ │ │ │ ├── LoggingConfiguration.java │ │ │ │ ├── MetricsConfiguration.java │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ ├── ThymeleafConfiguration.java │ │ │ │ ├── WebConfigurer.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditEventConverter.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── dbmigrations │ │ │ │ │ ├── InitialSetupMigration.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ ├── domain │ │ │ │ ├── AbstractAuditingEntity.java │ │ │ │ ├── Authority.java │ │ │ │ ├── BankAccount.java │ │ │ │ ├── Label.java │ │ │ │ ├── Operation.java │ │ │ │ ├── PersistentAuditEvent.java │ │ │ │ ├── User.java │ │ │ │ └── package-info.java │ │ │ │ ├── repository │ │ │ │ ├── AuthorityRepository.java │ │ │ │ ├── BankAccountRepository.java │ │ │ │ ├── CustomAuditEventRepository.java │ │ │ │ ├── LabelRepository.java │ │ │ │ ├── OperationRepository.java │ │ │ │ ├── PersistenceAuditEventRepository.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── package-info.java │ │ │ │ ├── security │ │ │ │ ├── AuthoritiesConstants.java │ │ │ │ ├── DomainUserDetailsService.java │ │ │ │ ├── SecurityUtils.java │ │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ │ ├── UserNotActivatedException.java │ │ │ │ ├── jwt │ │ │ │ │ ├── JWTConfigurer.java │ │ │ │ │ ├── JWTFilter.java │ │ │ │ │ └── TokenProvider.java │ │ │ │ └── package-info.java │ │ │ │ ├── service │ │ │ │ ├── AuditEventService.java │ │ │ │ ├── MailService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── dto │ │ │ │ │ ├── UserDTO.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── mapper │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── util │ │ │ │ │ └── RandomUtil.java │ │ │ │ └── web │ │ │ │ └── rest │ │ │ │ ├── AccountResource.java │ │ │ │ ├── AuditResource.java │ │ │ │ ├── BankAccountResource.java │ │ │ │ ├── LabelResource.java │ │ │ │ ├── LogsResource.java │ │ │ │ ├── OperationResource.java │ │ │ │ ├── ProfileInfoResource.java │ │ │ │ ├── UserJWTController.java │ │ │ │ ├── UserResource.java │ │ │ │ ├── errors │ │ │ │ ├── CustomParameterizedException.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── ErrorVM.java │ │ │ │ ├── ExceptionTranslator.java │ │ │ │ ├── FieldErrorVM.java │ │ │ │ └── ParameterizedErrorVM.java │ │ │ │ ├── package-info.java │ │ │ │ ├── util │ │ │ │ ├── AsyncUtil.java │ │ │ │ ├── HeaderUtil.java │ │ │ │ └── PaginationUtil.java │ │ │ │ └── vm │ │ │ │ ├── KeyAndPasswordVM.java │ │ │ │ ├── LoggerVM.java │ │ │ │ ├── LoginVM.java │ │ │ │ ├── ManagedUserVM.java │ │ │ │ └── package-info.java │ │ ├── resources │ │ │ ├── banner.txt │ │ │ ├── config │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ └── application.yml │ │ │ ├── i18n │ │ │ │ └── messages.properties │ │ │ ├── logback-spring.xml │ │ │ ├── mails │ │ │ │ ├── activationEmail.html │ │ │ │ ├── creationEmail.html │ │ │ │ └── passwordResetEmail.html │ │ │ └── templates │ │ │ │ └── error.html │ │ └── webapp │ │ │ ├── 404.html │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── account.module.ts │ │ │ │ ├── account.route.ts │ │ │ │ ├── activate │ │ │ │ │ ├── activate.component.html │ │ │ │ │ ├── activate.component.ts │ │ │ │ │ ├── activate.route.ts │ │ │ │ │ └── activate.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ ├── password-reset-finish.component.html │ │ │ │ │ │ ├── password-reset-finish.component.ts │ │ │ │ │ │ ├── password-reset-finish.route.ts │ │ │ │ │ │ └── password-reset-finish.service.ts │ │ │ │ │ └── init │ │ │ │ │ │ ├── password-reset-init.component.html │ │ │ │ │ │ ├── password-reset-init.component.ts │ │ │ │ │ │ ├── password-reset-init.route.ts │ │ │ │ │ │ └── password-reset-init.service.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.ts │ │ │ │ │ ├── password-strength-bar.css │ │ │ │ │ ├── password.component.html │ │ │ │ │ ├── password.component.ts │ │ │ │ │ ├── password.route.ts │ │ │ │ │ └── password.service.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.html │ │ │ │ │ ├── register.component.ts │ │ │ │ │ ├── register.route.ts │ │ │ │ │ └── register.service.ts │ │ │ │ └── settings │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.ts │ │ │ │ │ └── settings.route.ts │ │ │ ├── admin │ │ │ │ ├── admin.module.ts │ │ │ │ ├── admin.route.ts │ │ │ │ ├── audits │ │ │ │ │ ├── audit-data.model.ts │ │ │ │ │ ├── audit.model.ts │ │ │ │ │ ├── audits.component.html │ │ │ │ │ ├── audits.component.ts │ │ │ │ │ ├── audits.route.ts │ │ │ │ │ └── audits.service.ts │ │ │ │ ├── configuration │ │ │ │ │ ├── configuration.component.html │ │ │ │ │ ├── configuration.component.ts │ │ │ │ │ ├── configuration.route.ts │ │ │ │ │ └── configuration.service.ts │ │ │ │ ├── docs │ │ │ │ │ ├── docs.component.html │ │ │ │ │ ├── docs.component.ts │ │ │ │ │ └── docs.route.ts │ │ │ │ ├── health │ │ │ │ │ ├── health-modal.component.html │ │ │ │ │ ├── health-modal.component.ts │ │ │ │ │ ├── health.component.html │ │ │ │ │ ├── health.component.ts │ │ │ │ │ ├── health.route.ts │ │ │ │ │ └── health.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logs │ │ │ │ │ ├── log.model.ts │ │ │ │ │ ├── logs.component.html │ │ │ │ │ ├── logs.component.ts │ │ │ │ │ ├── logs.route.ts │ │ │ │ │ └── logs.service.ts │ │ │ │ ├── metrics │ │ │ │ │ ├── metrics-modal.component.html │ │ │ │ │ ├── metrics-modal.component.ts │ │ │ │ │ ├── metrics.component.html │ │ │ │ │ ├── metrics.component.ts │ │ │ │ │ ├── metrics.route.ts │ │ │ │ │ └── metrics.service.ts │ │ │ │ └── user-management │ │ │ │ │ ├── user-management-delete-dialog.component.html │ │ │ │ │ ├── user-management-delete-dialog.component.ts │ │ │ │ │ ├── user-management-detail.component.html │ │ │ │ │ ├── user-management-detail.component.ts │ │ │ │ │ ├── user-management-dialog.component.html │ │ │ │ │ ├── user-management-dialog.component.ts │ │ │ │ │ ├── user-management.component.html │ │ │ │ │ ├── user-management.component.ts │ │ │ │ │ ├── user-management.route.ts │ │ │ │ │ └── user-modal.service.ts │ │ │ ├── app.constants.ts │ │ │ ├── app.main.ts │ │ │ ├── app.module.ts │ │ │ ├── app.route.ts │ │ │ ├── blocks │ │ │ │ ├── config │ │ │ │ │ ├── prod.config.ts │ │ │ │ │ └── uib-pagination.config.ts │ │ │ │ └── interceptor │ │ │ │ │ ├── auth-expired.interceptor.ts │ │ │ │ │ ├── auth.interceptor.ts │ │ │ │ │ ├── errorhandler.interceptor.ts │ │ │ │ │ ├── http.provider.ts │ │ │ │ │ └── notification.interceptor.ts │ │ │ ├── entities │ │ │ │ ├── bank-account │ │ │ │ │ ├── bank-account-delete-dialog.component.html │ │ │ │ │ ├── bank-account-delete-dialog.component.ts │ │ │ │ │ ├── bank-account-detail.component.html │ │ │ │ │ ├── bank-account-detail.component.ts │ │ │ │ │ ├── bank-account-dialog.component.html │ │ │ │ │ ├── bank-account-dialog.component.ts │ │ │ │ │ ├── bank-account-popup.service.ts │ │ │ │ │ ├── bank-account.component.html │ │ │ │ │ ├── bank-account.component.ts │ │ │ │ │ ├── bank-account.model.ts │ │ │ │ │ ├── bank-account.module.ts │ │ │ │ │ ├── bank-account.route.ts │ │ │ │ │ ├── bank-account.service.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── entity.module.ts │ │ │ │ ├── label │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── label-delete-dialog.component.html │ │ │ │ │ ├── label-delete-dialog.component.ts │ │ │ │ │ ├── label-detail.component.html │ │ │ │ │ ├── label-detail.component.ts │ │ │ │ │ ├── label-dialog.component.html │ │ │ │ │ ├── label-dialog.component.ts │ │ │ │ │ ├── label-popup.service.ts │ │ │ │ │ ├── label.component.html │ │ │ │ │ ├── label.component.ts │ │ │ │ │ ├── label.model.ts │ │ │ │ │ ├── label.module.ts │ │ │ │ │ ├── label.route.ts │ │ │ │ │ └── label.service.ts │ │ │ │ └── operation │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── operation-delete-dialog.component.html │ │ │ │ │ ├── operation-delete-dialog.component.ts │ │ │ │ │ ├── operation-detail.component.html │ │ │ │ │ ├── operation-detail.component.ts │ │ │ │ │ ├── operation-dialog.component.html │ │ │ │ │ ├── operation-dialog.component.ts │ │ │ │ │ ├── operation-popup.service.ts │ │ │ │ │ ├── operation.component.html │ │ │ │ │ ├── operation.component.ts │ │ │ │ │ ├── operation.model.ts │ │ │ │ │ ├── operation.module.ts │ │ │ │ │ ├── operation.route.ts │ │ │ │ │ └── operation.service.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.ts │ │ │ │ ├── home.css │ │ │ │ ├── home.module.ts │ │ │ │ ├── home.route.ts │ │ │ │ └── index.ts │ │ │ ├── layouts │ │ │ │ ├── error │ │ │ │ │ ├── error.component.html │ │ │ │ │ ├── error.component.ts │ │ │ │ │ └── error.route.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layout-routing.module.ts │ │ │ │ ├── main │ │ │ │ │ ├── main.component.html │ │ │ │ │ └── main.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ ├── navbar.component.ts │ │ │ │ │ └── navbar.css │ │ │ │ └── profiles │ │ │ │ │ ├── page-ribbon.component.ts │ │ │ │ │ ├── page-ribbon.css │ │ │ │ │ ├── profile-info.model.ts │ │ │ │ │ └── profile.service.ts │ │ │ ├── polyfills.ts │ │ │ ├── shared │ │ │ │ ├── alert │ │ │ │ │ ├── alert-error.component.ts │ │ │ │ │ └── alert.component.ts │ │ │ │ ├── auth │ │ │ │ │ ├── account.service.ts │ │ │ │ │ ├── auth-jwt.service.ts │ │ │ │ │ ├── csrf.service.ts │ │ │ │ │ ├── has-any-authority.directive.ts │ │ │ │ │ ├── principal.service.ts │ │ │ │ │ ├── state-storage.service.ts │ │ │ │ │ └── user-route-access-service.ts │ │ │ │ ├── constants │ │ │ │ │ └── pagination.constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── login │ │ │ │ │ ├── login-modal.service.ts │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.service.ts │ │ │ │ ├── model │ │ │ │ │ ├── base-entity.ts │ │ │ │ │ ├── request-util.ts │ │ │ │ │ └── response-wrapper.model.ts │ │ │ │ ├── shared-common.module.ts │ │ │ │ ├── shared-libs.module.ts │ │ │ │ ├── shared.module.ts │ │ │ │ └── user │ │ │ │ │ ├── account.model.ts │ │ │ │ │ ├── user.model.ts │ │ │ │ │ └── user.service.ts │ │ │ └── vendor.ts │ │ │ ├── content │ │ │ ├── css │ │ │ │ ├── documentation.css │ │ │ │ ├── global.css │ │ │ │ └── vendor.css │ │ │ └── images │ │ │ │ ├── hipster.png │ │ │ │ ├── hipster2x.png │ │ │ │ └── logo-jhipster.png │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.webapp │ │ │ ├── robots.txt │ │ │ ├── sw.js │ │ │ └── swagger-ui │ │ │ ├── images │ │ │ └── throbber.gif │ │ │ └── index.html │ └── test │ │ ├── gatling │ │ ├── bin │ │ │ ├── gatling.bat │ │ │ ├── gatling.sh │ │ │ ├── recorder.bat │ │ │ └── recorder.sh │ │ ├── conf │ │ │ ├── gatling.conf │ │ │ └── logback.xml │ │ └── user-files │ │ │ └── simulations │ │ │ ├── BankAccountGatlingTest.scala │ │ │ ├── LabelGatlingTest.scala │ │ │ └── OperationGatlingTest.scala │ │ ├── java │ │ └── jhipster │ │ │ └── reactive │ │ │ ├── config │ │ │ ├── WebConfigurerTest.java │ │ │ └── WebConfigurerTestController.java │ │ │ ├── repository │ │ │ └── CustomAuditEventRepositoryIntTest.java │ │ │ ├── security │ │ │ ├── SecurityUtilsUnitTest.java │ │ │ └── jwt │ │ │ │ ├── JWTFilterTest.java │ │ │ │ └── TokenProviderTest.java │ │ │ ├── service │ │ │ ├── MailServiceIntTest.java │ │ │ └── UserServiceIntTest.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── AccountResourceIntTest.java │ │ │ ├── AuditResourceIntTest.java │ │ │ ├── BankAccountResourceIntTest.java │ │ │ ├── LabelResourceIntTest.java │ │ │ ├── LogsResourceIntTest.java │ │ │ ├── OperationResourceIntTest.java │ │ │ ├── ProfileInfoResourceIntTest.java │ │ │ ├── TestUtil.java │ │ │ ├── UserJWTControllerIntTest.java │ │ │ ├── UserResourceIntTest.java │ │ │ └── errors │ │ │ ├── ExceptionTranslatorIntTest.java │ │ │ └── ExceptionTranslatorTestController.java │ │ ├── javascript │ │ ├── karma.conf.js │ │ └── spec │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── activate │ │ │ │ │ └── activate.component.spec.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ └── password-reset-finish.component.spec.ts │ │ │ │ │ └── init │ │ │ │ │ │ └── password-reset-init.component.spec.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.spec.ts │ │ │ │ │ └── password.component.spec.ts │ │ │ │ ├── register │ │ │ │ │ └── register.component.spec.ts │ │ │ │ └── settings │ │ │ │ │ └── settings.component.spec.ts │ │ │ ├── admin │ │ │ │ ├── audits │ │ │ │ │ └── audits.component.spec.ts │ │ │ │ └── health │ │ │ │ │ └── health.component.spec.ts │ │ │ └── entities │ │ │ │ ├── bank-account │ │ │ │ └── bank-account-detail.component.spec.ts │ │ │ │ ├── label │ │ │ │ └── label-detail.component.spec.ts │ │ │ │ └── operation │ │ │ │ └── operation-detail.component.spec.ts │ │ │ ├── entry.ts │ │ │ ├── helpers │ │ │ ├── mock-account.service.ts │ │ │ ├── mock-principal.service.ts │ │ │ ├── mock-route.service.ts │ │ │ └── spyobject.ts │ │ │ └── test.module.ts │ │ └── resources │ │ ├── config │ │ └── application.yml │ │ ├── i18n │ │ └── messages_en.properties │ │ ├── logback.xml │ │ └── mails │ │ └── testEmail.html ├── tsconfig-aot.json ├── tsconfig.json ├── tslint.json ├── webpack │ ├── logo-jhipster.png │ ├── utils.js │ ├── webpack.common.js │ ├── webpack.dev.js │ ├── webpack.prod.js │ └── webpack.vendor.js └── yarn.lock ├── withoutSecuSpring5 ├── .angular-cli.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jhipster │ ├── BankAccount.json │ ├── Label.json │ └── Operation.json ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── .yo-rc.json ├── README.md ├── mvnw ├── mvnw.cmd ├── package.json ├── pom.xml ├── proxy.conf.json ├── src │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ ├── app.yml │ │ │ ├── mongodb-cluster.yml │ │ │ ├── mongodb.yml │ │ │ ├── mongodb │ │ │ │ ├── MongoDB.Dockerfile │ │ │ │ └── scripts │ │ │ │ │ └── init_replicaset.js │ │ │ └── sonar.yml │ │ ├── java │ │ │ └── jhipster │ │ │ │ └── reactive │ │ │ │ ├── ApplicationWebXml.java │ │ │ │ ├── DefaultMongoDbApp.java │ │ │ │ ├── aop │ │ │ │ └── logging │ │ │ │ │ └── LoggingAspect.java │ │ │ │ ├── config │ │ │ │ ├── ApplicationProperties.java │ │ │ │ ├── AsyncConfiguration.java │ │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DatabaseConfiguration.java │ │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ │ ├── DefaultProfileUtil.java │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ ├── LocaleConfiguration.java │ │ │ │ ├── LoggingAspectConfiguration.java │ │ │ │ ├── LoggingConfiguration.java │ │ │ │ ├── MetricsConfiguration.java │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ ├── ThymeleafConfiguration.java │ │ │ │ ├── WebConfigurer.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditEventConverter.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── dbmigrations │ │ │ │ │ ├── InitialSetupMigration.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ ├── domain │ │ │ │ ├── AbstractAuditingEntity.java │ │ │ │ ├── Authority.java │ │ │ │ ├── BankAccount.java │ │ │ │ ├── Label.java │ │ │ │ ├── Operation.java │ │ │ │ ├── PersistentAuditEvent.java │ │ │ │ ├── User.java │ │ │ │ └── package-info.java │ │ │ │ ├── repository │ │ │ │ ├── AuthorityRepository.java │ │ │ │ ├── BankAccountRepository.java │ │ │ │ ├── CustomAuditEventRepository.java │ │ │ │ ├── LabelRepository.java │ │ │ │ ├── OperationRepository.java │ │ │ │ ├── PersistenceAuditEventRepository.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── package-info.java │ │ │ │ ├── security │ │ │ │ ├── AuthoritiesConstants.java │ │ │ │ ├── DomainUserDetailsService.java │ │ │ │ ├── SecurityUtils.java │ │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ │ ├── UserNotActivatedException.java │ │ │ │ ├── jwt │ │ │ │ │ ├── JWTConfigurer.java │ │ │ │ │ ├── JWTFilter.java │ │ │ │ │ └── TokenProvider.java │ │ │ │ └── package-info.java │ │ │ │ ├── service │ │ │ │ ├── AuditEventService.java │ │ │ │ ├── MailService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── dto │ │ │ │ │ ├── UserDTO.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── mapper │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── util │ │ │ │ │ └── RandomUtil.java │ │ │ │ └── web │ │ │ │ └── rest │ │ │ │ ├── AccountResource.java │ │ │ │ ├── AuditResource.java │ │ │ │ ├── BankAccountResource.java │ │ │ │ ├── LabelResource.java │ │ │ │ ├── LogsResource.java │ │ │ │ ├── OperationResource.java │ │ │ │ ├── ProfileInfoResource.java │ │ │ │ ├── UserJWTController.java │ │ │ │ ├── UserResource.java │ │ │ │ ├── errors │ │ │ │ ├── CustomParameterizedException.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── ErrorVM.java │ │ │ │ ├── ExceptionTranslator.java │ │ │ │ ├── FieldErrorVM.java │ │ │ │ └── ParameterizedErrorVM.java │ │ │ │ ├── package-info.java │ │ │ │ ├── util │ │ │ │ ├── HeaderUtil.java │ │ │ │ └── PaginationUtil.java │ │ │ │ └── vm │ │ │ │ ├── KeyAndPasswordVM.java │ │ │ │ ├── LoggerVM.java │ │ │ │ ├── LoginVM.java │ │ │ │ ├── ManagedUserVM.java │ │ │ │ └── package-info.java │ │ ├── resources │ │ │ ├── banner.txt │ │ │ ├── config │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ └── application.yml │ │ │ ├── i18n │ │ │ │ └── messages.properties │ │ │ ├── logback-spring.xml │ │ │ ├── mails │ │ │ │ ├── activationEmail.html │ │ │ │ ├── creationEmail.html │ │ │ │ └── passwordResetEmail.html │ │ │ └── templates │ │ │ │ └── error.html │ │ └── webapp │ │ │ ├── 404.html │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── account.module.ts │ │ │ │ ├── account.route.ts │ │ │ │ ├── activate │ │ │ │ │ ├── activate.component.html │ │ │ │ │ ├── activate.component.ts │ │ │ │ │ ├── activate.route.ts │ │ │ │ │ └── activate.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ ├── password-reset-finish.component.html │ │ │ │ │ │ ├── password-reset-finish.component.ts │ │ │ │ │ │ ├── password-reset-finish.route.ts │ │ │ │ │ │ └── password-reset-finish.service.ts │ │ │ │ │ └── init │ │ │ │ │ │ ├── password-reset-init.component.html │ │ │ │ │ │ ├── password-reset-init.component.ts │ │ │ │ │ │ ├── password-reset-init.route.ts │ │ │ │ │ │ └── password-reset-init.service.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.ts │ │ │ │ │ ├── password-strength-bar.css │ │ │ │ │ ├── password.component.html │ │ │ │ │ ├── password.component.ts │ │ │ │ │ ├── password.route.ts │ │ │ │ │ └── password.service.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.html │ │ │ │ │ ├── register.component.ts │ │ │ │ │ ├── register.route.ts │ │ │ │ │ └── register.service.ts │ │ │ │ └── settings │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.ts │ │ │ │ │ └── settings.route.ts │ │ │ ├── admin │ │ │ │ ├── admin.module.ts │ │ │ │ ├── admin.route.ts │ │ │ │ ├── audits │ │ │ │ │ ├── audit-data.model.ts │ │ │ │ │ ├── audit.model.ts │ │ │ │ │ ├── audits.component.html │ │ │ │ │ ├── audits.component.ts │ │ │ │ │ ├── audits.route.ts │ │ │ │ │ └── audits.service.ts │ │ │ │ ├── configuration │ │ │ │ │ ├── configuration.component.html │ │ │ │ │ ├── configuration.component.ts │ │ │ │ │ ├── configuration.route.ts │ │ │ │ │ └── configuration.service.ts │ │ │ │ ├── docs │ │ │ │ │ ├── docs.component.html │ │ │ │ │ ├── docs.component.ts │ │ │ │ │ └── docs.route.ts │ │ │ │ ├── health │ │ │ │ │ ├── health-modal.component.html │ │ │ │ │ ├── health-modal.component.ts │ │ │ │ │ ├── health.component.html │ │ │ │ │ ├── health.component.ts │ │ │ │ │ ├── health.route.ts │ │ │ │ │ └── health.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logs │ │ │ │ │ ├── log.model.ts │ │ │ │ │ ├── logs.component.html │ │ │ │ │ ├── logs.component.ts │ │ │ │ │ ├── logs.route.ts │ │ │ │ │ └── logs.service.ts │ │ │ │ ├── metrics │ │ │ │ │ ├── metrics-modal.component.html │ │ │ │ │ ├── metrics-modal.component.ts │ │ │ │ │ ├── metrics.component.html │ │ │ │ │ ├── metrics.component.ts │ │ │ │ │ ├── metrics.route.ts │ │ │ │ │ └── metrics.service.ts │ │ │ │ └── user-management │ │ │ │ │ ├── user-management-delete-dialog.component.html │ │ │ │ │ ├── user-management-delete-dialog.component.ts │ │ │ │ │ ├── user-management-detail.component.html │ │ │ │ │ ├── user-management-detail.component.ts │ │ │ │ │ ├── user-management-dialog.component.html │ │ │ │ │ ├── user-management-dialog.component.ts │ │ │ │ │ ├── user-management.component.html │ │ │ │ │ ├── user-management.component.ts │ │ │ │ │ ├── user-management.route.ts │ │ │ │ │ └── user-modal.service.ts │ │ │ ├── app.constants.ts │ │ │ ├── app.main.ts │ │ │ ├── app.module.ts │ │ │ ├── app.route.ts │ │ │ ├── blocks │ │ │ │ ├── config │ │ │ │ │ ├── prod.config.ts │ │ │ │ │ └── uib-pagination.config.ts │ │ │ │ └── interceptor │ │ │ │ │ ├── auth-expired.interceptor.ts │ │ │ │ │ ├── auth.interceptor.ts │ │ │ │ │ ├── errorhandler.interceptor.ts │ │ │ │ │ ├── http.provider.ts │ │ │ │ │ └── notification.interceptor.ts │ │ │ ├── entities │ │ │ │ ├── bank-account │ │ │ │ │ ├── bank-account-delete-dialog.component.html │ │ │ │ │ ├── bank-account-delete-dialog.component.ts │ │ │ │ │ ├── bank-account-detail.component.html │ │ │ │ │ ├── bank-account-detail.component.ts │ │ │ │ │ ├── bank-account-dialog.component.html │ │ │ │ │ ├── bank-account-dialog.component.ts │ │ │ │ │ ├── bank-account-popup.service.ts │ │ │ │ │ ├── bank-account.component.html │ │ │ │ │ ├── bank-account.component.ts │ │ │ │ │ ├── bank-account.model.ts │ │ │ │ │ ├── bank-account.module.ts │ │ │ │ │ ├── bank-account.route.ts │ │ │ │ │ ├── bank-account.service.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── entity.module.ts │ │ │ │ ├── label │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── label-delete-dialog.component.html │ │ │ │ │ ├── label-delete-dialog.component.ts │ │ │ │ │ ├── label-detail.component.html │ │ │ │ │ ├── label-detail.component.ts │ │ │ │ │ ├── label-dialog.component.html │ │ │ │ │ ├── label-dialog.component.ts │ │ │ │ │ ├── label-popup.service.ts │ │ │ │ │ ├── label.component.html │ │ │ │ │ ├── label.component.ts │ │ │ │ │ ├── label.model.ts │ │ │ │ │ ├── label.module.ts │ │ │ │ │ ├── label.route.ts │ │ │ │ │ └── label.service.ts │ │ │ │ └── operation │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── operation-delete-dialog.component.html │ │ │ │ │ ├── operation-delete-dialog.component.ts │ │ │ │ │ ├── operation-detail.component.html │ │ │ │ │ ├── operation-detail.component.ts │ │ │ │ │ ├── operation-dialog.component.html │ │ │ │ │ ├── operation-dialog.component.ts │ │ │ │ │ ├── operation-popup.service.ts │ │ │ │ │ ├── operation.component.html │ │ │ │ │ ├── operation.component.ts │ │ │ │ │ ├── operation.model.ts │ │ │ │ │ ├── operation.module.ts │ │ │ │ │ ├── operation.route.ts │ │ │ │ │ └── operation.service.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.ts │ │ │ │ ├── home.css │ │ │ │ ├── home.module.ts │ │ │ │ ├── home.route.ts │ │ │ │ └── index.ts │ │ │ ├── layouts │ │ │ │ ├── error │ │ │ │ │ ├── error.component.html │ │ │ │ │ ├── error.component.ts │ │ │ │ │ └── error.route.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layout-routing.module.ts │ │ │ │ ├── main │ │ │ │ │ ├── main.component.html │ │ │ │ │ └── main.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ ├── navbar.component.ts │ │ │ │ │ └── navbar.css │ │ │ │ └── profiles │ │ │ │ │ ├── page-ribbon.component.ts │ │ │ │ │ ├── page-ribbon.css │ │ │ │ │ ├── profile-info.model.ts │ │ │ │ │ └── profile.service.ts │ │ │ ├── polyfills.ts │ │ │ ├── shared │ │ │ │ ├── alert │ │ │ │ │ ├── alert-error.component.ts │ │ │ │ │ └── alert.component.ts │ │ │ │ ├── auth │ │ │ │ │ ├── account.service.ts │ │ │ │ │ ├── auth-jwt.service.ts │ │ │ │ │ ├── csrf.service.ts │ │ │ │ │ ├── has-any-authority.directive.ts │ │ │ │ │ ├── principal.service.ts │ │ │ │ │ ├── state-storage.service.ts │ │ │ │ │ └── user-route-access-service.ts │ │ │ │ ├── constants │ │ │ │ │ └── pagination.constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── login │ │ │ │ │ ├── login-modal.service.ts │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.service.ts │ │ │ │ ├── model │ │ │ │ │ ├── base-entity.ts │ │ │ │ │ ├── request-util.ts │ │ │ │ │ └── response-wrapper.model.ts │ │ │ │ ├── shared-common.module.ts │ │ │ │ ├── shared-libs.module.ts │ │ │ │ ├── shared.module.ts │ │ │ │ └── user │ │ │ │ │ ├── account.model.ts │ │ │ │ │ ├── user.model.ts │ │ │ │ │ └── user.service.ts │ │ │ └── vendor.ts │ │ │ ├── content │ │ │ ├── css │ │ │ │ ├── documentation.css │ │ │ │ ├── global.css │ │ │ │ └── vendor.css │ │ │ └── images │ │ │ │ ├── hipster.png │ │ │ │ ├── hipster2x.png │ │ │ │ └── logo-jhipster.png │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.webapp │ │ │ ├── robots.txt │ │ │ ├── sw.js │ │ │ └── swagger-ui │ │ │ ├── images │ │ │ └── throbber.gif │ │ │ └── index.html │ └── test │ │ ├── gatling │ │ ├── bin │ │ │ ├── gatling.bat │ │ │ ├── gatling.sh │ │ │ ├── recorder.bat │ │ │ └── recorder.sh │ │ ├── conf │ │ │ ├── gatling.conf │ │ │ └── logback.xml │ │ └── user-files │ │ │ └── simulations │ │ │ ├── BankAccountGatlingTest.scala │ │ │ ├── LabelGatlingTest.scala │ │ │ └── OperationGatlingTest.scala │ │ ├── java │ │ └── jhipster │ │ │ └── reactive │ │ │ ├── config │ │ │ ├── WebConfigurerTest.java │ │ │ └── WebConfigurerTestController.java │ │ │ ├── repository │ │ │ └── CustomAuditEventRepositoryIntTest.java │ │ │ ├── security │ │ │ ├── SecurityUtilsUnitTest.java │ │ │ └── jwt │ │ │ │ ├── JWTFilterTest.java │ │ │ │ └── TokenProviderTest.java │ │ │ ├── service │ │ │ ├── MailServiceIntTest.java │ │ │ └── UserServiceIntTest.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── AccountResourceIntTest.java │ │ │ ├── AuditResourceIntTest.java │ │ │ ├── BankAccountResourceIntTest.java │ │ │ ├── LabelResourceIntTest.java │ │ │ ├── LogsResourceIntTest.java │ │ │ ├── OperationResourceIntTest.java │ │ │ ├── ProfileInfoResourceIntTest.java │ │ │ ├── TestUtil.java │ │ │ ├── UserJWTControllerIntTest.java │ │ │ ├── UserResourceIntTest.java │ │ │ └── errors │ │ │ ├── ExceptionTranslatorIntTest.java │ │ │ └── ExceptionTranslatorTestController.java │ │ ├── javascript │ │ ├── karma.conf.js │ │ └── spec │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── activate │ │ │ │ │ └── activate.component.spec.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ └── password-reset-finish.component.spec.ts │ │ │ │ │ └── init │ │ │ │ │ │ └── password-reset-init.component.spec.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.spec.ts │ │ │ │ │ └── password.component.spec.ts │ │ │ │ ├── register │ │ │ │ │ └── register.component.spec.ts │ │ │ │ └── settings │ │ │ │ │ └── settings.component.spec.ts │ │ │ ├── admin │ │ │ │ ├── audits │ │ │ │ │ └── audits.component.spec.ts │ │ │ │ └── health │ │ │ │ │ └── health.component.spec.ts │ │ │ └── entities │ │ │ │ ├── bank-account │ │ │ │ └── bank-account-detail.component.spec.ts │ │ │ │ ├── label │ │ │ │ └── label-detail.component.spec.ts │ │ │ │ └── operation │ │ │ │ └── operation-detail.component.spec.ts │ │ │ ├── entry.ts │ │ │ ├── helpers │ │ │ ├── mock-account.service.ts │ │ │ ├── mock-principal.service.ts │ │ │ ├── mock-route.service.ts │ │ │ └── spyobject.ts │ │ │ └── test.module.ts │ │ └── resources │ │ ├── config │ │ └── application.yml │ │ ├── i18n │ │ └── messages_en.properties │ │ ├── logback.xml │ │ └── mails │ │ └── testEmail.html ├── tsconfig-aot.json ├── tsconfig.json ├── tslint.json ├── webpack │ ├── logo-jhipster.png │ ├── utils.js │ ├── webpack.common.js │ ├── webpack.dev.js │ ├── webpack.prod.js │ └── webpack.vendor.js └── yarn.lock ├── withoutSecuWithResponseEntity ├── .angular-cli.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jhipster │ ├── BankAccount.json │ ├── Label.json │ └── Operation.json ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── .yo-rc.json ├── README.md ├── mvnw ├── mvnw.cmd ├── package.json ├── pom.xml ├── proxy.conf.json ├── src │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ ├── app.yml │ │ │ ├── mongodb-cluster.yml │ │ │ ├── mongodb.yml │ │ │ ├── mongodb │ │ │ │ ├── MongoDB.Dockerfile │ │ │ │ └── scripts │ │ │ │ │ └── init_replicaset.js │ │ │ └── sonar.yml │ │ ├── java │ │ │ └── jhipster │ │ │ │ └── reactive │ │ │ │ ├── ApplicationWebXml.java │ │ │ │ ├── DefaultMongoDbApp.java │ │ │ │ ├── aop │ │ │ │ └── logging │ │ │ │ │ └── LoggingAspect.java │ │ │ │ ├── config │ │ │ │ ├── ApplicationProperties.java │ │ │ │ ├── AsyncConfiguration.java │ │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DatabaseConfiguration.java │ │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ │ ├── DefaultProfileUtil.java │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ ├── LocaleConfiguration.java │ │ │ │ ├── LoggingAspectConfiguration.java │ │ │ │ ├── LoggingConfiguration.java │ │ │ │ ├── MetricsConfiguration.java │ │ │ │ ├── SecurityConfiguration.java │ │ │ │ ├── ThymeleafConfiguration.java │ │ │ │ ├── WebConfigurer.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditEventConverter.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── dbmigrations │ │ │ │ │ ├── InitialSetupMigration.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ ├── domain │ │ │ │ ├── AbstractAuditingEntity.java │ │ │ │ ├── Authority.java │ │ │ │ ├── BankAccount.java │ │ │ │ ├── Label.java │ │ │ │ ├── Operation.java │ │ │ │ ├── PersistentAuditEvent.java │ │ │ │ ├── User.java │ │ │ │ └── package-info.java │ │ │ │ ├── repository │ │ │ │ ├── AuthorityRepository.java │ │ │ │ ├── BankAccountRepository.java │ │ │ │ ├── CustomAuditEventRepository.java │ │ │ │ ├── LabelRepository.java │ │ │ │ ├── OperationRepository.java │ │ │ │ ├── PersistenceAuditEventRepository.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── package-info.java │ │ │ │ ├── security │ │ │ │ ├── AuthoritiesConstants.java │ │ │ │ ├── DomainUserDetailsService.java │ │ │ │ ├── SecurityUtils.java │ │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ │ ├── UserNotActivatedException.java │ │ │ │ ├── jwt │ │ │ │ │ ├── JWTConfigurer.java │ │ │ │ │ ├── JWTFilter.java │ │ │ │ │ └── TokenProvider.java │ │ │ │ └── package-info.java │ │ │ │ ├── service │ │ │ │ ├── AuditEventService.java │ │ │ │ ├── MailService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── dto │ │ │ │ │ ├── UserDTO.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── mapper │ │ │ │ │ ├── UserMapper.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── util │ │ │ │ │ └── RandomUtil.java │ │ │ │ └── web │ │ │ │ └── rest │ │ │ │ ├── AccountResource.java │ │ │ │ ├── AuditResource.java │ │ │ │ ├── BankAccountResource.java │ │ │ │ ├── LabelResource.java │ │ │ │ ├── LogsResource.java │ │ │ │ ├── OperationResource.java │ │ │ │ ├── ProfileInfoResource.java │ │ │ │ ├── UserJWTController.java │ │ │ │ ├── UserResource.java │ │ │ │ ├── errors │ │ │ │ ├── CustomParameterizedException.java │ │ │ │ ├── ErrorConstants.java │ │ │ │ ├── ErrorVM.java │ │ │ │ ├── ExceptionTranslator.java │ │ │ │ ├── FieldErrorVM.java │ │ │ │ └── ParameterizedErrorVM.java │ │ │ │ ├── package-info.java │ │ │ │ ├── util │ │ │ │ ├── AsyncUtil.java │ │ │ │ ├── HeaderUtil.java │ │ │ │ └── PaginationUtil.java │ │ │ │ └── vm │ │ │ │ ├── KeyAndPasswordVM.java │ │ │ │ ├── LoggerVM.java │ │ │ │ ├── LoginVM.java │ │ │ │ ├── ManagedUserVM.java │ │ │ │ └── package-info.java │ │ ├── resources │ │ │ ├── banner.txt │ │ │ ├── config │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ └── application.yml │ │ │ ├── i18n │ │ │ │ └── messages.properties │ │ │ ├── logback-spring.xml │ │ │ ├── mails │ │ │ │ ├── activationEmail.html │ │ │ │ ├── creationEmail.html │ │ │ │ └── passwordResetEmail.html │ │ │ └── templates │ │ │ │ └── error.html │ │ └── webapp │ │ │ ├── 404.html │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── account.module.ts │ │ │ │ ├── account.route.ts │ │ │ │ ├── activate │ │ │ │ │ ├── activate.component.html │ │ │ │ │ ├── activate.component.ts │ │ │ │ │ ├── activate.route.ts │ │ │ │ │ └── activate.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ ├── password-reset-finish.component.html │ │ │ │ │ │ ├── password-reset-finish.component.ts │ │ │ │ │ │ ├── password-reset-finish.route.ts │ │ │ │ │ │ └── password-reset-finish.service.ts │ │ │ │ │ └── init │ │ │ │ │ │ ├── password-reset-init.component.html │ │ │ │ │ │ ├── password-reset-init.component.ts │ │ │ │ │ │ ├── password-reset-init.route.ts │ │ │ │ │ │ └── password-reset-init.service.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.ts │ │ │ │ │ ├── password-strength-bar.css │ │ │ │ │ ├── password.component.html │ │ │ │ │ ├── password.component.ts │ │ │ │ │ ├── password.route.ts │ │ │ │ │ └── password.service.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.html │ │ │ │ │ ├── register.component.ts │ │ │ │ │ ├── register.route.ts │ │ │ │ │ └── register.service.ts │ │ │ │ └── settings │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.ts │ │ │ │ │ └── settings.route.ts │ │ │ ├── admin │ │ │ │ ├── admin.module.ts │ │ │ │ ├── admin.route.ts │ │ │ │ ├── audits │ │ │ │ │ ├── audit-data.model.ts │ │ │ │ │ ├── audit.model.ts │ │ │ │ │ ├── audits.component.html │ │ │ │ │ ├── audits.component.ts │ │ │ │ │ ├── audits.route.ts │ │ │ │ │ └── audits.service.ts │ │ │ │ ├── configuration │ │ │ │ │ ├── configuration.component.html │ │ │ │ │ ├── configuration.component.ts │ │ │ │ │ ├── configuration.route.ts │ │ │ │ │ └── configuration.service.ts │ │ │ │ ├── docs │ │ │ │ │ ├── docs.component.html │ │ │ │ │ ├── docs.component.ts │ │ │ │ │ └── docs.route.ts │ │ │ │ ├── health │ │ │ │ │ ├── health-modal.component.html │ │ │ │ │ ├── health-modal.component.ts │ │ │ │ │ ├── health.component.html │ │ │ │ │ ├── health.component.ts │ │ │ │ │ ├── health.route.ts │ │ │ │ │ └── health.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logs │ │ │ │ │ ├── log.model.ts │ │ │ │ │ ├── logs.component.html │ │ │ │ │ ├── logs.component.ts │ │ │ │ │ ├── logs.route.ts │ │ │ │ │ └── logs.service.ts │ │ │ │ ├── metrics │ │ │ │ │ ├── metrics-modal.component.html │ │ │ │ │ ├── metrics-modal.component.ts │ │ │ │ │ ├── metrics.component.html │ │ │ │ │ ├── metrics.component.ts │ │ │ │ │ ├── metrics.route.ts │ │ │ │ │ └── metrics.service.ts │ │ │ │ └── user-management │ │ │ │ │ ├── user-management-delete-dialog.component.html │ │ │ │ │ ├── user-management-delete-dialog.component.ts │ │ │ │ │ ├── user-management-detail.component.html │ │ │ │ │ ├── user-management-detail.component.ts │ │ │ │ │ ├── user-management-dialog.component.html │ │ │ │ │ ├── user-management-dialog.component.ts │ │ │ │ │ ├── user-management.component.html │ │ │ │ │ ├── user-management.component.ts │ │ │ │ │ ├── user-management.route.ts │ │ │ │ │ └── user-modal.service.ts │ │ │ ├── app.constants.ts │ │ │ ├── app.main.ts │ │ │ ├── app.module.ts │ │ │ ├── app.route.ts │ │ │ ├── blocks │ │ │ │ ├── config │ │ │ │ │ ├── prod.config.ts │ │ │ │ │ └── uib-pagination.config.ts │ │ │ │ └── interceptor │ │ │ │ │ ├── auth-expired.interceptor.ts │ │ │ │ │ ├── auth.interceptor.ts │ │ │ │ │ ├── errorhandler.interceptor.ts │ │ │ │ │ ├── http.provider.ts │ │ │ │ │ └── notification.interceptor.ts │ │ │ ├── entities │ │ │ │ ├── bank-account │ │ │ │ │ ├── bank-account-delete-dialog.component.html │ │ │ │ │ ├── bank-account-delete-dialog.component.ts │ │ │ │ │ ├── bank-account-detail.component.html │ │ │ │ │ ├── bank-account-detail.component.ts │ │ │ │ │ ├── bank-account-dialog.component.html │ │ │ │ │ ├── bank-account-dialog.component.ts │ │ │ │ │ ├── bank-account-popup.service.ts │ │ │ │ │ ├── bank-account.component.html │ │ │ │ │ ├── bank-account.component.ts │ │ │ │ │ ├── bank-account.model.ts │ │ │ │ │ ├── bank-account.module.ts │ │ │ │ │ ├── bank-account.route.ts │ │ │ │ │ ├── bank-account.service.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── entity.module.ts │ │ │ │ ├── label │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── label-delete-dialog.component.html │ │ │ │ │ ├── label-delete-dialog.component.ts │ │ │ │ │ ├── label-detail.component.html │ │ │ │ │ ├── label-detail.component.ts │ │ │ │ │ ├── label-dialog.component.html │ │ │ │ │ ├── label-dialog.component.ts │ │ │ │ │ ├── label-popup.service.ts │ │ │ │ │ ├── label.component.html │ │ │ │ │ ├── label.component.ts │ │ │ │ │ ├── label.model.ts │ │ │ │ │ ├── label.module.ts │ │ │ │ │ ├── label.route.ts │ │ │ │ │ └── label.service.ts │ │ │ │ └── operation │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── operation-delete-dialog.component.html │ │ │ │ │ ├── operation-delete-dialog.component.ts │ │ │ │ │ ├── operation-detail.component.html │ │ │ │ │ ├── operation-detail.component.ts │ │ │ │ │ ├── operation-dialog.component.html │ │ │ │ │ ├── operation-dialog.component.ts │ │ │ │ │ ├── operation-popup.service.ts │ │ │ │ │ ├── operation.component.html │ │ │ │ │ ├── operation.component.ts │ │ │ │ │ ├── operation.model.ts │ │ │ │ │ ├── operation.module.ts │ │ │ │ │ ├── operation.route.ts │ │ │ │ │ └── operation.service.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.ts │ │ │ │ ├── home.css │ │ │ │ ├── home.module.ts │ │ │ │ ├── home.route.ts │ │ │ │ └── index.ts │ │ │ ├── layouts │ │ │ │ ├── error │ │ │ │ │ ├── error.component.html │ │ │ │ │ ├── error.component.ts │ │ │ │ │ └── error.route.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layout-routing.module.ts │ │ │ │ ├── main │ │ │ │ │ ├── main.component.html │ │ │ │ │ └── main.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ ├── navbar.component.ts │ │ │ │ │ └── navbar.css │ │ │ │ └── profiles │ │ │ │ │ ├── page-ribbon.component.ts │ │ │ │ │ ├── page-ribbon.css │ │ │ │ │ ├── profile-info.model.ts │ │ │ │ │ └── profile.service.ts │ │ │ ├── polyfills.ts │ │ │ ├── shared │ │ │ │ ├── alert │ │ │ │ │ ├── alert-error.component.ts │ │ │ │ │ └── alert.component.ts │ │ │ │ ├── auth │ │ │ │ │ ├── account.service.ts │ │ │ │ │ ├── auth-jwt.service.ts │ │ │ │ │ ├── csrf.service.ts │ │ │ │ │ ├── has-any-authority.directive.ts │ │ │ │ │ ├── principal.service.ts │ │ │ │ │ ├── state-storage.service.ts │ │ │ │ │ └── user-route-access-service.ts │ │ │ │ ├── constants │ │ │ │ │ └── pagination.constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── login │ │ │ │ │ ├── login-modal.service.ts │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.service.ts │ │ │ │ ├── model │ │ │ │ │ ├── base-entity.ts │ │ │ │ │ ├── request-util.ts │ │ │ │ │ └── response-wrapper.model.ts │ │ │ │ ├── shared-common.module.ts │ │ │ │ ├── shared-libs.module.ts │ │ │ │ ├── shared.module.ts │ │ │ │ └── user │ │ │ │ │ ├── account.model.ts │ │ │ │ │ ├── user.model.ts │ │ │ │ │ └── user.service.ts │ │ │ └── vendor.ts │ │ │ ├── content │ │ │ ├── css │ │ │ │ ├── documentation.css │ │ │ │ ├── global.css │ │ │ │ └── vendor.css │ │ │ └── images │ │ │ │ ├── hipster.png │ │ │ │ ├── hipster2x.png │ │ │ │ └── logo-jhipster.png │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.webapp │ │ │ ├── robots.txt │ │ │ ├── sw.js │ │ │ └── swagger-ui │ │ │ ├── images │ │ │ └── throbber.gif │ │ │ └── index.html │ └── test │ │ ├── gatling │ │ ├── bin │ │ │ ├── gatling.bat │ │ │ ├── gatling.sh │ │ │ ├── recorder.bat │ │ │ └── recorder.sh │ │ ├── conf │ │ │ ├── gatling.conf │ │ │ └── logback.xml │ │ └── user-files │ │ │ └── simulations │ │ │ ├── BankAccountGatlingTest.scala │ │ │ ├── LabelGatlingTest.scala │ │ │ └── OperationGatlingTest.scala │ │ ├── java │ │ └── jhipster │ │ │ └── reactive │ │ │ ├── config │ │ │ ├── WebConfigurerTest.java │ │ │ └── WebConfigurerTestController.java │ │ │ ├── repository │ │ │ └── CustomAuditEventRepositoryIntTest.java │ │ │ ├── security │ │ │ ├── SecurityUtilsUnitTest.java │ │ │ └── jwt │ │ │ │ ├── JWTFilterTest.java │ │ │ │ └── TokenProviderTest.java │ │ │ ├── service │ │ │ ├── MailServiceIntTest.java │ │ │ └── UserServiceIntTest.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── AccountResourceIntTest.java │ │ │ ├── AuditResourceIntTest.java │ │ │ ├── BankAccountResourceIntTest.java │ │ │ ├── LabelResourceIntTest.java │ │ │ ├── LogsResourceIntTest.java │ │ │ ├── OperationResourceIntTest.java │ │ │ ├── ProfileInfoResourceIntTest.java │ │ │ ├── TestUtil.java │ │ │ ├── UserJWTControllerIntTest.java │ │ │ ├── UserResourceIntTest.java │ │ │ └── errors │ │ │ ├── ExceptionTranslatorIntTest.java │ │ │ └── ExceptionTranslatorTestController.java │ │ ├── javascript │ │ ├── karma.conf.js │ │ └── spec │ │ │ ├── app │ │ │ ├── account │ │ │ │ ├── activate │ │ │ │ │ └── activate.component.spec.ts │ │ │ │ ├── password-reset │ │ │ │ │ ├── finish │ │ │ │ │ │ └── password-reset-finish.component.spec.ts │ │ │ │ │ └── init │ │ │ │ │ │ └── password-reset-init.component.spec.ts │ │ │ │ ├── password │ │ │ │ │ ├── password-strength-bar.component.spec.ts │ │ │ │ │ └── password.component.spec.ts │ │ │ │ ├── register │ │ │ │ │ └── register.component.spec.ts │ │ │ │ └── settings │ │ │ │ │ └── settings.component.spec.ts │ │ │ ├── admin │ │ │ │ ├── audits │ │ │ │ │ └── audits.component.spec.ts │ │ │ │ └── health │ │ │ │ │ └── health.component.spec.ts │ │ │ └── entities │ │ │ │ ├── bank-account │ │ │ │ └── bank-account-detail.component.spec.ts │ │ │ │ ├── label │ │ │ │ └── label-detail.component.spec.ts │ │ │ │ └── operation │ │ │ │ └── operation-detail.component.spec.ts │ │ │ ├── entry.ts │ │ │ ├── helpers │ │ │ ├── mock-account.service.ts │ │ │ ├── mock-principal.service.ts │ │ │ ├── mock-route.service.ts │ │ │ └── spyobject.ts │ │ │ └── test.module.ts │ │ └── resources │ │ ├── config │ │ └── application.yml │ │ ├── i18n │ │ └── messages_en.properties │ │ ├── logback.xml │ │ └── mails │ │ └── testEmail.html ├── tsconfig-aot.json ├── tsconfig.json ├── tslint.json ├── webpack │ ├── logo-jhipster.png │ ├── utils.js │ ├── webpack.common.js │ ├── webpack.dev.js │ ├── webpack.prod.js │ └── webpack.vendor.js └── yarn.lock └── withoutSecuWithoutResponseEntity ├── .angular-cli.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jhipster ├── BankAccount.json ├── Label.json └── Operation.json ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .yo-rc.json ├── README.md ├── mvnw ├── mvnw.cmd ├── package.json ├── pom.xml ├── proxy.conf.json ├── src ├── main │ ├── docker │ │ ├── Dockerfile │ │ ├── app.yml │ │ ├── mongodb-cluster.yml │ │ ├── mongodb.yml │ │ ├── mongodb │ │ │ ├── MongoDB.Dockerfile │ │ │ └── scripts │ │ │ │ └── init_replicaset.js │ │ └── sonar.yml │ ├── java │ │ └── jhipster │ │ │ └── reactive │ │ │ ├── ApplicationWebXml.java │ │ │ ├── DefaultMongoDbApp.java │ │ │ ├── aop │ │ │ └── logging │ │ │ │ └── LoggingAspect.java │ │ │ ├── config │ │ │ ├── ApplicationProperties.java │ │ │ ├── AsyncConfiguration.java │ │ │ ├── CloudDatabaseConfiguration.java │ │ │ ├── Constants.java │ │ │ ├── DatabaseConfiguration.java │ │ │ ├── DateTimeFormatConfiguration.java │ │ │ ├── DefaultProfileUtil.java │ │ │ ├── JacksonConfiguration.java │ │ │ ├── LocaleConfiguration.java │ │ │ ├── LoggingAspectConfiguration.java │ │ │ ├── LoggingConfiguration.java │ │ │ ├── MetricsConfiguration.java │ │ │ ├── SecurityConfiguration.java │ │ │ ├── ThymeleafConfiguration.java │ │ │ ├── WebConfigurer.java │ │ │ ├── audit │ │ │ │ ├── AuditEventConverter.java │ │ │ │ └── package-info.java │ │ │ ├── dbmigrations │ │ │ │ ├── InitialSetupMigration.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── domain │ │ │ ├── AbstractAuditingEntity.java │ │ │ ├── Authority.java │ │ │ ├── BankAccount.java │ │ │ ├── Label.java │ │ │ ├── Operation.java │ │ │ ├── PersistentAuditEvent.java │ │ │ ├── User.java │ │ │ └── package-info.java │ │ │ ├── repository │ │ │ ├── AuthorityRepository.java │ │ │ ├── BankAccountRepository.java │ │ │ ├── CustomAuditEventRepository.java │ │ │ ├── LabelRepository.java │ │ │ ├── OperationRepository.java │ │ │ ├── PersistenceAuditEventRepository.java │ │ │ ├── UserRepository.java │ │ │ └── package-info.java │ │ │ ├── security │ │ │ ├── AuthoritiesConstants.java │ │ │ ├── DomainUserDetailsService.java │ │ │ ├── SecurityUtils.java │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ ├── UserNotActivatedException.java │ │ │ ├── jwt │ │ │ │ ├── JWTConfigurer.java │ │ │ │ ├── JWTFilter.java │ │ │ │ └── TokenProvider.java │ │ │ └── package-info.java │ │ │ ├── service │ │ │ ├── AuditEventService.java │ │ │ ├── MailService.java │ │ │ ├── UserService.java │ │ │ ├── dto │ │ │ │ ├── UserDTO.java │ │ │ │ └── package-info.java │ │ │ ├── mapper │ │ │ │ ├── UserMapper.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── util │ │ │ │ └── RandomUtil.java │ │ │ └── web │ │ │ └── rest │ │ │ ├── AccountResource.java │ │ │ ├── AuditResource.java │ │ │ ├── BankAccountResource.java │ │ │ ├── LabelResource.java │ │ │ ├── LogsResource.java │ │ │ ├── OperationResource.java │ │ │ ├── ProfileInfoResource.java │ │ │ ├── UserJWTController.java │ │ │ ├── UserResource.java │ │ │ ├── errors │ │ │ ├── CustomParameterizedException.java │ │ │ ├── ErrorConstants.java │ │ │ ├── ErrorVM.java │ │ │ ├── ExceptionTranslator.java │ │ │ ├── FieldErrorVM.java │ │ │ └── ParameterizedErrorVM.java │ │ │ ├── package-info.java │ │ │ ├── util │ │ │ ├── AsyncUtil.java │ │ │ ├── HeaderUtil.java │ │ │ └── PaginationUtil.java │ │ │ └── vm │ │ │ ├── KeyAndPasswordVM.java │ │ │ ├── LoggerVM.java │ │ │ ├── LoginVM.java │ │ │ ├── ManagedUserVM.java │ │ │ └── package-info.java │ ├── resources │ │ ├── banner.txt │ │ ├── config │ │ │ ├── application-dev.yml │ │ │ ├── application-prod.yml │ │ │ └── application.yml │ │ ├── i18n │ │ │ └── messages.properties │ │ ├── logback-spring.xml │ │ ├── mails │ │ │ ├── activationEmail.html │ │ │ ├── creationEmail.html │ │ │ └── passwordResetEmail.html │ │ └── templates │ │ │ └── error.html │ └── webapp │ │ ├── 404.html │ │ ├── app │ │ ├── account │ │ │ ├── account.module.ts │ │ │ ├── account.route.ts │ │ │ ├── activate │ │ │ │ ├── activate.component.html │ │ │ │ ├── activate.component.ts │ │ │ │ ├── activate.route.ts │ │ │ │ └── activate.service.ts │ │ │ ├── index.ts │ │ │ ├── password-reset │ │ │ │ ├── finish │ │ │ │ │ ├── password-reset-finish.component.html │ │ │ │ │ ├── password-reset-finish.component.ts │ │ │ │ │ ├── password-reset-finish.route.ts │ │ │ │ │ └── password-reset-finish.service.ts │ │ │ │ └── init │ │ │ │ │ ├── password-reset-init.component.html │ │ │ │ │ ├── password-reset-init.component.ts │ │ │ │ │ ├── password-reset-init.route.ts │ │ │ │ │ └── password-reset-init.service.ts │ │ │ ├── password │ │ │ │ ├── password-strength-bar.component.ts │ │ │ │ ├── password-strength-bar.css │ │ │ │ ├── password.component.html │ │ │ │ ├── password.component.ts │ │ │ │ ├── password.route.ts │ │ │ │ └── password.service.ts │ │ │ ├── register │ │ │ │ ├── register.component.html │ │ │ │ ├── register.component.ts │ │ │ │ ├── register.route.ts │ │ │ │ └── register.service.ts │ │ │ └── settings │ │ │ │ ├── settings.component.html │ │ │ │ ├── settings.component.ts │ │ │ │ └── settings.route.ts │ │ ├── admin │ │ │ ├── admin.module.ts │ │ │ ├── admin.route.ts │ │ │ ├── audits │ │ │ │ ├── audit-data.model.ts │ │ │ │ ├── audit.model.ts │ │ │ │ ├── audits.component.html │ │ │ │ ├── audits.component.ts │ │ │ │ ├── audits.route.ts │ │ │ │ └── audits.service.ts │ │ │ ├── configuration │ │ │ │ ├── configuration.component.html │ │ │ │ ├── configuration.component.ts │ │ │ │ ├── configuration.route.ts │ │ │ │ └── configuration.service.ts │ │ │ ├── docs │ │ │ │ ├── docs.component.html │ │ │ │ ├── docs.component.ts │ │ │ │ └── docs.route.ts │ │ │ ├── health │ │ │ │ ├── health-modal.component.html │ │ │ │ ├── health-modal.component.ts │ │ │ │ ├── health.component.html │ │ │ │ ├── health.component.ts │ │ │ │ ├── health.route.ts │ │ │ │ └── health.service.ts │ │ │ ├── index.ts │ │ │ ├── logs │ │ │ │ ├── log.model.ts │ │ │ │ ├── logs.component.html │ │ │ │ ├── logs.component.ts │ │ │ │ ├── logs.route.ts │ │ │ │ └── logs.service.ts │ │ │ ├── metrics │ │ │ │ ├── metrics-modal.component.html │ │ │ │ ├── metrics-modal.component.ts │ │ │ │ ├── metrics.component.html │ │ │ │ ├── metrics.component.ts │ │ │ │ ├── metrics.route.ts │ │ │ │ └── metrics.service.ts │ │ │ └── user-management │ │ │ │ ├── user-management-delete-dialog.component.html │ │ │ │ ├── user-management-delete-dialog.component.ts │ │ │ │ ├── user-management-detail.component.html │ │ │ │ ├── user-management-detail.component.ts │ │ │ │ ├── user-management-dialog.component.html │ │ │ │ ├── user-management-dialog.component.ts │ │ │ │ ├── user-management.component.html │ │ │ │ ├── user-management.component.ts │ │ │ │ ├── user-management.route.ts │ │ │ │ └── user-modal.service.ts │ │ ├── app.constants.ts │ │ ├── app.main.ts │ │ ├── app.module.ts │ │ ├── app.route.ts │ │ ├── blocks │ │ │ ├── config │ │ │ │ ├── prod.config.ts │ │ │ │ └── uib-pagination.config.ts │ │ │ └── interceptor │ │ │ │ ├── auth-expired.interceptor.ts │ │ │ │ ├── auth.interceptor.ts │ │ │ │ ├── errorhandler.interceptor.ts │ │ │ │ ├── http.provider.ts │ │ │ │ └── notification.interceptor.ts │ │ ├── entities │ │ │ ├── bank-account │ │ │ │ ├── bank-account-delete-dialog.component.html │ │ │ │ ├── bank-account-delete-dialog.component.ts │ │ │ │ ├── bank-account-detail.component.html │ │ │ │ ├── bank-account-detail.component.ts │ │ │ │ ├── bank-account-dialog.component.html │ │ │ │ ├── bank-account-dialog.component.ts │ │ │ │ ├── bank-account-popup.service.ts │ │ │ │ ├── bank-account.component.html │ │ │ │ ├── bank-account.component.ts │ │ │ │ ├── bank-account.model.ts │ │ │ │ ├── bank-account.module.ts │ │ │ │ ├── bank-account.route.ts │ │ │ │ ├── bank-account.service.ts │ │ │ │ └── index.ts │ │ │ ├── entity.module.ts │ │ │ ├── label │ │ │ │ ├── index.ts │ │ │ │ ├── label-delete-dialog.component.html │ │ │ │ ├── label-delete-dialog.component.ts │ │ │ │ ├── label-detail.component.html │ │ │ │ ├── label-detail.component.ts │ │ │ │ ├── label-dialog.component.html │ │ │ │ ├── label-dialog.component.ts │ │ │ │ ├── label-popup.service.ts │ │ │ │ ├── label.component.html │ │ │ │ ├── label.component.ts │ │ │ │ ├── label.model.ts │ │ │ │ ├── label.module.ts │ │ │ │ ├── label.route.ts │ │ │ │ └── label.service.ts │ │ │ └── operation │ │ │ │ ├── index.ts │ │ │ │ ├── operation-delete-dialog.component.html │ │ │ │ ├── operation-delete-dialog.component.ts │ │ │ │ ├── operation-detail.component.html │ │ │ │ ├── operation-detail.component.ts │ │ │ │ ├── operation-dialog.component.html │ │ │ │ ├── operation-dialog.component.ts │ │ │ │ ├── operation-popup.service.ts │ │ │ │ ├── operation.component.html │ │ │ │ ├── operation.component.ts │ │ │ │ ├── operation.model.ts │ │ │ │ ├── operation.module.ts │ │ │ │ ├── operation.route.ts │ │ │ │ └── operation.service.ts │ │ ├── home │ │ │ ├── home.component.html │ │ │ ├── home.component.ts │ │ │ ├── home.css │ │ │ ├── home.module.ts │ │ │ ├── home.route.ts │ │ │ └── index.ts │ │ ├── layouts │ │ │ ├── error │ │ │ │ ├── error.component.html │ │ │ │ ├── error.component.ts │ │ │ │ └── error.route.ts │ │ │ ├── footer │ │ │ │ ├── footer.component.html │ │ │ │ └── footer.component.ts │ │ │ ├── index.ts │ │ │ ├── layout-routing.module.ts │ │ │ ├── main │ │ │ │ ├── main.component.html │ │ │ │ └── main.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.html │ │ │ │ ├── navbar.component.ts │ │ │ │ └── navbar.css │ │ │ └── profiles │ │ │ │ ├── page-ribbon.component.ts │ │ │ │ ├── page-ribbon.css │ │ │ │ ├── profile-info.model.ts │ │ │ │ └── profile.service.ts │ │ ├── polyfills.ts │ │ ├── shared │ │ │ ├── alert │ │ │ │ ├── alert-error.component.ts │ │ │ │ └── alert.component.ts │ │ │ ├── auth │ │ │ │ ├── account.service.ts │ │ │ │ ├── auth-jwt.service.ts │ │ │ │ ├── csrf.service.ts │ │ │ │ ├── has-any-authority.directive.ts │ │ │ │ ├── principal.service.ts │ │ │ │ ├── state-storage.service.ts │ │ │ │ └── user-route-access-service.ts │ │ │ ├── constants │ │ │ │ └── pagination.constants.ts │ │ │ ├── index.ts │ │ │ ├── login │ │ │ │ ├── login-modal.service.ts │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.ts │ │ │ │ └── login.service.ts │ │ │ ├── model │ │ │ │ ├── base-entity.ts │ │ │ │ ├── request-util.ts │ │ │ │ └── response-wrapper.model.ts │ │ │ ├── shared-common.module.ts │ │ │ ├── shared-libs.module.ts │ │ │ ├── shared.module.ts │ │ │ └── user │ │ │ │ ├── account.model.ts │ │ │ │ ├── user.model.ts │ │ │ │ └── user.service.ts │ │ └── vendor.ts │ │ ├── content │ │ ├── css │ │ │ ├── documentation.css │ │ │ ├── global.css │ │ │ └── vendor.css │ │ └── images │ │ │ ├── hipster.png │ │ │ ├── hipster2x.png │ │ │ └── logo-jhipster.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── manifest.webapp │ │ ├── robots.txt │ │ ├── sw.js │ │ └── swagger-ui │ │ ├── images │ │ └── throbber.gif │ │ └── index.html └── test │ ├── gatling │ ├── bin │ │ ├── gatling.bat │ │ ├── gatling.sh │ │ ├── recorder.bat │ │ └── recorder.sh │ ├── conf │ │ ├── gatling.conf │ │ └── logback.xml │ └── user-files │ │ └── simulations │ │ ├── BankAccountGatlingTest.scala │ │ ├── LabelGatlingTest.scala │ │ └── OperationGatlingTest.scala │ ├── java │ └── jhipster │ │ └── reactive │ │ ├── config │ │ ├── WebConfigurerTest.java │ │ └── WebConfigurerTestController.java │ │ ├── repository │ │ └── CustomAuditEventRepositoryIntTest.java │ │ ├── security │ │ ├── SecurityUtilsUnitTest.java │ │ └── jwt │ │ │ ├── JWTFilterTest.java │ │ │ └── TokenProviderTest.java │ │ ├── service │ │ ├── MailServiceIntTest.java │ │ └── UserServiceIntTest.java │ │ └── web │ │ └── rest │ │ ├── AccountResourceIntTest.java │ │ ├── AuditResourceIntTest.java │ │ ├── BankAccountResourceIntTest.java │ │ ├── LabelResourceIntTest.java │ │ ├── LogsResourceIntTest.java │ │ ├── OperationResourceIntTest.java │ │ ├── ProfileInfoResourceIntTest.java │ │ ├── TestUtil.java │ │ ├── UserJWTControllerIntTest.java │ │ ├── UserResourceIntTest.java │ │ └── errors │ │ ├── ExceptionTranslatorIntTest.java │ │ └── ExceptionTranslatorTestController.java │ ├── javascript │ ├── karma.conf.js │ └── spec │ │ ├── app │ │ ├── account │ │ │ ├── activate │ │ │ │ └── activate.component.spec.ts │ │ │ ├── password-reset │ │ │ │ ├── finish │ │ │ │ │ └── password-reset-finish.component.spec.ts │ │ │ │ └── init │ │ │ │ │ └── password-reset-init.component.spec.ts │ │ │ ├── password │ │ │ │ ├── password-strength-bar.component.spec.ts │ │ │ │ └── password.component.spec.ts │ │ │ ├── register │ │ │ │ └── register.component.spec.ts │ │ │ └── settings │ │ │ │ └── settings.component.spec.ts │ │ ├── admin │ │ │ ├── audits │ │ │ │ └── audits.component.spec.ts │ │ │ └── health │ │ │ │ └── health.component.spec.ts │ │ └── entities │ │ │ ├── bank-account │ │ │ └── bank-account-detail.component.spec.ts │ │ │ ├── label │ │ │ └── label-detail.component.spec.ts │ │ │ └── operation │ │ │ └── operation-detail.component.spec.ts │ │ ├── entry.ts │ │ ├── helpers │ │ ├── mock-account.service.ts │ │ ├── mock-principal.service.ts │ │ ├── mock-route.service.ts │ │ └── spyobject.ts │ │ └── test.module.ts │ └── resources │ ├── config │ └── application.yml │ ├── i18n │ └── messages_en.properties │ ├── logback.xml │ └── mails │ └── testEmail.html ├── tsconfig-aot.json ├── tsconfig.json ├── tslint.json ├── webpack ├── logo-jhipster.png ├── utils.js ├── webpack.common.js ├── webpack.dev.js ├── webpack.prod.js └── webpack.vendor.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/README.md -------------------------------------------------------------------------------- /defaultSpring4/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/.angular-cli.json -------------------------------------------------------------------------------- /defaultSpring4/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/.editorconfig -------------------------------------------------------------------------------- /defaultSpring4/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/.gitattributes -------------------------------------------------------------------------------- /defaultSpring4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/.gitignore -------------------------------------------------------------------------------- /defaultSpring4/.jhipster/BankAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/.jhipster/BankAccount.json -------------------------------------------------------------------------------- /defaultSpring4/.jhipster/Label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/.jhipster/Label.json -------------------------------------------------------------------------------- /defaultSpring4/.jhipster/Operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/.jhipster/Operation.json -------------------------------------------------------------------------------- /defaultSpring4/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /defaultSpring4/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /defaultSpring4/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/.yo-rc.json -------------------------------------------------------------------------------- /defaultSpring4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/README.md -------------------------------------------------------------------------------- /defaultSpring4/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/mvnw -------------------------------------------------------------------------------- /defaultSpring4/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/mvnw.cmd -------------------------------------------------------------------------------- /defaultSpring4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/package.json -------------------------------------------------------------------------------- /defaultSpring4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/pom.xml -------------------------------------------------------------------------------- /defaultSpring4/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/proxy.conf.json -------------------------------------------------------------------------------- /defaultSpring4/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /defaultSpring4/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/docker/app.yml -------------------------------------------------------------------------------- /defaultSpring4/src/main/docker/mongodb-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/docker/mongodb-cluster.yml -------------------------------------------------------------------------------- /defaultSpring4/src/main/docker/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/docker/mongodb.yml -------------------------------------------------------------------------------- /defaultSpring4/src/main/docker/mongodb/MongoDB.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/docker/mongodb/MongoDB.Dockerfile -------------------------------------------------------------------------------- /defaultSpring4/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /defaultSpring4/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/resources/banner.txt -------------------------------------------------------------------------------- /defaultSpring4/src/main/resources/config/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/resources/config/application-dev.yml -------------------------------------------------------------------------------- /defaultSpring4/src/main/resources/config/application-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/resources/config/application-prod.yml -------------------------------------------------------------------------------- /defaultSpring4/src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /defaultSpring4/src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/resources/i18n/messages.properties -------------------------------------------------------------------------------- /defaultSpring4/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /defaultSpring4/src/main/resources/mails/activationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/resources/mails/activationEmail.html -------------------------------------------------------------------------------- /defaultSpring4/src/main/resources/mails/creationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/resources/mails/creationEmail.html -------------------------------------------------------------------------------- /defaultSpring4/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/404.html -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/account/account.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/account/account.module.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/account/account.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/account/account.route.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/account/index.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/admin/admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/admin/admin.module.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/admin/admin.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/admin/admin.route.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/admin/docs/docs.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/admin/docs/docs.route.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/admin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/admin/index.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/admin/logs/log.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/admin/logs/log.model.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/admin/logs/logs.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/admin/logs/logs.route.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/admin/logs/logs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/admin/logs/logs.service.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/app.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/app.constants.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/app.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/app.main.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/app.module.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/app.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/app.route.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/entities/entity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/entities/entity.module.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/entities/label/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/entities/label/index.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/home/home.component.html -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/home/home.component.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/home/home.css -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/home/home.module.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/home/home.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/home/home.route.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/home/index.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/layouts/index.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/layouts/navbar/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/layouts/navbar/navbar.css -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/polyfills.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/shared/constants/pagination.constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/shared/index.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/shared/shared.module.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/shared/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/shared/user/user.model.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/app/vendor.ts -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/content/css/documentation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/content/css/documentation.css -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/content/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/content/css/global.css -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/content/css/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/content/css/vendor.css -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/content/images/hipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/content/images/hipster.png -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/content/images/hipster2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/content/images/hipster2x.png -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/index.html -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/manifest.webapp -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/sw.js -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/swagger-ui/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/swagger-ui/images/throbber.gif -------------------------------------------------------------------------------- /defaultSpring4/src/main/webapp/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/main/webapp/swagger-ui/index.html -------------------------------------------------------------------------------- /defaultSpring4/src/test/gatling/bin/gatling.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/test/gatling/bin/gatling.bat -------------------------------------------------------------------------------- /defaultSpring4/src/test/gatling/bin/gatling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/test/gatling/bin/gatling.sh -------------------------------------------------------------------------------- /defaultSpring4/src/test/gatling/bin/recorder.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/test/gatling/bin/recorder.bat -------------------------------------------------------------------------------- /defaultSpring4/src/test/gatling/bin/recorder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/test/gatling/bin/recorder.sh -------------------------------------------------------------------------------- /defaultSpring4/src/test/gatling/conf/gatling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/test/gatling/conf/gatling.conf -------------------------------------------------------------------------------- /defaultSpring4/src/test/gatling/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/test/gatling/conf/logback.xml -------------------------------------------------------------------------------- /defaultSpring4/src/test/javascript/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/test/javascript/karma.conf.js -------------------------------------------------------------------------------- /defaultSpring4/src/test/javascript/spec/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/test/javascript/spec/entry.ts -------------------------------------------------------------------------------- /defaultSpring4/src/test/javascript/spec/helpers/spyobject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/test/javascript/spec/helpers/spyobject.ts -------------------------------------------------------------------------------- /defaultSpring4/src/test/javascript/spec/test.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/test/javascript/spec/test.module.ts -------------------------------------------------------------------------------- /defaultSpring4/src/test/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/test/resources/config/application.yml -------------------------------------------------------------------------------- /defaultSpring4/src/test/resources/i18n/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/test/resources/i18n/messages_en.properties -------------------------------------------------------------------------------- /defaultSpring4/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/test/resources/logback.xml -------------------------------------------------------------------------------- /defaultSpring4/src/test/resources/mails/testEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/src/test/resources/mails/testEmail.html -------------------------------------------------------------------------------- /defaultSpring4/tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/tsconfig-aot.json -------------------------------------------------------------------------------- /defaultSpring4/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/tsconfig.json -------------------------------------------------------------------------------- /defaultSpring4/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/tslint.json -------------------------------------------------------------------------------- /defaultSpring4/webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /defaultSpring4/webpack/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/webpack/utils.js -------------------------------------------------------------------------------- /defaultSpring4/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/webpack/webpack.common.js -------------------------------------------------------------------------------- /defaultSpring4/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/webpack/webpack.dev.js -------------------------------------------------------------------------------- /defaultSpring4/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/webpack/webpack.prod.js -------------------------------------------------------------------------------- /defaultSpring4/webpack/webpack.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring4/webpack/webpack.vendor.js -------------------------------------------------------------------------------- /defaultSpring5/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/.angular-cli.json -------------------------------------------------------------------------------- /defaultSpring5/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/.editorconfig -------------------------------------------------------------------------------- /defaultSpring5/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/.gitattributes -------------------------------------------------------------------------------- /defaultSpring5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/.gitignore -------------------------------------------------------------------------------- /defaultSpring5/.jhipster/BankAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/.jhipster/BankAccount.json -------------------------------------------------------------------------------- /defaultSpring5/.jhipster/Label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/.jhipster/Label.json -------------------------------------------------------------------------------- /defaultSpring5/.jhipster/Operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/.jhipster/Operation.json -------------------------------------------------------------------------------- /defaultSpring5/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /defaultSpring5/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /defaultSpring5/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/.yo-rc.json -------------------------------------------------------------------------------- /defaultSpring5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/README.md -------------------------------------------------------------------------------- /defaultSpring5/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/mvnw -------------------------------------------------------------------------------- /defaultSpring5/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/mvnw.cmd -------------------------------------------------------------------------------- /defaultSpring5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/package.json -------------------------------------------------------------------------------- /defaultSpring5/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/pom.xml -------------------------------------------------------------------------------- /defaultSpring5/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/proxy.conf.json -------------------------------------------------------------------------------- /defaultSpring5/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /defaultSpring5/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/docker/app.yml -------------------------------------------------------------------------------- /defaultSpring5/src/main/docker/mongodb-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/docker/mongodb-cluster.yml -------------------------------------------------------------------------------- /defaultSpring5/src/main/docker/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/docker/mongodb.yml -------------------------------------------------------------------------------- /defaultSpring5/src/main/docker/mongodb/MongoDB.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/docker/mongodb/MongoDB.Dockerfile -------------------------------------------------------------------------------- /defaultSpring5/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /defaultSpring5/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/resources/banner.txt -------------------------------------------------------------------------------- /defaultSpring5/src/main/resources/config/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/resources/config/application-dev.yml -------------------------------------------------------------------------------- /defaultSpring5/src/main/resources/config/application-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/resources/config/application-prod.yml -------------------------------------------------------------------------------- /defaultSpring5/src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /defaultSpring5/src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/resources/i18n/messages.properties -------------------------------------------------------------------------------- /defaultSpring5/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /defaultSpring5/src/main/resources/mails/activationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/resources/mails/activationEmail.html -------------------------------------------------------------------------------- /defaultSpring5/src/main/resources/mails/creationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/resources/mails/creationEmail.html -------------------------------------------------------------------------------- /defaultSpring5/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/404.html -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/account/account.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/account/account.module.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/account/account.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/account/account.route.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/account/index.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/admin/admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/admin/admin.module.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/admin/admin.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/admin/admin.route.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/admin/docs/docs.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/admin/docs/docs.route.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/admin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/admin/index.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/admin/logs/log.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/admin/logs/log.model.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/admin/logs/logs.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/admin/logs/logs.route.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/admin/logs/logs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/admin/logs/logs.service.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/app.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/app.constants.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/app.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/app.main.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/app.module.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/app.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/app.route.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/entities/entity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/entities/entity.module.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/entities/label/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/entities/label/index.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/home/home.component.html -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/home/home.component.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/home/home.css -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/home/home.module.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/home/home.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/home/home.route.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/home/index.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/layouts/index.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/layouts/navbar/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/layouts/navbar/navbar.css -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/polyfills.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/shared/constants/pagination.constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/shared/index.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/shared/model/base-entity.ts: -------------------------------------------------------------------------------- 1 | export interface BaseEntity { 2 | id?: number|string; 3 | }; 4 | -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/shared/shared.module.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/shared/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/shared/user/user.model.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/app/vendor.ts -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/content/css/documentation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/content/css/documentation.css -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/content/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/content/css/global.css -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/content/css/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/content/css/vendor.css -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/content/images/hipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/content/images/hipster.png -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/content/images/hipster2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/content/images/hipster2x.png -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/index.html -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/manifest.webapp -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/sw.js -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/swagger-ui/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/swagger-ui/images/throbber.gif -------------------------------------------------------------------------------- /defaultSpring5/src/main/webapp/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/main/webapp/swagger-ui/index.html -------------------------------------------------------------------------------- /defaultSpring5/src/test/gatling/bin/gatling.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/test/gatling/bin/gatling.bat -------------------------------------------------------------------------------- /defaultSpring5/src/test/gatling/bin/gatling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/test/gatling/bin/gatling.sh -------------------------------------------------------------------------------- /defaultSpring5/src/test/gatling/bin/recorder.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/test/gatling/bin/recorder.bat -------------------------------------------------------------------------------- /defaultSpring5/src/test/gatling/bin/recorder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/test/gatling/bin/recorder.sh -------------------------------------------------------------------------------- /defaultSpring5/src/test/gatling/conf/gatling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/test/gatling/conf/gatling.conf -------------------------------------------------------------------------------- /defaultSpring5/src/test/gatling/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/test/gatling/conf/logback.xml -------------------------------------------------------------------------------- /defaultSpring5/src/test/javascript/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/test/javascript/karma.conf.js -------------------------------------------------------------------------------- /defaultSpring5/src/test/javascript/spec/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/test/javascript/spec/entry.ts -------------------------------------------------------------------------------- /defaultSpring5/src/test/javascript/spec/helpers/spyobject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/test/javascript/spec/helpers/spyobject.ts -------------------------------------------------------------------------------- /defaultSpring5/src/test/javascript/spec/test.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/test/javascript/spec/test.module.ts -------------------------------------------------------------------------------- /defaultSpring5/src/test/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/test/resources/config/application.yml -------------------------------------------------------------------------------- /defaultSpring5/src/test/resources/i18n/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/test/resources/i18n/messages_en.properties -------------------------------------------------------------------------------- /defaultSpring5/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/test/resources/logback.xml -------------------------------------------------------------------------------- /defaultSpring5/src/test/resources/mails/testEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/src/test/resources/mails/testEmail.html -------------------------------------------------------------------------------- /defaultSpring5/tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/tsconfig-aot.json -------------------------------------------------------------------------------- /defaultSpring5/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/tsconfig.json -------------------------------------------------------------------------------- /defaultSpring5/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/tslint.json -------------------------------------------------------------------------------- /defaultSpring5/webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /defaultSpring5/webpack/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/webpack/utils.js -------------------------------------------------------------------------------- /defaultSpring5/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/webpack/webpack.common.js -------------------------------------------------------------------------------- /defaultSpring5/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/webpack/webpack.dev.js -------------------------------------------------------------------------------- /defaultSpring5/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/webpack/webpack.prod.js -------------------------------------------------------------------------------- /defaultSpring5/webpack/webpack.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/defaultSpring5/webpack/webpack.vendor.js -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/.angular-cli.json -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/.editorconfig -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/.gitattributes -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/.gitignore -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/.jhipster/BankAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/.jhipster/BankAccount.json -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/.jhipster/Label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/.jhipster/Label.json -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/.jhipster/Operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/.jhipster/Operation.json -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/.yo-rc.json -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/README.md -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/mvnw -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/mvnw.cmd -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/package.json -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/pom.xml -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/proxy.conf.json -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/docker/app.yml -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/docker/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/docker/mongodb.yml -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/resources/banner.txt -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/webapp/404.html -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/webapp/app/admin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/webapp/app/admin/index.ts -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/webapp/app/app.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/webapp/app/app.main.ts -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/webapp/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/webapp/app/app.module.ts -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/webapp/app/app.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/webapp/app/app.route.ts -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/webapp/app/home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/webapp/app/home/home.css -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/webapp/app/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/webapp/app/home/index.ts -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/webapp/app/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/webapp/app/polyfills.ts -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/webapp/app/shared/constants/pagination.constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/webapp/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/webapp/app/vendor.ts -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/webapp/index.html -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/webapp/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/webapp/manifest.webapp -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/main/webapp/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/main/webapp/sw.js -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/test/gatling/conf/gatling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/test/gatling/conf/gatling.conf -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/test/gatling/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/test/gatling/conf/logback.xml -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/test/javascript/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/test/javascript/karma.conf.js -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/test/javascript/spec/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/test/javascript/spec/entry.ts -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/src/test/resources/logback.xml -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/tsconfig-aot.json -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/tsconfig.json -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/tslint.json -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/webpack/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/webpack/utils.js -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/webpack/webpack.common.js -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/webpack/webpack.dev.js -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/webpack/webpack.prod.js -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/webpack/webpack.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/webpack/webpack.test.js -------------------------------------------------------------------------------- /jhipster462withSpringBoot2/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/jhipster462withSpringBoot2/yarn.lock -------------------------------------------------------------------------------- /onlyoperationReactive/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/.angular-cli.json -------------------------------------------------------------------------------- /onlyoperationReactive/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/.editorconfig -------------------------------------------------------------------------------- /onlyoperationReactive/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/.gitattributes -------------------------------------------------------------------------------- /onlyoperationReactive/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/.gitignore -------------------------------------------------------------------------------- /onlyoperationReactive/.jhipster/BankAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/.jhipster/BankAccount.json -------------------------------------------------------------------------------- /onlyoperationReactive/.jhipster/Label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/.jhipster/Label.json -------------------------------------------------------------------------------- /onlyoperationReactive/.jhipster/Operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/.jhipster/Operation.json -------------------------------------------------------------------------------- /onlyoperationReactive/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /onlyoperationReactive/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /onlyoperationReactive/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/.yo-rc.json -------------------------------------------------------------------------------- /onlyoperationReactive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/README.md -------------------------------------------------------------------------------- /onlyoperationReactive/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/mvnw -------------------------------------------------------------------------------- /onlyoperationReactive/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/mvnw.cmd -------------------------------------------------------------------------------- /onlyoperationReactive/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/package.json -------------------------------------------------------------------------------- /onlyoperationReactive/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/pom.xml -------------------------------------------------------------------------------- /onlyoperationReactive/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/proxy.conf.json -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/docker/app.yml -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/docker/mongodb-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/docker/mongodb-cluster.yml -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/docker/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/docker/mongodb.yml -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/resources/banner.txt -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/404.html -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/app/account/index.ts -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/admin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/app/admin/index.ts -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/app.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/app/app.constants.ts -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/app.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/app/app.main.ts -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/app/app.module.ts -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/app.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/app/app.route.ts -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/app/home/home.css -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/app/home/home.module.ts -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/home/home.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/app/home/home.route.ts -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/app/home/index.ts -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/app/layouts/index.ts -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/app/polyfills.ts -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/shared/constants/pagination.constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/app/shared/index.ts -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/shared/model/base-entity.ts: -------------------------------------------------------------------------------- 1 | export interface BaseEntity { 2 | id?: number|string; 3 | }; 4 | -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/app/vendor.ts -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/content/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/content/css/global.css -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/content/css/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/content/css/vendor.css -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/index.html -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/manifest.webapp -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/sw.js -------------------------------------------------------------------------------- /onlyoperationReactive/src/main/webapp/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/main/webapp/swagger-ui/index.html -------------------------------------------------------------------------------- /onlyoperationReactive/src/test/gatling/bin/gatling.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/test/gatling/bin/gatling.bat -------------------------------------------------------------------------------- /onlyoperationReactive/src/test/gatling/bin/gatling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/test/gatling/bin/gatling.sh -------------------------------------------------------------------------------- /onlyoperationReactive/src/test/gatling/bin/recorder.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/test/gatling/bin/recorder.bat -------------------------------------------------------------------------------- /onlyoperationReactive/src/test/gatling/bin/recorder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/test/gatling/bin/recorder.sh -------------------------------------------------------------------------------- /onlyoperationReactive/src/test/gatling/conf/gatling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/test/gatling/conf/gatling.conf -------------------------------------------------------------------------------- /onlyoperationReactive/src/test/gatling/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/test/gatling/conf/logback.xml -------------------------------------------------------------------------------- /onlyoperationReactive/src/test/javascript/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/test/javascript/karma.conf.js -------------------------------------------------------------------------------- /onlyoperationReactive/src/test/javascript/spec/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/test/javascript/spec/entry.ts -------------------------------------------------------------------------------- /onlyoperationReactive/src/test/javascript/spec/test.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/test/javascript/spec/test.module.ts -------------------------------------------------------------------------------- /onlyoperationReactive/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/test/resources/logback.xml -------------------------------------------------------------------------------- /onlyoperationReactive/src/test/resources/mails/testEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/src/test/resources/mails/testEmail.html -------------------------------------------------------------------------------- /onlyoperationReactive/tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/tsconfig-aot.json -------------------------------------------------------------------------------- /onlyoperationReactive/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/tsconfig.json -------------------------------------------------------------------------------- /onlyoperationReactive/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/tslint.json -------------------------------------------------------------------------------- /onlyoperationReactive/webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /onlyoperationReactive/webpack/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/webpack/utils.js -------------------------------------------------------------------------------- /onlyoperationReactive/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/webpack/webpack.common.js -------------------------------------------------------------------------------- /onlyoperationReactive/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/webpack/webpack.dev.js -------------------------------------------------------------------------------- /onlyoperationReactive/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/webpack/webpack.prod.js -------------------------------------------------------------------------------- /onlyoperationReactive/webpack/webpack.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReactive/webpack/webpack.vendor.js -------------------------------------------------------------------------------- /onlyoperationReporeactive/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/.angular-cli.json -------------------------------------------------------------------------------- /onlyoperationReporeactive/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/.editorconfig -------------------------------------------------------------------------------- /onlyoperationReporeactive/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/.gitattributes -------------------------------------------------------------------------------- /onlyoperationReporeactive/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/.gitignore -------------------------------------------------------------------------------- /onlyoperationReporeactive/.jhipster/BankAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/.jhipster/BankAccount.json -------------------------------------------------------------------------------- /onlyoperationReporeactive/.jhipster/Label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/.jhipster/Label.json -------------------------------------------------------------------------------- /onlyoperationReporeactive/.jhipster/Operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/.jhipster/Operation.json -------------------------------------------------------------------------------- /onlyoperationReporeactive/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /onlyoperationReporeactive/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/.yo-rc.json -------------------------------------------------------------------------------- /onlyoperationReporeactive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/README.md -------------------------------------------------------------------------------- /onlyoperationReporeactive/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/mvnw -------------------------------------------------------------------------------- /onlyoperationReporeactive/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/mvnw.cmd -------------------------------------------------------------------------------- /onlyoperationReporeactive/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/package.json -------------------------------------------------------------------------------- /onlyoperationReporeactive/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/pom.xml -------------------------------------------------------------------------------- /onlyoperationReporeactive/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/proxy.conf.json -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/docker/app.yml -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/docker/mongodb-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/docker/mongodb-cluster.yml -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/docker/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/docker/mongodb.yml -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/resources/banner.txt -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/webapp/404.html -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/app/admin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/webapp/app/admin/index.ts -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/app/app.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/webapp/app/app.main.ts -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/webapp/app/app.module.ts -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/app/app.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/webapp/app/app.route.ts -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/app/home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/webapp/app/home/home.css -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/app/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/webapp/app/home/index.ts -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/app/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/webapp/app/polyfills.ts -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/app/shared/constants/pagination.constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/app/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/webapp/app/shared/index.ts -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/app/shared/model/base-entity.ts: -------------------------------------------------------------------------------- 1 | export interface BaseEntity { 2 | id?: number|string; 3 | }; 4 | -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/webapp/app/vendor.ts -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/webapp/index.html -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/webapp/manifest.webapp -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/main/webapp/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/main/webapp/sw.js -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/test/gatling/bin/gatling.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/test/gatling/bin/gatling.bat -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/test/gatling/bin/gatling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/test/gatling/bin/gatling.sh -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/test/gatling/bin/recorder.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/test/gatling/bin/recorder.bat -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/test/gatling/bin/recorder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/test/gatling/bin/recorder.sh -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/test/gatling/conf/gatling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/test/gatling/conf/gatling.conf -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/test/gatling/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/test/gatling/conf/logback.xml -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/test/javascript/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/test/javascript/karma.conf.js -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/test/javascript/spec/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/test/javascript/spec/entry.ts -------------------------------------------------------------------------------- /onlyoperationReporeactive/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/src/test/resources/logback.xml -------------------------------------------------------------------------------- /onlyoperationReporeactive/tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/tsconfig-aot.json -------------------------------------------------------------------------------- /onlyoperationReporeactive/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/tsconfig.json -------------------------------------------------------------------------------- /onlyoperationReporeactive/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/tslint.json -------------------------------------------------------------------------------- /onlyoperationReporeactive/webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /onlyoperationReporeactive/webpack/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/webpack/utils.js -------------------------------------------------------------------------------- /onlyoperationReporeactive/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/webpack/webpack.common.js -------------------------------------------------------------------------------- /onlyoperationReporeactive/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/webpack/webpack.dev.js -------------------------------------------------------------------------------- /onlyoperationReporeactive/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/webpack/webpack.prod.js -------------------------------------------------------------------------------- /onlyoperationReporeactive/webpack/webpack.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/onlyoperationReporeactive/webpack/webpack.vendor.js -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/pom.xml -------------------------------------------------------------------------------- /reactiveMongoDB/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/.angular-cli.json -------------------------------------------------------------------------------- /reactiveMongoDB/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/.editorconfig -------------------------------------------------------------------------------- /reactiveMongoDB/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/.gitattributes -------------------------------------------------------------------------------- /reactiveMongoDB/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/.gitignore -------------------------------------------------------------------------------- /reactiveMongoDB/.jhipster/BankAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/.jhipster/BankAccount.json -------------------------------------------------------------------------------- /reactiveMongoDB/.jhipster/Label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/.jhipster/Label.json -------------------------------------------------------------------------------- /reactiveMongoDB/.jhipster/Operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/.jhipster/Operation.json -------------------------------------------------------------------------------- /reactiveMongoDB/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /reactiveMongoDB/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /reactiveMongoDB/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/.yo-rc.json -------------------------------------------------------------------------------- /reactiveMongoDB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/README.md -------------------------------------------------------------------------------- /reactiveMongoDB/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/mvnw -------------------------------------------------------------------------------- /reactiveMongoDB/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/mvnw.cmd -------------------------------------------------------------------------------- /reactiveMongoDB/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/package.json -------------------------------------------------------------------------------- /reactiveMongoDB/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/pom.xml -------------------------------------------------------------------------------- /reactiveMongoDB/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/proxy.conf.json -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/docker/app.yml -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/docker/mongodb-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/docker/mongodb-cluster.yml -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/docker/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/docker/mongodb.yml -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/docker/mongodb/MongoDB.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/docker/mongodb/MongoDB.Dockerfile -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/resources/banner.txt -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/resources/config/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/resources/config/application-dev.yml -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/resources/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/resources/i18n/messages.properties -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/resources/mails/activationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/resources/mails/activationEmail.html -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/resources/mails/creationEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/resources/mails/creationEmail.html -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/404.html -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/account/account.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/account/account.module.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/account/account.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/account/account.route.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/account/index.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/admin/admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/admin/admin.module.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/admin/admin.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/admin/admin.route.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/admin/docs/docs.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/admin/docs/docs.route.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/admin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/admin/index.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/admin/logs/log.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/admin/logs/log.model.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/admin/logs/logs.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/admin/logs/logs.route.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/app.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/app.constants.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/app.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/app.main.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/app.module.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/app.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/app.route.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/entities/entity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/entities/entity.module.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/entities/label/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/entities/label/index.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/home/home.component.html -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/home/home.component.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/home/home.css -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/home/home.module.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/home/home.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/home/home.route.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/home/index.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/layouts/index.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/layouts/navbar/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/layouts/navbar/navbar.css -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/polyfills.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/shared/constants/pagination.constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/shared/index.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/shared/model/base-entity.ts: -------------------------------------------------------------------------------- 1 | export interface BaseEntity { 2 | id?: number|string; 3 | }; 4 | -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/shared/shared.module.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/shared/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/shared/user/user.model.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/app/vendor.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/content/css/documentation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/content/css/documentation.css -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/content/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/content/css/global.css -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/content/css/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/content/css/vendor.css -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/content/images/hipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/content/images/hipster.png -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/content/images/hipster2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/content/images/hipster2x.png -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/index.html -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/manifest.webapp -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/sw.js -------------------------------------------------------------------------------- /reactiveMongoDB/src/main/webapp/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/main/webapp/swagger-ui/index.html -------------------------------------------------------------------------------- /reactiveMongoDB/src/test/gatling/bin/gatling.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/test/gatling/bin/gatling.bat -------------------------------------------------------------------------------- /reactiveMongoDB/src/test/gatling/bin/gatling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/test/gatling/bin/gatling.sh -------------------------------------------------------------------------------- /reactiveMongoDB/src/test/gatling/bin/recorder.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/test/gatling/bin/recorder.bat -------------------------------------------------------------------------------- /reactiveMongoDB/src/test/gatling/bin/recorder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/test/gatling/bin/recorder.sh -------------------------------------------------------------------------------- /reactiveMongoDB/src/test/gatling/conf/gatling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/test/gatling/conf/gatling.conf -------------------------------------------------------------------------------- /reactiveMongoDB/src/test/gatling/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/test/gatling/conf/logback.xml -------------------------------------------------------------------------------- /reactiveMongoDB/src/test/javascript/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/test/javascript/karma.conf.js -------------------------------------------------------------------------------- /reactiveMongoDB/src/test/javascript/spec/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/test/javascript/spec/entry.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/test/javascript/spec/helpers/spyobject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/test/javascript/spec/helpers/spyobject.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/test/javascript/spec/test.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/test/javascript/spec/test.module.ts -------------------------------------------------------------------------------- /reactiveMongoDB/src/test/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/test/resources/config/application.yml -------------------------------------------------------------------------------- /reactiveMongoDB/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/test/resources/logback.xml -------------------------------------------------------------------------------- /reactiveMongoDB/src/test/resources/mails/testEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/src/test/resources/mails/testEmail.html -------------------------------------------------------------------------------- /reactiveMongoDB/tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/tsconfig-aot.json -------------------------------------------------------------------------------- /reactiveMongoDB/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/tsconfig.json -------------------------------------------------------------------------------- /reactiveMongoDB/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/tslint.json -------------------------------------------------------------------------------- /reactiveMongoDB/webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /reactiveMongoDB/webpack/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/webpack/utils.js -------------------------------------------------------------------------------- /reactiveMongoDB/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/webpack/webpack.common.js -------------------------------------------------------------------------------- /reactiveMongoDB/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/webpack/webpack.dev.js -------------------------------------------------------------------------------- /reactiveMongoDB/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/webpack/webpack.prod.js -------------------------------------------------------------------------------- /reactiveMongoDB/webpack/webpack.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/webpack/webpack.vendor.js -------------------------------------------------------------------------------- /reactiveMongoDB/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reactiveMongoDB/yarn.lock -------------------------------------------------------------------------------- /reporeactiveMongoDB/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/.angular-cli.json -------------------------------------------------------------------------------- /reporeactiveMongoDB/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/.editorconfig -------------------------------------------------------------------------------- /reporeactiveMongoDB/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/.gitattributes -------------------------------------------------------------------------------- /reporeactiveMongoDB/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/.gitignore -------------------------------------------------------------------------------- /reporeactiveMongoDB/.jhipster/BankAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/.jhipster/BankAccount.json -------------------------------------------------------------------------------- /reporeactiveMongoDB/.jhipster/Label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/.jhipster/Label.json -------------------------------------------------------------------------------- /reporeactiveMongoDB/.jhipster/Operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/.jhipster/Operation.json -------------------------------------------------------------------------------- /reporeactiveMongoDB/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /reporeactiveMongoDB/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /reporeactiveMongoDB/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/.yo-rc.json -------------------------------------------------------------------------------- /reporeactiveMongoDB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/README.md -------------------------------------------------------------------------------- /reporeactiveMongoDB/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/mvnw -------------------------------------------------------------------------------- /reporeactiveMongoDB/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/mvnw.cmd -------------------------------------------------------------------------------- /reporeactiveMongoDB/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/package.json -------------------------------------------------------------------------------- /reporeactiveMongoDB/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/pom.xml -------------------------------------------------------------------------------- /reporeactiveMongoDB/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/proxy.conf.json -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/docker/app.yml -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/docker/mongodb-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/docker/mongodb-cluster.yml -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/docker/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/docker/mongodb.yml -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/resources/banner.txt -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/404.html -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/account/index.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/admin/admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/admin/admin.module.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/admin/admin.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/admin/admin.route.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/admin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/admin/index.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/app.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/app.constants.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/app.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/app.main.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/app.module.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/app.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/app.route.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/home/home.css -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/home/home.module.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/home/home.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/home/home.route.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/home/index.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/layouts/index.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/polyfills.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/shared/constants/pagination.constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/shared/index.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/shared/model/base-entity.ts: -------------------------------------------------------------------------------- 1 | export interface BaseEntity { 2 | id?: number|string; 3 | }; 4 | -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/app/vendor.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/content/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/content/css/global.css -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/content/css/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/content/css/vendor.css -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/index.html -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/manifest.webapp -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/sw.js -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/main/webapp/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/main/webapp/swagger-ui/index.html -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/test/gatling/bin/gatling.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/test/gatling/bin/gatling.bat -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/test/gatling/bin/gatling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/test/gatling/bin/gatling.sh -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/test/gatling/bin/recorder.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/test/gatling/bin/recorder.bat -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/test/gatling/bin/recorder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/test/gatling/bin/recorder.sh -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/test/gatling/conf/gatling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/test/gatling/conf/gatling.conf -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/test/gatling/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/test/gatling/conf/logback.xml -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/test/javascript/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/test/javascript/karma.conf.js -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/test/javascript/spec/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/test/javascript/spec/entry.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/test/javascript/spec/test.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/test/javascript/spec/test.module.ts -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/test/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/test/resources/config/application.yml -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/test/resources/logback.xml -------------------------------------------------------------------------------- /reporeactiveMongoDB/src/test/resources/mails/testEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/src/test/resources/mails/testEmail.html -------------------------------------------------------------------------------- /reporeactiveMongoDB/tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/tsconfig-aot.json -------------------------------------------------------------------------------- /reporeactiveMongoDB/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/tsconfig.json -------------------------------------------------------------------------------- /reporeactiveMongoDB/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/tslint.json -------------------------------------------------------------------------------- /reporeactiveMongoDB/webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /reporeactiveMongoDB/webpack/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/webpack/utils.js -------------------------------------------------------------------------------- /reporeactiveMongoDB/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/webpack/webpack.common.js -------------------------------------------------------------------------------- /reporeactiveMongoDB/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/webpack/webpack.dev.js -------------------------------------------------------------------------------- /reporeactiveMongoDB/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/webpack/webpack.prod.js -------------------------------------------------------------------------------- /reporeactiveMongoDB/webpack/webpack.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/webpack/webpack.vendor.js -------------------------------------------------------------------------------- /reporeactiveMongoDB/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/reporeactiveMongoDB/yarn.lock -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/.angular-cli.json -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/.editorconfig -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/.gitattributes -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/.gitignore -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/.jhipster/BankAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/.jhipster/BankAccount.json -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/.jhipster/Label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/.jhipster/Label.json -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/.jhipster/Operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/.jhipster/Operation.json -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/.yo-rc.json -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/README.md -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/mvnw -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/mvnw.cmd -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/package.json -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/pom.xml -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/proxy.conf.json -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/src/main/docker/app.yml -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/src/main/docker/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/src/main/docker/mongodb.yml -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/src/main/resources/banner.txt -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/src/main/webapp/404.html -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/src/main/webapp/app/shared/constants/pagination.constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/src/main/webapp/app/shared/model/base-entity.ts: -------------------------------------------------------------------------------- 1 | export interface BaseEntity { 2 | id?: number|string; 3 | }; 4 | -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/src/main/webapp/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/src/main/webapp/app/vendor.ts -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/src/main/webapp/index.html -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/src/main/webapp/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/src/main/webapp/sw.js -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/src/test/resources/logback.xml -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/tsconfig-aot.json -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/tsconfig.json -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/tslint.json -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/webpack/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/webpack/utils.js -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/webpack/webpack.common.js -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/webpack/webpack.dev.js -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/webpack/webpack.prod.js -------------------------------------------------------------------------------- /serverResponseOnlyopeRepoReact/webpack/webpack.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/serverResponseOnlyopeRepoReact/webpack/webpack.vendor.js -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/.angular-cli.json -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/.editorconfig -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/.gitattributes -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/.gitignore -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/.jhipster/BankAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/.jhipster/BankAccount.json -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/.jhipster/Label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/.jhipster/Label.json -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/.jhipster/Operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/.jhipster/Operation.json -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/.yo-rc.json -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/README.md -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/mvnw -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/mvnw.cmd -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/package.json -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/pom.xml -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/proxy.conf.json -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/src/main/docker/app.yml -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/main/docker/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/src/main/docker/mongodb.yml -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/src/main/resources/banner.txt -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/src/main/webapp/404.html -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/main/webapp/app/app.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/src/main/webapp/app/app.main.ts -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/main/webapp/app/shared/constants/pagination.constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/main/webapp/app/shared/model/base-entity.ts: -------------------------------------------------------------------------------- 1 | export interface BaseEntity { 2 | id?: number|string; 3 | }; 4 | -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/main/webapp/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/src/main/webapp/app/vendor.ts -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/src/main/webapp/index.html -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/main/webapp/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/src/main/webapp/manifest.webapp -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/main/webapp/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/src/main/webapp/sw.js -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/test/gatling/bin/gatling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/src/test/gatling/bin/gatling.sh -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/src/test/resources/logback.xml -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/tsconfig-aot.json -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/tsconfig.json -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/tslint.json -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/webpack/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/webpack/utils.js -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/webpack/webpack.common.js -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/webpack/webpack.dev.js -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/webpack/webpack.prod.js -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/webpack/webpack.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/webpack/webpack.vendor.js -------------------------------------------------------------------------------- /withSecuWithoutResponseEntity/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withSecuWithoutResponseEntity/yarn.lock -------------------------------------------------------------------------------- /withoutSecuSpring5/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/.angular-cli.json -------------------------------------------------------------------------------- /withoutSecuSpring5/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/.editorconfig -------------------------------------------------------------------------------- /withoutSecuSpring5/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/.gitattributes -------------------------------------------------------------------------------- /withoutSecuSpring5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/.gitignore -------------------------------------------------------------------------------- /withoutSecuSpring5/.jhipster/BankAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/.jhipster/BankAccount.json -------------------------------------------------------------------------------- /withoutSecuSpring5/.jhipster/Label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/.jhipster/Label.json -------------------------------------------------------------------------------- /withoutSecuSpring5/.jhipster/Operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/.jhipster/Operation.json -------------------------------------------------------------------------------- /withoutSecuSpring5/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /withoutSecuSpring5/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /withoutSecuSpring5/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/.yo-rc.json -------------------------------------------------------------------------------- /withoutSecuSpring5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/README.md -------------------------------------------------------------------------------- /withoutSecuSpring5/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/mvnw -------------------------------------------------------------------------------- /withoutSecuSpring5/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/mvnw.cmd -------------------------------------------------------------------------------- /withoutSecuSpring5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/package.json -------------------------------------------------------------------------------- /withoutSecuSpring5/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/pom.xml -------------------------------------------------------------------------------- /withoutSecuSpring5/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/proxy.conf.json -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/docker/app.yml -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/docker/mongodb-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/docker/mongodb-cluster.yml -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/docker/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/docker/mongodb.yml -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/docker/mongodb/MongoDB.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/docker/mongodb/MongoDB.Dockerfile -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/resources/banner.txt -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/404.html -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/app/account/index.ts -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/admin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/app/admin/index.ts -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/app.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/app/app.constants.ts -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/app.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/app/app.main.ts -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/app/app.module.ts -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/app.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/app/app.route.ts -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/app/home/home.css -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/app/home/home.module.ts -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/home/home.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/app/home/home.route.ts -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/app/home/index.ts -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/app/layouts/index.ts -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/app/polyfills.ts -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/shared/constants/pagination.constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/app/shared/index.ts -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/shared/model/base-entity.ts: -------------------------------------------------------------------------------- 1 | export interface BaseEntity { 2 | id?: number|string; 3 | }; 4 | -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/app/vendor.ts -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/content/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/content/css/global.css -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/content/css/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/content/css/vendor.css -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/index.html -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/manifest.webapp -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/sw.js -------------------------------------------------------------------------------- /withoutSecuSpring5/src/main/webapp/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/main/webapp/swagger-ui/index.html -------------------------------------------------------------------------------- /withoutSecuSpring5/src/test/gatling/bin/gatling.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/test/gatling/bin/gatling.bat -------------------------------------------------------------------------------- /withoutSecuSpring5/src/test/gatling/bin/gatling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/test/gatling/bin/gatling.sh -------------------------------------------------------------------------------- /withoutSecuSpring5/src/test/gatling/bin/recorder.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/test/gatling/bin/recorder.bat -------------------------------------------------------------------------------- /withoutSecuSpring5/src/test/gatling/bin/recorder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/test/gatling/bin/recorder.sh -------------------------------------------------------------------------------- /withoutSecuSpring5/src/test/gatling/conf/gatling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/test/gatling/conf/gatling.conf -------------------------------------------------------------------------------- /withoutSecuSpring5/src/test/gatling/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/test/gatling/conf/logback.xml -------------------------------------------------------------------------------- /withoutSecuSpring5/src/test/javascript/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/test/javascript/karma.conf.js -------------------------------------------------------------------------------- /withoutSecuSpring5/src/test/javascript/spec/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/test/javascript/spec/entry.ts -------------------------------------------------------------------------------- /withoutSecuSpring5/src/test/javascript/spec/test.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/test/javascript/spec/test.module.ts -------------------------------------------------------------------------------- /withoutSecuSpring5/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/test/resources/logback.xml -------------------------------------------------------------------------------- /withoutSecuSpring5/src/test/resources/mails/testEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/src/test/resources/mails/testEmail.html -------------------------------------------------------------------------------- /withoutSecuSpring5/tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/tsconfig-aot.json -------------------------------------------------------------------------------- /withoutSecuSpring5/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/tsconfig.json -------------------------------------------------------------------------------- /withoutSecuSpring5/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/tslint.json -------------------------------------------------------------------------------- /withoutSecuSpring5/webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /withoutSecuSpring5/webpack/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/webpack/utils.js -------------------------------------------------------------------------------- /withoutSecuSpring5/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/webpack/webpack.common.js -------------------------------------------------------------------------------- /withoutSecuSpring5/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/webpack/webpack.dev.js -------------------------------------------------------------------------------- /withoutSecuSpring5/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/webpack/webpack.prod.js -------------------------------------------------------------------------------- /withoutSecuSpring5/webpack/webpack.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/webpack/webpack.vendor.js -------------------------------------------------------------------------------- /withoutSecuSpring5/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuSpring5/yarn.lock -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/.angular-cli.json -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/.editorconfig -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/.gitattributes -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/.gitignore -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/.jhipster/BankAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/.jhipster/BankAccount.json -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/.jhipster/Label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/.jhipster/Label.json -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/.jhipster/Operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/.jhipster/Operation.json -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/.yo-rc.json -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/README.md -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/mvnw -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/mvnw.cmd -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/package.json -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/pom.xml -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/proxy.conf.json -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/src/main/docker/app.yml -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/src/main/docker/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/src/main/docker/mongodb.yml -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/src/main/webapp/404.html -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/src/main/webapp/app/shared/constants/pagination.constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/src/main/webapp/app/shared/model/base-entity.ts: -------------------------------------------------------------------------------- 1 | export interface BaseEntity { 2 | id?: number|string; 3 | }; 4 | -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/src/main/webapp/index.html -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/src/main/webapp/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/src/main/webapp/sw.js -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/tsconfig-aot.json -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/tsconfig.json -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/tslint.json -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/webpack/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/webpack/utils.js -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/webpack/webpack.common.js -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/webpack/webpack.dev.js -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/webpack/webpack.prod.js -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/webpack/webpack.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/webpack/webpack.vendor.js -------------------------------------------------------------------------------- /withoutSecuWithResponseEntity/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithResponseEntity/yarn.lock -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/.angular-cli.json -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/.editorconfig -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/.gitattributes -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/.gitignore -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/.jhipster/Label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/.jhipster/Label.json -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/.jhipster/Operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/.jhipster/Operation.json -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/.yo-rc.json -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/README.md -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/mvnw -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/mvnw.cmd -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/package.json -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/pom.xml -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/proxy.conf.json -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/src/main/docker/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/src/main/docker/app.yml -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/src/main/docker/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/src/main/docker/sonar.yml -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/src/main/webapp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/src/main/webapp/404.html -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/src/main/webapp/app/shared/constants/pagination.constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/src/main/webapp/app/shared/model/base-entity.ts: -------------------------------------------------------------------------------- 1 | export interface BaseEntity { 2 | id?: number|string; 3 | }; 4 | -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/src/main/webapp/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/src/main/webapp/sw.js -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/tsconfig-aot.json -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/tsconfig.json -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/tslint.json -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/webpack/logo-jhipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/webpack/logo-jhipster.png -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/webpack/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/webpack/utils.js -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/webpack/webpack.common.js -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/webpack/webpack.dev.js -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/webpack/webpack.prod.js -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/webpack/webpack.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/webpack/webpack.vendor.js -------------------------------------------------------------------------------- /withoutSecuWithoutResponseEntity/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhipster/webflux-jhipster/HEAD/withoutSecuWithoutResponseEntity/yarn.lock --------------------------------------------------------------------------------