April 05
Prof. Ismael H. F. Santos -
ismael@tecgraf.puc-rio.br
2
CustomerTransferObject
n
import java.io.*;
n
public class
Customer
implements Serializable {
n
// member variables
n
int CustomerNumber;
n
String name;
n
String streetAddress;
n
String city;
n
...
n
// getter and setter methods...
n
...
n
}