Package org.apache.cxf.customer.book
Class BookServiceImpl
- java.lang.Object
-
- org.apache.cxf.customer.book.BookServiceImpl
-
- All Implemented Interfaces:
BookService
public class BookServiceImpl extends Object implements BookService
-
-
Constructor Summary
Constructors Constructor Description BookServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longaddBook(Book b)voiddeleteBook(long id)BookgetAnotherBook(GetAnotherBook getAnotherBook)BookgetBook(GetBook getBook)BooksgetBooks()voidupdateBook(Book b)
-
-
-
Method Detail
-
getBooks
public Books getBooks()
- Specified by:
getBooksin interfaceBookService
-
getBook
public Book getBook(GetBook getBook) throws BookNotFoundFault
- Specified by:
getBookin interfaceBookService- Throws:
BookNotFoundFault
-
getAnotherBook
public Book getAnotherBook(GetAnotherBook getAnotherBook) throws BookNotFoundFault
- Specified by:
getAnotherBookin interfaceBookService- Throws:
BookNotFoundFault
-
updateBook
public void updateBook(Book b)
- Specified by:
updateBookin interfaceBookService
-
addBook
public long addBook(Book b)
- Specified by:
addBookin interfaceBookService
-
deleteBook
public void deleteBook(long id)
- Specified by:
deleteBookin interfaceBookService
-
-