| Package | Description |
|---|---|
| org.mule.example.bookstore |
| Modifier and Type | Method and Description |
|---|---|
Book |
Order.getBook() |
Book |
CatalogService.getBook(long bookId)
Look up the details for a particular book by ID
|
Book |
CatalogServiceImpl.getBook(long bookId) |
| Modifier and Type | Method and Description |
|---|---|
Collection<Book> |
CatalogService.getBooks()
Return a collection of all books in the catalog
|
Collection<Book> |
CatalogServiceImpl.getBooks() |
| Modifier and Type | Method and Description |
|---|---|
long |
CatalogServiceImpl.addBook(Book book) |
long |
CatalogAdminService.addBook(Book book)
Add a new book to the catalog
|
Order |
OrderServiceImpl.orderBook(Book book,
int quantity,
String address,
String email) |
Order |
OrderService.orderBook(Book book,
int quantity,
String address,
String email)
Place a book order
|
void |
Order.setBook(Book book) |
| Modifier and Type | Method and Description |
|---|---|
Collection<Long> |
CatalogServiceImpl.addBooks(Collection<Book> booksToAdd) |
Collection<Long> |
CatalogAdminService.addBooks(Collection<Book> books)
Add a group of new books to the catalog
|
| Constructor and Description |
|---|
Order(Book book,
int quantity,
String address,
String email) |
Copyright © 2003–2014 MuleSoft, Inc.. All rights reserved.