From 7934a7d94eaee835e248545b576764b9460cfafa Mon Sep 17 00:00:00 2001 From: crusader Date: Thu, 14 Jun 2018 19:14:26 +0900 Subject: [PATCH] ing --- pom.xml | 2 +- .../java/com/loafle/overflow/model/infra/InfraHost.java | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index eacf40b..366ebee 100644 --- a/pom.xml +++ b/pom.xml @@ -13,7 +13,7 @@ com.loafle.overflow commons-java jar - 1.0.64-SNAPSHOT + 1.0.65-SNAPSHOT com.loafle.overflow.commons-java diff --git a/src/main/java/com/loafle/overflow/model/infra/InfraHost.java b/src/main/java/com/loafle/overflow/model/infra/InfraHost.java index d81ed3d..109c01c 100644 --- a/src/main/java/com/loafle/overflow/model/infra/InfraHost.java +++ b/src/main/java/com/loafle/overflow/model/infra/InfraHost.java @@ -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 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 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 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 getInfraHostDaemons() { return infraHostDaemons; }