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/tests/metamer/model/drag/DragValue.java
modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/model/drag/DropValue.java
Log:
* beans made serializable because of MyFaces (RF-10127)
Modified:
modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/model/drag/DragValue.java
===================================================================
---
modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/model/drag/DragValue.java 2011-01-11
11:40:53 UTC (rev 20945)
+++
modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/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 <a href="mailto:lfryc@redhat.com">Lukas Fryc</a>
* @version $Revision$
*/
-public class DragValue {
+public class DragValue implements Serializable {
+
+ private static final long serialVersionUID = -1L;
int number;
public DragValue(int number) {
@@ -36,4 +40,4 @@
public String toString() {
return "DragValue [number=" + 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/richfaces/tests/metamer/model/drag/DropValue.java
===================================================================
---
modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/model/drag/DropValue.java 2011-01-11
11:40:53 UTC (rev 20945)
+++
modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/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 <a href="mailto:lfryc@redhat.com">Lukas Fryc</a>
* @version $Revision$
*/
-public class DropValue {
+public class DropValue implements Serializable {
+
+ private static final long serialVersionUID = -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
Show replies by date