org.mule.example.bookstore
Interface CatalogService

All Known Implementing Classes:
CatalogServiceImpl

public interface CatalogService

Interface for working with the bookstore's catalog of books


Field Summary
static String URL
          The catalog will be accesible as a web service at this URL
 
Method Summary
 Book getBook(long bookId)
          Look up the details for a particular book by ID
 Collection<Book> getBooks()
          Return a collection of all books in the catalog
 

Field Detail

URL

static final String URL
The catalog will be accesible as a web service at this URL

See Also:
Constant Field Values
Method Detail

getBooks

Collection<Book> getBooks()
Return a collection of all books in the catalog


getBook

Book getBook(long bookId)
Look up the details for a particular book by ID



Copyright © 2003-2009 MuleSource, Inc.. All Rights Reserved.