31 | 32 |
├── src ├── conf │ └── MANIFEST.MF └── java │ ├── displaytag.properties │ ├── bca │ └── fts │ │ ├── util │ │ ├── SessionListener.java │ │ ├── ApplicationtListener.java │ │ ├── PasswordValidator.java │ │ ├── AdminAccountFilter.java │ │ ├── AdminFilter.java │ │ ├── BranchFilter.java │ │ ├── DatabaseConnector.java │ │ └── DateValidator.java │ │ ├── model │ │ ├── AdminBean.java │ │ ├── UserBean.java │ │ ├── BranchBean.java │ │ ├── SendFileBean.java │ │ ├── ClosedFileBean.java │ │ ├── ProcessingFileBean.java │ │ ├── IncomingFileBean.java │ │ ├── TrackFileBean.java │ │ └── FileBean.java │ │ ├── controller │ │ ├── NotificationServlet.java │ │ ├── IDServlet.java │ │ ├── LogoutServlet.java │ │ ├── LoadFileType.java │ │ ├── ListRegFilesBranch.java │ │ ├── GetFileRecord.java │ │ ├── AdminRegisFiles.java │ │ ├── LoadFileTypeBranch.java │ │ ├── BranchAutocomplete.java │ │ ├── AdminAutocomplete.java │ │ ├── DeleteFileType.java │ │ ├── ViewSentFiles.java │ │ ├── AdminPendingFiles.java │ │ ├── AdminRejectFiles.java │ │ ├── AdminCloseFiles.java │ │ ├── AdminProcessFiles.java │ │ ├── BranchRecordsAdmin.java │ │ ├── RecieveFileServlet.java │ │ ├── AddFileTypeServlet.java │ │ ├── UpdateBranchServlet.java │ │ ├── LoadIncomingFiles.java │ │ ├── AdminLoginServlet.java │ │ ├── DeleteBranchServlet.java │ │ ├── ChangeFileStatus.java │ │ ├── AddFileServlet.java │ │ ├── AdminRegistration.java │ │ ├── RejectFileServlet.java │ │ ├── UpdateFileRecord.java │ │ ├── BranchLoginServlet.java │ │ ├── DispatchFileServlet.java │ │ └── BranchPassChange.java │ │ └── dao │ │ ├── IDDao.java │ │ ├── NotificationDao.java │ │ └── BranchLoginCheckDao.java │ └── log4j.properties ├── dist └── FTS.war ├── web ├── img │ ├── find.png │ ├── fts.jpeg │ ├── help.png │ ├── keys.png │ ├── lock_open.png │ ├── ico_file_csv.png │ ├── ico_file_pdf.png │ ├── ico_file_rtf.png │ ├── ico_file_xml.png │ └── ico_file_excel.png ├── branch │ ├── navGeneral.html │ ├── navSearch.html │ ├── messageToBranch.jsp │ ├── trackFile.jsp │ ├── welcomeBranch.jsp │ ├── passChange.jsp │ ├── fileRegister.jsp │ └── sentFiles.jsp ├── admin │ ├── pages │ │ ├── navGeneral.html │ │ ├── navSearch.html │ │ ├── navReport.html │ │ ├── welcomeAdmin.jsp │ │ ├── trackFile.jsp │ │ ├── reportsAdmin.jsp │ │ ├── pendingFiles.jsp │ │ ├── branchList.jsp │ │ ├── rejectedFiles.jsp │ │ ├── closedFiles.jsp │ │ ├── processingFiles.jsp │ │ ├── changePassword.jsp │ │ ├── branchRegister.jsp │ │ ├── addFileType.jsp │ │ └── showBranchRecord.jsp │ ├── index.jsp │ └── install.jsp ├── header.html ├── formNotice.html ├── META-INF │ └── context.xml ├── js │ ├── adminAjax.js │ └── branchAjax.js ├── css │ ├── print.css │ ├── displaytag.css │ └── style.css ├── 404error.jsp ├── WEB-INF │ └── tags │ │ └── showFileData.tag ├── 500error.jsp └── index.jsp ├── snapshots ├── pic1.jpg ├── pic2.jpg ├── pic3.jpg └── pic4.jpg ├── nbproject ├── private │ ├── private.properties │ └── private.xml ├── genfiles.properties ├── ant-deploy.xml └── project.xml └── README.md /src/conf/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /dist/FTS.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyandeep/File-Tracking-System/HEAD/dist/FTS.war -------------------------------------------------------------------------------- /web/img/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyandeep/File-Tracking-System/HEAD/web/img/find.png -------------------------------------------------------------------------------- /web/img/fts.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyandeep/File-Tracking-System/HEAD/web/img/fts.jpeg -------------------------------------------------------------------------------- /web/img/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyandeep/File-Tracking-System/HEAD/web/img/help.png -------------------------------------------------------------------------------- /web/img/keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyandeep/File-Tracking-System/HEAD/web/img/keys.png -------------------------------------------------------------------------------- /snapshots/pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyandeep/File-Tracking-System/HEAD/snapshots/pic1.jpg -------------------------------------------------------------------------------- /snapshots/pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyandeep/File-Tracking-System/HEAD/snapshots/pic2.jpg -------------------------------------------------------------------------------- /snapshots/pic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyandeep/File-Tracking-System/HEAD/snapshots/pic3.jpg -------------------------------------------------------------------------------- /snapshots/pic4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyandeep/File-Tracking-System/HEAD/snapshots/pic4.jpg -------------------------------------------------------------------------------- /web/img/lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyandeep/File-Tracking-System/HEAD/web/img/lock_open.png -------------------------------------------------------------------------------- /web/img/ico_file_csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyandeep/File-Tracking-System/HEAD/web/img/ico_file_csv.png -------------------------------------------------------------------------------- /web/img/ico_file_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyandeep/File-Tracking-System/HEAD/web/img/ico_file_pdf.png -------------------------------------------------------------------------------- /web/img/ico_file_rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyandeep/File-Tracking-System/HEAD/web/img/ico_file_rtf.png -------------------------------------------------------------------------------- /web/img/ico_file_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyandeep/File-Tracking-System/HEAD/web/img/ico_file_xml.png -------------------------------------------------------------------------------- /web/img/ico_file_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyandeep/File-Tracking-System/HEAD/web/img/ico_file_excel.png -------------------------------------------------------------------------------- /web/branch/navGeneral.html: -------------------------------------------------------------------------------- 1 |
3 | 4 | N.B. : A form field with '*' is mandatary. It needs to filled up before submitting the form. 5 |
6 |
30 |
31 |
| SENDER BRANCH | 9 |DATE-OF-SEND | 10 |FORWARD-TO-BRANCH | 11 |DATE-OF-RECEIVE | 12 |
|---|---|---|---|
| <%= path[i] %> | 33 |<%= dates[i] %> | 34 |<%= path[i + 1] %> | 35 |
36 |
37 | |
49 |
50 |
38 | ${requestScope.message} 39 | ${requestScope.errorMessage} 40 |
41 |
29 | Error message form the server: ${ pageContext.exception }
30 |
35 |
36 |
| Track file by file ID | 33 |
| Track file by file no | 36 |
| Track file by file name | 39 |
| Track file by date of send | 42 |
| Track file by date of receive | 45 |
| Track file by file ID | 34 |
| Track file by file no | 37 |
| Track file by file name | 40 |
| Track file by file-status | 43 |
| Track file by branch | 46 |
| Track file by date of send | 49 |
| Track file by date of receive | 52 |
47 | <%-- for success and error message --%> 48 | ${requestScope.message} 49 | ${requestScope.errorMessage} 50 |
51 || View The Report Of | 34 |
|---|
| List of Registered Files | 44 |
| List of Pending Files | 47 |
| List of Rejected Files | 50 |
| List of Processing Files | 53 |
| List of Closed Files | 56 |
76 | : Password must be of at least 8 characters, must contain at least one alphabet, one digit and one special character 77 |
78 | 79 |83 | : Password must be of at least 8 characters, must contain at least one alphabet, one digit and one special character 84 |
85 | 86 |