37 | 38 |
├── .gitignore
├── UserFront
├── .metadata
│ ├── .lock
│ ├── .plugins
│ │ ├── org.eclipse.jdt.core
│ │ │ ├── index.db
│ │ │ ├── externalFilesCache
│ │ │ ├── javaLikeNames.txt
│ │ │ ├── nonChainingJarsCache
│ │ │ ├── assumedExternalFilesCache
│ │ │ └── variablesAndContainers.dat
│ │ ├── org.eclipse.rse.core
│ │ │ ├── .log
│ │ │ └── initializerMarks
│ │ │ │ └── org.eclipse.rse.internal.core.RSELocalConnectionInitializer.mark
│ │ ├── org.eclipse.core.resources
│ │ │ ├── .root
│ │ │ │ ├── .indexes
│ │ │ │ │ ├── history.version
│ │ │ │ │ ├── properties.version
│ │ │ │ │ └── properties.index
│ │ │ │ └── 1.tree
│ │ │ └── .safetable
│ │ │ │ └── org.eclipse.core.resources
│ │ ├── org.eclipse.epp.logging.aeri.ide
│ │ │ ├── com.genuitec.eclipse.aeri.server1
│ │ │ │ ├── http-cache.lucene60
│ │ │ │ │ ├── write.lock
│ │ │ │ │ └── segments_1
│ │ │ │ ├── local-history.lucene60
│ │ │ │ │ ├── write.lock
│ │ │ │ │ ├── _0.cfe
│ │ │ │ │ ├── _0.cfs
│ │ │ │ │ ├── _0.si
│ │ │ │ │ └── segments_1
│ │ │ │ └── server-config.json
│ │ │ └── org.eclipse.epp.logging.aeri.ide.server
│ │ │ │ ├── http-cache.lucene60
│ │ │ │ ├── write.lock
│ │ │ │ └── segments_1
│ │ │ │ ├── local-history.lucene60
│ │ │ │ ├── write.lock
│ │ │ │ ├── _0.cfe
│ │ │ │ ├── _0.cfs
│ │ │ │ ├── _0.si
│ │ │ │ └── segments_1
│ │ │ │ └── server-config.json
│ │ ├── org.eclipse.ui.intro
│ │ │ └── introstate
│ │ ├── org.eclipse.pde.core
│ │ │ └── .cache
│ │ │ │ └── clean-cache.properties
│ │ ├── org.springframework.ide.eclipse.aop.core
│ │ │ └── .state
│ │ ├── org.eclipse.jdt.ui
│ │ │ ├── OpenTypeHistory.xml
│ │ │ └── QualifiedTypeNameHistory.xml
│ │ ├── org.eclipse.ui
│ │ │ └── dialog_settings.xml
│ │ ├── org.eclipse.tips.ide
│ │ │ └── dialog_settings.xml
│ │ ├── org.eclipse.m2e.logback.configuration
│ │ │ ├── 0.log
│ │ │ └── logback.1.9.1.20180912-1601.xml
│ │ ├── org.eclipse.oomph.setup
│ │ │ └── workspace.setup
│ │ ├── org.eclipse.ui.workbench
│ │ │ ├── dialog_settings.xml
│ │ │ └── workingsets.xml
│ │ └── org.springsource.ide.eclipse.dashboard.ui
│ │ │ └── feeds
│ │ │ └── dashboard.feeds.update
│ │ │ └── 623127801.xml
│ ├── version.ini
│ ├── .mylyn
│ │ └── repositories.xml.zip
│ └── .log
├── .mvn
│ └── wrapper
│ │ ├── maven-wrapper.properties
│ │ └── maven-wrapper.jar
├── src
│ ├── main
│ │ ├── resources
│ │ │ ├── static
│ │ │ │ ├── images
│ │ │ │ │ ├── bg.png
│ │ │ │ │ └── banner.png
│ │ │ │ ├── fonts
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ ├── js
│ │ │ │ │ ├── dataTables.bootstrap.min.js
│ │ │ │ │ ├── dataTables.uikit.min.js
│ │ │ │ │ ├── dataTables.jqueryui.min.js
│ │ │ │ │ ├── main.js
│ │ │ │ │ └── jquery.easing.min.js
│ │ │ │ └── css
│ │ │ │ │ ├── dataTables.uikit.min.css
│ │ │ │ │ └── dataTables.bootstrap.min.css
│ │ │ ├── application.properties
│ │ │ └── templates
│ │ │ │ ├── deposit.html
│ │ │ │ ├── withdraw.html
│ │ │ │ ├── index.html
│ │ │ │ ├── toSomeoneElse.html
│ │ │ │ ├── betweenAccounts.html
│ │ │ │ ├── savingsAccount.html
│ │ │ │ ├── appointment.html
│ │ │ │ ├── primaryAccount.html
│ │ │ │ ├── recipient.html
│ │ │ │ ├── userFront.html
│ │ │ │ └── profile.html
│ │ └── java
│ │ │ └── com
│ │ │ └── userfront
│ │ │ ├── Dao
│ │ │ ├── RoleDao.java
│ │ │ ├── PrimaryTransactionDao.java
│ │ │ ├── SavingsTransactionDao.java
│ │ │ ├── UserDao.java
│ │ │ ├── PrimaryAccountDao.java
│ │ │ ├── SavingsAccountDao.java
│ │ │ ├── AppointmentDao.java
│ │ │ └── RecipientDao.java
│ │ │ ├── UserFrontApplication.java
│ │ │ ├── service
│ │ │ ├── AppointmentService.java
│ │ │ ├── AccountService.java
│ │ │ ├── UserService.java
│ │ │ ├── UserServiceImpl
│ │ │ │ ├── AppointmentServiceImpl.java
│ │ │ │ ├── UserSecurityService.java
│ │ │ │ ├── UserServiceImpl.java
│ │ │ │ └── AccountServiceImpl.java
│ │ │ └── TransactionService.java
│ │ │ ├── domain
│ │ │ ├── security
│ │ │ │ ├── Authority.java
│ │ │ │ ├── Role.java
│ │ │ │ └── UserRole.java
│ │ │ ├── PrimaryAccount.java
│ │ │ ├── SavingsAccount.java
│ │ │ ├── Recipient.java
│ │ │ ├── Appointment.java
│ │ │ ├── PrimaryTransaction.java
│ │ │ └── SavingsTransaction.java
│ │ │ ├── resource
│ │ │ ├── AppointmentResource.java
│ │ │ └── UserResource.java
│ │ │ ├── controller
│ │ │ ├── UserController.java
│ │ │ ├── AppointmentController.java
│ │ │ ├── HomeController.java
│ │ │ ├── AccountController.java
│ │ │ └── TransferController.java
│ │ │ └── config
│ │ │ ├── RequestFilter.java
│ │ │ └── SecurityConfig.java
│ └── test
│ │ └── java
│ │ └── com
│ │ └── userfront
│ │ └── UserFrontApplicationTests.java
├── .gitignore
├── pom.xml
└── mvnw.cmd
├── AdminPortal
├── src
│ ├── assets
│ │ ├── .gitkeep
│ │ └── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ ├── app
│ │ ├── app.component.css
│ │ ├── login
│ │ │ ├── login.component.css
│ │ │ ├── login.component.spec.ts
│ │ │ ├── login.component.html
│ │ │ └── login.component.ts
│ │ ├── navbar
│ │ │ ├── navbar.component.css
│ │ │ ├── navbar.component.spec.ts
│ │ │ ├── navbar.component.ts
│ │ │ └── navbar.component.html
│ │ ├── appointment
│ │ │ ├── appointment.component.css
│ │ │ ├── appointment.component.spec.ts
│ │ │ ├── appointment.component.html
│ │ │ └── appointment.component.ts
│ │ ├── user-account
│ │ │ ├── user-account.component.css
│ │ │ ├── user-account.component.spec.ts
│ │ │ ├── user-account.component.html
│ │ │ └── user-account.component.ts
│ │ ├── primary-transaction
│ │ │ ├── primary-transaction.component.css
│ │ │ ├── primary-transaction.component.html
│ │ │ ├── primary-transaction.component.spec.ts
│ │ │ └── primary-transaction.component.ts
│ │ ├── savings-transaction
│ │ │ ├── savings-transaction.component.css
│ │ │ ├── savings-transaction.component.html
│ │ │ ├── savings-transaction.component.spec.ts
│ │ │ └── savings-transaction.component.ts
│ │ ├── app.component.html
│ │ ├── app.component.ts
│ │ ├── user.service.spec.ts
│ │ ├── login.service.spec.ts
│ │ ├── appointment.service.spec.ts
│ │ ├── appointment.service.ts
│ │ ├── login.service.ts
│ │ ├── app.component.spec.ts
│ │ ├── user.service.ts
│ │ ├── app-routing.module.ts
│ │ ├── app.routing.ts
│ │ └── app.module.ts
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── favicon.ico
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── tslint.json
│ ├── browserslist
│ ├── main.ts
│ ├── index.html
│ ├── test.ts
│ ├── karma.conf.js
│ ├── polyfills.ts
│ └── styles.css
├── e2e
│ ├── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
│ ├── tsconfig.e2e.json
│ └── protractor.conf.js
├── .editorconfig
├── tsconfig.json
├── .gitignore
├── README.md
├── package.json
├── tslint.json
└── angular.json
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | /.metadata/
2 |
--------------------------------------------------------------------------------
/UserFront/.metadata/.lock:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AdminPortal/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AdminPortal/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AdminPortal/src/app/login/login.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AdminPortal/src/app/navbar/navbar.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AdminPortal/src/app/appointment/appointment.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/UserFront/.metadata/.plugins/org.eclipse.jdt.core/index.db:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/UserFront/.metadata/.plugins/org.eclipse.rse.core/.log:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AdminPortal/src/app/user-account/user-account.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AdminPortal/src/app/primary-transaction/primary-transaction.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AdminPortal/src/app/savings-transaction/savings-transaction.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/UserFront/.metadata/.plugins/org.eclipse.jdt.core/externalFilesCache:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/UserFront/.metadata/.plugins/org.eclipse.jdt.core/javaLikeNames.txt:
--------------------------------------------------------------------------------
1 | aj
2 | java
--------------------------------------------------------------------------------
/UserFront/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/UserFront/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/UserFront/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/UserFront/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AdminPortal/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/UserFront/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/http-cache.lucene60/write.lock:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/UserFront/.metadata/.plugins/org.eclipse.ui.intro/introstate:
--------------------------------------------------------------------------------
1 |
2 |
| Post Date | 7 |Description | 8 |Type | 9 |Status | 10 |Amount | 11 |Available Balance | 12 |
|---|---|---|---|---|---|
| {{primaryTransaction.date | date: 'MM/dd/yyyy'}} | 17 |{{primaryTransaction.desription}} | 18 |{{primaryTransaction.type}} | 19 |{{primaryTransaction.status}} | 20 |{{primaryTransaction.amount}} | 21 |{{primaryTransaction.availableBalance}} | 22 |
| Post Date | 7 |Description | 8 |Type | 9 |Status | 10 |Amount | 11 |Available Balance | 12 |
|---|---|---|---|---|---|
| {{savingsTransaction.date | date: 'MM/dd/yyyy'}} | 17 |{{savingsTransaction.desription}} | 18 |{{savingsTransaction.type}} | 19 |{{savingsTransaction.status}} | 20 |{{savingsTransaction.amount}} | 21 |{{savingsTransaction.availableBalance}} | 22 |
| Appointment Id | 7 |User Name | 8 |Date | 9 |Description | 10 |Confirmed? | 11 |Action | 12 |
|---|---|---|---|---|---|
| {{appointment.id}} | 17 |{{appointment.user.username}} | 18 |{{appointment.date | date: 'MM/dd/yyyy - hh:mm'}} | 19 |{{appointment.description}} | 20 |{{appointment.confirmed}} | 21 |Confirm | 22 | 23 |
| User Name | 7 |First Name | 8 |Last Name | 9 |Phone | 11 |Primary Account | 12 |Savings Account | 13 |Enabled | 14 |Action | 15 |||
|---|---|---|---|---|---|---|---|---|---|
| {{user.username}} | 20 |{{user.firstName}} | 21 |{{user.lastName}} | 22 |{{user.email}} | 23 |{{user.phone}} | 24 |{{user.primaryAccount.accountBalance}} | 25 |{{user.savingsAccount.accountBalance}} | 26 |{{user.enabled}} | 27 |Enable | 28 |Disable | 29 |
7 | Pivotal has released an update to Spring Tool Suite (STS), the best Eclipse-powered development environment for building Spring powered enterprise application.
19 |Please review the following documents:
20 |Pivotal has released an update to Spring Tool Suite (STS), the best Eclipse-powered development environment for building Spring powered enterprise application.
It is recommend to update as soon as possible.
31 |Please review the following documents:
32 || Post Date | 45 |Description | 46 |Type | 47 |Status | 48 |Amount | 49 |Available Balance | 50 |
|---|---|---|---|---|---|
| ... | 55 |... | 56 |... | 57 |... | 58 |... | 59 |... | 60 |
| Post Date | 47 |Description | 48 |Type | 49 |Status | 50 |Amount | 51 |Available Balance | 52 |
|---|---|---|---|---|---|
| ... | 57 |... | 58 |... | 59 |... | 60 |... | 61 |... | 62 |
| Primary Account Number | 91 |Savings Account Number | 92 |
|---|---|
| ... | 96 |... | 97 |