└── Library-Management ├── HELP.md ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src └── main │ ├── java │ └── com │ │ └── library │ │ ├── LibraryManagementApplication.java │ │ ├── controllers │ │ ├── AdminController.java │ │ ├── HomeController.java │ │ └── StudentController.java │ │ ├── dtos │ │ ├── LoginDTO.java │ │ ├── PasswordResetDTO.java │ │ ├── RegisterDTO.java │ │ └── TransactionDTO.java │ │ ├── entities │ │ ├── Book.java │ │ ├── BookTransaction.java │ │ ├── Student.java │ │ └── User.java │ │ ├── repository │ │ ├── BookRepository.java │ │ ├── BookTransactionRepository.java │ │ ├── StudentRepository.java │ │ └── UserRepository.java │ │ └── services │ │ ├── BookService.java │ │ ├── StudentService.java │ │ ├── TransactionService.java │ │ └── UserService.java │ ├── resources │ └── application.properties │ └── webapp │ ├── WEB-INF │ └── jsp │ │ ├── ChangePwd.jsp │ │ ├── addbook.jsp │ │ ├── adminhome.jsp │ │ ├── books.jsp │ │ ├── checkbooks.jsp │ │ ├── editbook.jsp │ │ ├── footer.jsp │ │ ├── header.jsp │ │ ├── history.jsp │ │ ├── index.jsp │ │ ├── issuebook.jsp │ │ ├── login.jsp │ │ ├── message.jsp │ │ ├── mybooks.jsp │ │ ├── report.jsp │ │ ├── returnbook.jsp │ │ ├── studenthome.jsp │ │ ├── studentpage.jsp │ │ └── users.jsp │ ├── css │ ├── all.min.css │ ├── bootstrap.css │ ├── datatables.css │ ├── library.css │ └── sb-admin.min.css │ ├── images │ ├── customer.png │ ├── dd.jpg │ ├── image.png │ ├── libbg.jpg │ ├── liblogo.png │ └── login.jpg │ └── js │ ├── all.min.js │ ├── bootstrap.bundle.min.js │ ├── bootstrap.js │ ├── datatables.js │ ├── jquery-3.5.1.js │ ├── jquery.min.js │ └── sb-admin.min.js └── target └── classes ├── META-INF ├── MANIFEST.MF └── maven │ └── com.library │ └── Library-Management │ ├── pom.properties │ └── pom.xml ├── application.properties └── com └── library ├── LibraryManagementApplication.class ├── controllers ├── AdminController.class ├── HomeController.class └── StudentController.class ├── dtos ├── LoginDTO.class ├── PasswordResetDTO.class ├── RegisterDTO.class └── TransactionDTO.class ├── entities ├── Book.class ├── BookTransaction.class ├── Student.class └── User.class ├── repository ├── BookRepository.class ├── BookTransactionRepository.class ├── StudentRepository.class └── UserRepository.class └── services ├── BookService.class ├── StudentService.class ├── TransactionService.class └── UserService.class /Library-Management/HELP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/HELP.md -------------------------------------------------------------------------------- /Library-Management/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/mvnw -------------------------------------------------------------------------------- /Library-Management/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/mvnw.cmd -------------------------------------------------------------------------------- /Library-Management/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/pom.xml -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/LibraryManagementApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/LibraryManagementApplication.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/controllers/AdminController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/controllers/AdminController.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/controllers/HomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/controllers/HomeController.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/controllers/StudentController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/controllers/StudentController.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/dtos/LoginDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/dtos/LoginDTO.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/dtos/PasswordResetDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/dtos/PasswordResetDTO.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/dtos/RegisterDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/dtos/RegisterDTO.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/dtos/TransactionDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/dtos/TransactionDTO.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/entities/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/entities/Book.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/entities/BookTransaction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/entities/BookTransaction.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/entities/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/entities/Student.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/entities/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/entities/User.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/repository/BookRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/repository/BookRepository.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/repository/BookTransactionRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/repository/BookTransactionRepository.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/repository/StudentRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/repository/StudentRepository.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/repository/UserRepository.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/services/BookService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/services/BookService.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/services/StudentService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/services/StudentService.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/services/TransactionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/services/TransactionService.java -------------------------------------------------------------------------------- /Library-Management/src/main/java/com/library/services/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/java/com/library/services/UserService.java -------------------------------------------------------------------------------- /Library-Management/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/resources/application.properties -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/ChangePwd.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/ChangePwd.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/addbook.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/addbook.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/adminhome.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/adminhome.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/books.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/books.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/checkbooks.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/checkbooks.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/editbook.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/editbook.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/footer.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/footer.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/header.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/header.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/history.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/history.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/index.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/issuebook.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/issuebook.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/login.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/message.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/message.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/mybooks.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/mybooks.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/report.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/report.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/returnbook.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/returnbook.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/studenthome.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/studenthome.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/studentpage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/studentpage.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/WEB-INF/jsp/users.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/WEB-INF/jsp/users.jsp -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/css/all.min.css -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/css/bootstrap.css -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/css/datatables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/css/datatables.css -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/css/library.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/css/library.css -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/css/sb-admin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/css/sb-admin.min.css -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/images/customer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/images/customer.png -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/images/dd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/images/dd.jpg -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/images/image.png -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/images/libbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/images/libbg.jpg -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/images/liblogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/images/liblogo.png -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/images/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/images/login.jpg -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/js/all.min.js -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/js/bootstrap.js -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/js/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/js/datatables.js -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/js/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/js/jquery-3.5.1.js -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/js/jquery.min.js -------------------------------------------------------------------------------- /Library-Management/src/main/webapp/js/sb-admin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/src/main/webapp/js/sb-admin.min.js -------------------------------------------------------------------------------- /Library-Management/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /Library-Management/target/classes/META-INF/maven/com.library/Library-Management/pom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/META-INF/maven/com.library/Library-Management/pom.properties -------------------------------------------------------------------------------- /Library-Management/target/classes/META-INF/maven/com.library/Library-Management/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/META-INF/maven/com.library/Library-Management/pom.xml -------------------------------------------------------------------------------- /Library-Management/target/classes/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/application.properties -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/LibraryManagementApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/LibraryManagementApplication.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/controllers/AdminController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/controllers/AdminController.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/controllers/HomeController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/controllers/HomeController.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/controllers/StudentController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/controllers/StudentController.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/dtos/LoginDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/dtos/LoginDTO.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/dtos/PasswordResetDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/dtos/PasswordResetDTO.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/dtos/RegisterDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/dtos/RegisterDTO.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/dtos/TransactionDTO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/dtos/TransactionDTO.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/entities/Book.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/entities/Book.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/entities/BookTransaction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/entities/BookTransaction.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/entities/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/entities/Student.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/entities/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/entities/User.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/repository/BookRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/repository/BookRepository.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/repository/BookTransactionRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/repository/BookTransactionRepository.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/repository/StudentRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/repository/StudentRepository.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/repository/UserRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/repository/UserRepository.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/services/BookService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/services/BookService.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/services/StudentService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/services/StudentService.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/services/TransactionService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/services/TransactionService.class -------------------------------------------------------------------------------- /Library-Management/target/classes/com/library/services/UserService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjiBhandhavi/Library-Management-System-SpringBoot/HEAD/Library-Management/target/classes/com/library/services/UserService.class --------------------------------------------------------------------------------