mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-29 07:12:32 +00:00
Make Serializable (required by RMI).
This commit is contained in:
parent
d8c5143e97
commit
09cfe6eb96
@ -15,13 +15,16 @@
|
|||||||
|
|
||||||
package sample.contact;
|
package sample.contact;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a contact.
|
* Represents a contact.
|
||||||
*
|
*
|
||||||
* @author Ben Alex
|
* @author Ben Alex
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public class Contact {
|
public class Contact implements Serializable {
|
||||||
//~ Instance fields ========================================================
|
//~ Instance fields ========================================================
|
||||||
|
|
||||||
private Integer id;
|
private Integer id;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user