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:
parent
0e9c6a219c
commit
b8bbe53096
|
@ -19,6 +19,7 @@ package org.apache.archiva.redback.rest.api.model;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlRootElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Olivier Lamy
|
* @author Olivier Lamy
|
||||||
|
@ -26,6 +27,7 @@ import javax.xml.bind.annotation.XmlRootElement;
|
||||||
*/
|
*/
|
||||||
@XmlRootElement( name = "userRegistrationRequest" )
|
@XmlRootElement( name = "userRegistrationRequest" )
|
||||||
public class UserRegistrationRequest
|
public class UserRegistrationRequest
|
||||||
|
implements Serializable
|
||||||
{
|
{
|
||||||
private User user;
|
private User user;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue