org.mule.example.bookstore
Class Order

java.lang.Object
  extended by org.mule.example.bookstore.Order

public class Order
extends Object

Simple class which represents a Book Order.


Constructor Summary
Order()
           
Order(Book book, int quantity, String address, String email)
           
 
Method Summary
 String getAddress()
           
 Book getBook()
           
 String getEmail()
           
 int getQuantity()
           
 void setAddress(String address)
           
 void setBook(Book book)
           
 void setEmail(String email)
           
 void setQuantity(int quantity)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Order

public Order()

Order

public Order(Book book,
             int quantity,
             String address,
             String email)
Method Detail

getBook

public Book getBook()

setBook

public void setBook(Book book)

getQuantity

public int getQuantity()

setQuantity

public void setQuantity(int quantity)

getAddress

public String getAddress()

setAddress

public void setAddress(String address)

getEmail

public String getEmail()

setEmail

public void setEmail(String email)


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