/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package businessLogic2; import javax.ejb.Remote; /** * * @author Burabari */ @Remote public interface Book_mgtRemote { public entities2.Book createBook(entities2.Book book); public entities2.Book addChapterToBook(entities2.Book book); public int getBookCount(); public int getChapterCount(); public entities2.Book findBook(); }