import java.util.*;

/** A University which has information about
 *  the local bookstore and book lists for the
 *  courses taught.
 */
public class University {

  /** The book store available to students at 
   *   this university.  */
  private BookStore bookStore;

  /** The book and price list information
   *   for books for this university.
   */
  private BookReference bookLists;

  /** 
   * Create a university providing the BookStore 
   * and BookReference for this university.
   * @param br A BookReference with book details for this university.
   * @param bs The local BookStore that sells books for this university.
   */
  public University(BookReference br, BookStore bs) {
    bookLists = br;
    bookStore = bs; 
  }
   
  /** 
   * Get the university book store that is local to this university.
   * @return The book store for this university.
   */
  public BookStore getBookStore () {
    return bookStore;
  }
  /**
   * Get the book and price list reference object for this university.
   * @return The book list reference.
   */
  public BookReference getBookLists() {
    return bookLists;
  }
}

