edu.cmu.mse.vault.customer
Class Customer
java.lang.Object
edu.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. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
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
-
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.