Skip to content

Commit

Permalink
Made ByteArrayRef serializable (otherwise a lot of serialization exce…
Browse files Browse the repository at this point in the history
…ptions on tomcat boot)
  • Loading branch information
jbarrez committed Jun 19, 2013
1 parent 03ecd0f commit 49e8679
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package org.activiti.engine.impl.persistence.entity;

import java.io.Serializable;

import org.activiti.engine.impl.context.Context;

/**
Expand All @@ -15,7 +17,10 @@
*
* @author Marcus Klimstra (CGI)
*/
public final class ByteArrayRef {
public final class ByteArrayRef implements Serializable {

private static final long serialVersionUID = 1L;

private String id;
private String name;
private ByteArrayEntity entity;
Expand Down

0 comments on commit 49e8679

Please sign in to comment.