ing
This commit is contained in:
parent
70b120c3ae
commit
7934a7d94e
2
pom.xml
2
pom.xml
|
@ -13,7 +13,7 @@
|
||||||
<groupId>com.loafle.overflow</groupId>
|
<groupId>com.loafle.overflow</groupId>
|
||||||
<artifactId>commons-java</artifactId>
|
<artifactId>commons-java</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<version>1.0.64-SNAPSHOT</version>
|
<version>1.0.65-SNAPSHOT</version>
|
||||||
<name>com.loafle.overflow.commons-java</name>
|
<name>com.loafle.overflow.commons-java</name>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
@ -86,7 +86,7 @@ public class InfraHost extends Infra {
|
||||||
/**
|
/**
|
||||||
* @return the infraHostIPs
|
* @return the infraHostIPs
|
||||||
*/
|
*/
|
||||||
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true, mappedBy = "infraHost")
|
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true)
|
||||||
public List<InfraHostIP> getInfraHostIPs() {
|
public List<InfraHostIP> getInfraHostIPs() {
|
||||||
return infraHostIPs;
|
return infraHostIPs;
|
||||||
}
|
}
|
||||||
|
@ -101,7 +101,7 @@ public class InfraHost extends Infra {
|
||||||
/**
|
/**
|
||||||
* @return the infraHostPorts
|
* @return the infraHostPorts
|
||||||
*/
|
*/
|
||||||
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true, mappedBy = "infraHost")
|
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true)
|
||||||
public List<InfraHostPort> getInfraHostPorts() {
|
public List<InfraHostPort> getInfraHostPorts() {
|
||||||
return infraHostPorts;
|
return infraHostPorts;
|
||||||
}
|
}
|
||||||
|
@ -116,7 +116,7 @@ public class InfraHost extends Infra {
|
||||||
/**
|
/**
|
||||||
* @return the infraHostApplications
|
* @return the infraHostApplications
|
||||||
*/
|
*/
|
||||||
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true, mappedBy = "infraHost")
|
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true)
|
||||||
public List<InfraHostApplication> getInfraHostApplications() {
|
public List<InfraHostApplication> getInfraHostApplications() {
|
||||||
return infraHostApplications;
|
return infraHostApplications;
|
||||||
}
|
}
|
||||||
|
@ -131,7 +131,7 @@ public class InfraHost extends Infra {
|
||||||
/**
|
/**
|
||||||
* @return the infraHostDaemons
|
* @return the infraHostDaemons
|
||||||
*/
|
*/
|
||||||
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true, mappedBy = "infraHost")
|
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true)
|
||||||
public List<InfraHostDaemon> getInfraHostDaemons() {
|
public List<InfraHostDaemon> getInfraHostDaemons() {
|
||||||
return infraHostDaemons;
|
return infraHostDaemons;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user