Package org.apache.cxf.customer.book
Interface BookService
-
- All Known Implementing Classes:
BookServiceImpl
public interface BookService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longaddBook(Book c)voiddeleteBook(long id)BookgetAnotherBook(GetAnotherBook getAnotherBook)BookgetBook(GetBook getBook)BooksgetBooks()voidupdateBook(Book c)
-
-
-
Method Detail
-
getBooks
Books getBooks()
-
getBook
Book getBook(GetBook getBook) throws BookNotFoundFault
- Throws:
BookNotFoundFault
-
getAnotherBook
Book getAnotherBook(GetAnotherBook getAnotherBook) throws BookNotFoundFault
- Throws:
BookNotFoundFault
-
updateBook
void updateBook(Book c)
-
addBook
long addBook(Book c)
-
deleteBook
void deleteBook(long id) throws BookNotFoundFault- Throws:
BookNotFoundFault
-
-