CD Class

This a class that models a CD and should implement the Media interface.

The getId() method: Make sure you typecast the returning id as follows:

public <T> Comparable<T> getId() {
		return (Comparable<T>) id;
	}