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>
|
||||
<artifactId>commons-java</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.0.64-SNAPSHOT</version>
|
||||
<version>1.0.65-SNAPSHOT</version>
|
||||
<name>com.loafle.overflow.commons-java</name>
|
||||
|
||||
<properties>
|
||||
|
|
|
@ -86,7 +86,7 @@ public class InfraHost extends Infra {
|
|||
/**
|
||||
* @return the infraHostIPs
|
||||
*/
|
||||
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true, mappedBy = "infraHost")
|
||||
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true)
|
||||
public List<InfraHostIP> getInfraHostIPs() {
|
||||
return infraHostIPs;
|
||||
}
|
||||
|
@ -101,7 +101,7 @@ public class InfraHost extends Infra {
|
|||
/**
|
||||
* @return the infraHostPorts
|
||||
*/
|
||||
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true, mappedBy = "infraHost")
|
||||
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true)
|
||||
public List<InfraHostPort> getInfraHostPorts() {
|
||||
return infraHostPorts;
|
||||
}
|
||||
|
@ -116,7 +116,7 @@ public class InfraHost extends Infra {
|
|||
/**
|
||||
* @return the infraHostApplications
|
||||
*/
|
||||
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true, mappedBy = "infraHost")
|
||||
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true)
|
||||
public List<InfraHostApplication> getInfraHostApplications() {
|
||||
return infraHostApplications;
|
||||
}
|
||||
|
@ -131,7 +131,7 @@ public class InfraHost extends Infra {
|
|||
/**
|
||||
* @return the infraHostDaemons
|
||||
*/
|
||||
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true, mappedBy = "infraHost")
|
||||
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true)
|
||||
public List<InfraHostDaemon> getInfraHostDaemons() {
|
||||
return infraHostDaemons;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user