2015-04-15 21:45:14 +03:00
|
|
|
package com.iluwatar.common;
|
2015-04-12 23:49:00 +03:00
|
|
|
|
2015-04-13 22:08:01 +03:00
|
|
|
import javax.persistence.Inheritance;
|
|
|
|
import javax.persistence.InheritanceType;
|
|
|
|
import javax.persistence.MappedSuperclass;
|
2015-04-12 23:49:00 +03:00
|
|
|
import javax.persistence.Version;
|
|
|
|
|
2015-04-13 22:08:01 +03:00
|
|
|
@MappedSuperclass
|
|
|
|
@Inheritance(strategy=InheritanceType.TABLE_PER_CLASS)
|
2015-04-12 23:49:00 +03:00
|
|
|
public class BaseEntity {
|
|
|
|
|
|
|
|
@Version
|
|
|
|
private Long version;
|
|
|
|
}
|