{"id":17626489,"url":"https://github.com/mudasirrr/lms-vit-project","last_synced_at":"2026-02-16T06:02:29.226Z","repository":{"id":258495922,"uuid":"874025233","full_name":"Mudasirrr/LMS-VIT-PROJECT","owner":"Mudasirrr","description":"Introducing a comprehensive Java-based Library Management System (LMS) designed to streamline library operations and provide a seamless user experience. Key features include:  Book cataloging: Easily manage and search a vast collection of books. Member management and much more","archived":false,"fork":false,"pushed_at":"2024-10-21T17:33:25.000Z","size":69,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-14T02:35:49.570Z","etag":null,"topics":["java","java-8","java8"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mudasirrr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-17T06:07:14.000Z","updated_at":"2024-10-21T17:33:29.000Z","dependencies_parsed_at":"2024-10-21T22:35:53.132Z","dependency_job_id":null,"html_url":"https://github.com/Mudasirrr/LMS-VIT-PROJECT","commit_stats":{"total_commits":7,"total_committers":2,"mean_commits":3.5,"dds":0.4285714285714286,"last_synced_commit":"18b94db75ac38343e09af64c42f74ed0e0e7a409"},"previous_names":["mudasirrr/lms-vit-project"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Mudasirrr/LMS-VIT-PROJECT","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mudasirrr%2FLMS-VIT-PROJECT","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mudasirrr%2FLMS-VIT-PROJECT/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mudasirrr%2FLMS-VIT-PROJECT/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mudasirrr%2FLMS-VIT-PROJECT/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mudasirrr","download_url":"https://codeload.github.com/Mudasirrr/LMS-VIT-PROJECT/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mudasirrr%2FLMS-VIT-PROJECT/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278698809,"owners_count":26030398,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","java-8","java8"],"created_at":"2024-10-22T23:05:39.273Z","updated_at":"2025-10-06T23:48:43.358Z","avatar_url":"https://github.com/Mudasirrr.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LMS_Of_VIT_Melb\n\n## Table of Contents\n- [Project Overview](#project-overview)\n- [Features](#features)\n- [Technologies Used](#technologies-used)\n- [UML Class Diagram](#uml-class-diagram)\n- [Installation](#installation)\n- [Running the Project](#running-the-project)\n- [Folder Structure](#folder-structure)\n- [Classes and Relationships](#classes-and-relationships)\n- [Usage](#usage)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Project Overview\nLMS_Of_VIT_Melb is a **Library Management System (LMS)** for managing the operations of a library, including:\n- Managing books, patrons, employees, and loans.\n- Handling reservations, fines, and notifications.\n- Enabling library staff to issue and return books.\n- Providing patrons with the ability to reserve books.\n- Managing fines for overdue books.\n\nThis system is developed in **Java** using the **NetBeans IDE** and follows object-oriented programming principles. It supports different classes such as `Book`, `Patron`, `Employee`, `Loan`, `Reservation`, `Fine`, and more, with relationships between them like aggregation and association.\n\n## Features\n- **Library Management**: Add, update, and remove books, patrons, and employees.\n- **Book Loan Management**: Issue, return, and track books.\n- **Reservations**: Manage book reservations.\n- **Fines**: Calculate and manage fines for overdue books.\n- **Notifications**: Notify patrons about reservation status or overdue books.\n\n## Technologies Used\n- **Java**: Programming language for development.\n- **NetBeans IDE**: Integrated Development Environment used for coding.\n- **UML**: Used to design and structure the system.\n  \n## UML Class Diagram\nThis project is designed based on the following UML structure:\n\n- **Library** ↔ **Book**: Aggregation (Library contains multiple books).\n- **Library** ↔ **Patron**: Aggregation (Library manages multiple patrons).\n- **Library** ↔ **Employee**: Aggregation (Library employs multiple staff).\n- **Patron** ↔ **Loan**: Association (A patron can have multiple loans).\n- **Loan** ↔ **Fine**: Composition (A loan may generate a fine).\n\nThe full UML diagram can be found in the [UML_diagrams](UML_diagrams/) directory.\n\n## Installation\nFollow the steps below to set up the project locally:\n\n1. **Clone the Repository**:\n   ```bash\n   git clone https://github.com/Mudasirrr/LMS-VIT-PROJECT.git\n   cd LMS_Of_VIT_Melb\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmudasirrr%2Flms-vit-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmudasirrr%2Flms-vit-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmudasirrr%2Flms-vit-project/lists"}