rest model object must be Serializable

git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1342643 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-05-25 14:37:40 +00:00
parent 0e9c6a219c
commit b8bbe53096
1 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,7 @@ package org.apache.archiva.redback.rest.api.model;
*/
import javax.xml.bind.annotation.XmlRootElement;
import java.io.Serializable;
/**
* @author Olivier Lamy
@ -26,6 +27,7 @@ import javax.xml.bind.annotation.XmlRootElement;
*/
@XmlRootElement( name = "userRegistrationRequest" )
public class UserRegistrationRequest
implements Serializable
{
private User user;