This commit is contained in:
crusader 2018-06-12 18:25:11 +09:00
parent 6a8265a38f
commit b63fb7a4b7
5 changed files with 32 additions and 1 deletions

View File

@ -13,7 +13,7 @@
<groupId>com.loafle.overflow</groupId>
<artifactId>commons-java</artifactId>
<packaging>jar</packaging>
<version>1.0.56-SNAPSHOT</version>
<version>1.0.57-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name>
<properties>

View File

@ -18,6 +18,14 @@ public abstract class Infra {
private Probe probe;
private Date createDate;
protected Infra() {
}
protected Infra(Long id) {
this.id = id;
}
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
public Long getId() {

View File

@ -23,6 +23,14 @@ public class InfraHost extends Infra {
private List<InfraHostApplication> infraHostApplications;
private List<InfraHostDaemon> infraHostDaemons;
public InfraHost() {
super();
}
public InfraHost(Long id) {
super(id);
}
@ManyToOne
@JoinColumn(name = "INFRA_ZONE_ID", nullable = true)
public InfraZone getInfraZone() {

View File

@ -18,6 +18,13 @@ public class InfraService extends Infra {
private InfraHostPort infraHostPort;
private MetaCryptoType metaCryptoType;
public InfraService() {
super();
}
public InfraService(Long id) {
super(id);
}
@ManyToOne
@JoinColumn(name = "META_TARGET_SERVICE_TYPE_ID", nullable = true)

View File

@ -20,6 +20,14 @@ public class InfraZone extends Infra {
private String address;
private String mac;
public InfraZone() {
super();
}
public InfraZone(Long id) {
super(id);
}
@ManyToOne
@JoinColumn(name = "META_TARGET_ZONE_TYPE_ID", nullable = true)
public MetaTargetZoneType getMetaTargetZoneType() {