add long keys to all entities

This commit is contained in:
Athou
2013-03-23 01:49:39 +01:00
parent 4197c5e1ae
commit 7e105ff7bb
11 changed files with 44 additions and 102 deletions

View File

@@ -0,0 +1,26 @@
package com.commafeed.model;
import java.io.Serializable;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.MappedSuperclass;
@SuppressWarnings("serial")
@MappedSuperclass
public abstract class AbstractModel implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
}