package ejava.examples.ejb.entity.bean;

import javax.ejb.EJBLocalObject;

/**
   This interface defines the local interface to the EntityBean.
*/
public interface BookLocal extends EJBLocalObject {
   String getId();
   String getTitle();
   String getAuthor();
   String getTopic();

   void setTitle(String title);
   void setAuthor(String author);
   void setTopic(String topic);
}

