Skip to content

Commit

Permalink
Added serializable to form model classes (#490)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruzkant authored and tijsrademakers committed Jul 24, 2017
1 parent 94484cf commit 3325e1f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@
*/
package org.flowable.form.model;

import java.io.Serializable;

/**
* @author jbarrez
*/
public class FormOutcome {
public class FormOutcome implements Serializable {

private static final long serialVersionUID = 1L;

protected String id;
protected String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@
*/
package org.flowable.form.model;

import java.io.Serializable;

/**
* @author Tijs Rademakers
*/
public class LayoutDefinition {
public class LayoutDefinition implements Serializable {

private static final long serialVersionUID = 1L;

protected Integer row;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@
*/
package org.flowable.form.model;

import java.io.Serializable;

/**
* @author Tijs Rademakers
*/
public class Option {
public class Option implements Serializable {

private static final long serialVersionUID = 1L;

protected String id;
protected String name;
Expand Down

0 comments on commit 3325e1f

Please sign in to comment.