Make Serializable (required by RMI).
This commit is contained in:
parent
d8c5143e97
commit
09cfe6eb96
|
@ -15,13 +15,16 @@
|
|||
|
||||
package sample.contact;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
/**
|
||||
* Represents a contact.
|
||||
*
|
||||
* @author Ben Alex
|
||||
* @version $Id$
|
||||
*/
|
||||
public class Contact {
|
||||
public class Contact implements Serializable {
|
||||
//~ Instance fields ========================================================
|
||||
|
||||
private Integer id;
|
||||
|
|
Loading…
Reference in New Issue