You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by fm...@apache.org on 2014/03/31 20:48:21 UTC

svn commit: r1583396 - /chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/RenditionInfoImpl.java

Author: fmui
Date: Mon Mar 31 18:48:20 2014
New Revision: 1583396

URL: http://svn.apache.org/r1583396
Log:
CMIS-775: made RenditionInfoImpl serializable

Modified:
    chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/RenditionInfoImpl.java

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/RenditionInfoImpl.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/RenditionInfoImpl.java?rev=1583396&r1=1583395&r2=1583396&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/RenditionInfoImpl.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/RenditionInfoImpl.java Mon Mar 31 18:48:20 2014
@@ -18,6 +18,7 @@
  */
 package org.apache.chemistry.opencmis.commons.impl.server;
 
+import java.io.Serializable;
 import java.math.BigInteger;
 
 import org.apache.chemistry.opencmis.commons.server.RenditionInfo;
@@ -25,7 +26,9 @@ import org.apache.chemistry.opencmis.com
 /**
  * Implementation of the {@link RenditionInfo} interface.
  */
-public class RenditionInfoImpl implements RenditionInfo {
+public class RenditionInfoImpl implements RenditionInfo, Serializable {
+
+    private static final long serialVersionUID = 1L;
 
     private String id;
     private String contentType;