aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcaegen2/services/sonhms/restclient/AnrSolutions.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/dcaegen2/services/sonhms/restclient/AnrSolutions.java')
-rw-r--r--src/main/java/org/onap/dcaegen2/services/sonhms/restclient/AnrSolutions.java16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/main/java/org/onap/dcaegen2/services/sonhms/restclient/AnrSolutions.java b/src/main/java/org/onap/dcaegen2/services/sonhms/restclient/AnrSolutions.java
index 117f202..042603a 100644
--- a/src/main/java/org/onap/dcaegen2/services/sonhms/restclient/AnrSolutions.java
+++ b/src/main/java/org/onap/dcaegen2/services/sonhms/restclient/AnrSolutions.java
@@ -25,14 +25,17 @@ import java.util.ArrayList;
import java.util.List;
public class AnrSolutions {
-
+
String cellId;
List<String> removeableNeighbors = new ArrayList<>();
-
+
public AnrSolutions() {
-
+
}
-
+
+ /**
+ * constructor.
+ */
public AnrSolutions(String cellId, List<String> removeableNeighbors) {
super();
this.cellId = cellId;
@@ -42,19 +45,22 @@ public class AnrSolutions {
public String getCellId() {
return cellId;
}
+
public void setCellId(String cellId) {
this.cellId = cellId;
}
+
public List<String> getRemoveableNeighbors() {
return removeableNeighbors;
}
+
public void setRemoveableNeighbors(List<String> removeableNeighbors) {
this.removeableNeighbors = removeableNeighbors;
}
+
@Override
public String toString() {
return "AnrSolutions [cellId=" + cellId + ", removeableNeighbors=" + removeableNeighbors + "]";
}
-
}