What does an association relationship in Java classes imply?
class Book { private Author author; }
A Book inherits all properties of Author
A Book is composed of one or more Authors
A Book is associated with an Author, implying a Has-A relationship
A Book is dependent on an Author for its operations