Complete Java Project (Single File)

import java.util.*; // Book Class class Book { private int id; private String title; private String author; private boolean isIssued; public Book(int id, String title, String author) { this.id = id; this.title = title; this.author =…