Skip to content

Commit

Permalink
Serializable für Buch
Browse files Browse the repository at this point in the history
  • Loading branch information
sduerrfeld committed Mar 30, 2011
1 parent b9445de commit 0693230
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package org.alibrary.backend.model;

import java.io.Serializable;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
Expand All @@ -12,7 +14,9 @@
import org.joda.time.LocalDate;

@Entity
public class Buch {
public class Buch implements Serializable{

private static final long serialVersionUID = 1L;

@Id
@GeneratedValue
Expand Down

0 comments on commit 0693230

Please sign in to comment.