aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellNbrInfoResponse.java
diff options
context:
space:
mode:
Diffstat (limited to 'ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellNbrInfoResponse.java')
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellNbrInfoResponse.java91
1 files changed, 41 insertions, 50 deletions
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellNbrInfoResponse.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellNbrInfoResponse.java
index cfd5554..65d9a9f 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellNbrInfoResponse.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellNbrInfoResponse.java
@@ -20,58 +20,49 @@
package org.onap.ransim.rest.web.mapper;
-import javax.persistence.Column;
-
import com.fasterxml.jackson.annotation.JsonProperty;
+import javax.persistence.Column;
+
public class CellNbrInfoResponse {
-
-
-
- @JsonProperty("cellId")
- private String cellId;
-
-
-
- @JsonProperty("targetCellId")
- private String targetCellId;
-
- private boolean ho;
-
-
- public CellNbrInfoResponse(String cellId,String targetCellId,boolean ho) {
- this.cellId = cellId;
- this.targetCellId = targetCellId;
- this.ho = ho;
-
-
- }
-
- public String getCellId() {
- return cellId;
- }
-
- public void setCellId(String cellId) {
- this.cellId = cellId;
- }
-
- public String getTargetCellId() {
- return targetCellId;
- }
-
- public void setTargetCellId(String targetCellId) {
- this.targetCellId = targetCellId;
- }
-
- public boolean isHo() {
- return ho;
- }
-
- public void setHo(boolean ho) {
- this.ho = ho;
- }
-
-
-
+
+ @JsonProperty("cellId")
+ private String cellId;
+
+ @JsonProperty("targetCellId")
+ private String targetCellId;
+
+ private boolean ho;
+
+ public CellNbrInfoResponse(String cellId, String targetCellId, boolean ho) {
+ this.cellId = cellId;
+ this.targetCellId = targetCellId;
+ this.ho = ho;
+
+ }
+
+ public String getCellId() {
+ return cellId;
+ }
+
+ public void setCellId(String cellId) {
+ this.cellId = cellId;
+ }
+
+ public String getTargetCellId() {
+ return targetCellId;
+ }
+
+ public void setTargetCellId(String targetCellId) {
+ this.targetCellId = targetCellId;
+ }
+
+ public boolean isHo() {
+ return ho;
+ }
+
+ public void setHo(boolean ho) {
+ this.ho = ho;
+ }
}