edu.cmu.mse.vault.customer
Class Customer

java.lang.Object
  extended byedu.cmu.mse.vault.customer.Customer
All Implemented Interfaces:
java.io.Serializable

public class Customer
extends java.lang.Object
implements java.io.Serializable

Author:
Soumya TODO To change the template for this generated type comment go to Window - Preferences - Java - Code Style - Code Templates
See Also:
Serialized Form

Constructor Summary
Customer(java.lang.String fName, java.lang.String lName)
          Creates a customer dataholder object that is used pass all the customer information from the client to the beans.
 
Method Summary
 java.lang.String getFirstName()
           
 java.lang.String getLastName()
           
 void setFirstName(java.lang.String firstName)
           
 void setLastName(java.lang.String lastName)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Customer

public Customer(java.lang.String fName,
                java.lang.String lName)
Creates a customer dataholder object that is used pass all the customer information from the client to the beans.

Parameters:
fName -
lName -
Method Detail

getFirstName

public java.lang.String getFirstName()
Returns:
Returns the firstName.

setFirstName

public void setFirstName(java.lang.String firstName)
Parameters:
firstName - The firstName to set.

getLastName

public java.lang.String getLastName()
Returns:
Returns the lastName.

setLastName

public void setLastName(java.lang.String lastName)
Parameters:
lastName - The lastName to set.