From richfaces-svn-commits at lists.jboss.org Tue Jan 11 06:48:39 2011
Content-Type: multipart/mixed; boundary="===============1714287230028788865=="
MIME-Version: 1.0
From: richfaces-svn-commits at lists.jboss.org
To: richfaces-svn-commits at lists.jboss.org
Subject: [richfaces-svn-commits] JBoss Rich Faces SVN: r20946 -
modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/model/drag.
Date: Tue, 11 Jan 2011 06:48:39 -0500
Message-ID: <201101111148.p0BBmddM019395@svn01.web.mwc.hst.phx2.redhat.com>
--===============1714287230028788865==
Content-Type: text/plain; charset="utf-8"
MIME-Version: 1.0
Content-Transfer-Encoding: quoted-printable
Author: ppitonak(a)redhat.com
Date: 2011-01-11 06:48:38 -0500 (Tue, 11 Jan 2011)
New Revision: 20946
Modified:
modules/tests/metamer/trunk/application/src/main/java/org/richfaces/test=
s/metamer/model/drag/DragValue.java
modules/tests/metamer/trunk/application/src/main/java/org/richfaces/test=
s/metamer/model/drag/DropValue.java
Log:
* beans made serializable because of MyFaces (RF-10127)
Modified: modules/tests/metamer/trunk/application/src/main/java/org/richfac=
es/tests/metamer/model/drag/DragValue.java
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tes=
ts/metamer/model/drag/DragValue.java 2011-01-11 11:40:53 UTC (rev 20945)
+++ modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tes=
ts/metamer/model/drag/DragValue.java 2011-01-11 11:48:38 UTC (rev 20946)
@@ -1,6 +1,6 @@
/*************************************************************************=
******
* JBoss, Home of Professional Open Source
- * Copyright 2010, Red Hat, Inc. and individual contributors
+ * Copyright 2010-2011, Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -21,11 +21,15 @@
*************************************************************************=
******/
package org.richfaces.tests.metamer.model.drag;
=
+import java.io.Serializable;
+
/**
* @author Lukas Fryc
* @version $Revision$
*/
-public class DragValue {
+public class DragValue implements Serializable {
+
+ private static final long serialVersionUID =3D -1L;
int number;
=
public DragValue(int number) {
@@ -36,4 +40,4 @@
public String toString() {
return "DragValue [number=3D" + number + "]";
}
-}
\ No newline at end of file
+}
Property changes on: modules/tests/metamer/trunk/application/src/main/java/=
org/richfaces/tests/metamer/model/drag/DragValue.java
___________________________________________________________________
Name: svn:keywords
+ Revision
Modified: modules/tests/metamer/trunk/application/src/main/java/org/richfac=
es/tests/metamer/model/drag/DropValue.java
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tes=
ts/metamer/model/drag/DropValue.java 2011-01-11 11:40:53 UTC (rev 20945)
+++ modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tes=
ts/metamer/model/drag/DropValue.java 2011-01-11 11:48:38 UTC (rev 20946)
@@ -1,6 +1,6 @@
/*************************************************************************=
******
* JBoss, Home of Professional Open Source
- * Copyright 2010, Red Hat, Inc. and individual contributors
+ * Copyright 2010-2011, Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -21,11 +21,15 @@
*************************************************************************=
******/
package org.richfaces.tests.metamer.model.drag;
=
+import java.io.Serializable;
+
/**
* @author Lukas Fryc
* @version $Revision$
*/
-public class DropValue {
+public class DropValue implements Serializable {
+
+ private static final long serialVersionUID =3D -1L;
int number;
=
public DropValue(int number) {
Property changes on: modules/tests/metamer/trunk/application/src/main/java/=
org/richfaces/tests/metamer/model/drag/DropValue.java
___________________________________________________________________
Name: svn:keywords
+ Revision
--===============1714287230028788865==--