1 package example.cmp.map;2 3 import java.rmi.*;4 import java.util.*;5 import javax.ejb.*;6 7 /**8 * Local interface for the Course bean.9 */10 public interface Course extends EJBLocalObject {11 12 /**13 * Returns the course's name.14 */15 String getName();16 }17