01: /*
02: * Created on 2005-11-24
03: *
04: * TODO To change the template for this generated file go to
05: * Window - Preferences - Java - Code Style - Code Templates
06: */
07: package ca.nexcel.books.business;
08:
09: import ca.nexcel.books.beans.Book;
10:
11: /**
12: * @author peter
13: *
14: * TODO To change the template for this generated type comment go to Window -
15: * Preferences - Java - Code Style - Code Templates
16: */
17: public interface BookService {
18:
19: public Book read(String isbn);
20:
21: }
|