mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
48 lines
1021 B
Java
48 lines
1021 B
Java
package com.avaje.tests.inheritance.model;
|
|
|
|
import com.avaje.ebean.annotation.ChangeLog;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.DiscriminatorColumn;
|
|
import javax.persistence.DiscriminatorType;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Id;
|
|
import javax.persistence.Inheritance;
|
|
import javax.persistence.InheritanceType;
|
|
import javax.persistence.ManyToOne;
|
|
|
|
@ChangeLog
|
|
@Entity
|
|
@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
|
|
@DiscriminatorColumn(name="type", discriminatorType=DiscriminatorType.STRING)
|
|
public class Configuration extends AbstractBaseClass{
|
|
@Id
|
|
@Column(name="id")
|
|
private Integer id;
|
|
|
|
|
|
@ManyToOne
|
|
private Configurations configurations;
|
|
|
|
|
|
public Configuration(){
|
|
super();
|
|
}
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Configurations getConfigurations() {
|
|
return configurations;
|
|
}
|
|
|
|
public void setConfigurations(Configurations configurations) {
|
|
this.configurations = configurations;
|
|
}
|
|
}
|