aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellPciValueObj.java
diff options
context:
space:
mode:
Diffstat (limited to 'ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellPciValueObj.java')
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellPciValueObj.java48
1 files changed, 25 insertions, 23 deletions
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellPciValueObj.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellPciValueObj.java
index 03cebc5..8e7c77d 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellPciValueObj.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellPciValueObj.java
@@ -21,28 +21,30 @@
package org.onap.ransim.rest.web.mapper;
public class CellPciValueObj {
-
- private String cellId;
- private long pciValue;
-
-
- public CellPciValueObj(String cellId, long pciValue) {
- super();
- this.cellId = cellId;
- this.pciValue = pciValue;
- }
- public String getCellId() {
- return cellId;
- }
- public void setCellId(String cellId) {
- this.cellId = cellId;
- }
- public long getPciValue() {
- return pciValue;
- }
- public void setPciValue(long pciValue) {
- this.pciValue = pciValue;
- }
-
+
+ private String cellId;
+ private long pciValue;
+
+ public CellPciValueObj(String cellId, long pciValue) {
+ super();
+ this.cellId = cellId;
+ this.pciValue = pciValue;
+ }
+
+ public String getCellId() {
+ return cellId;
+ }
+
+ public void setCellId(String cellId) {
+ this.cellId = cellId;
+ }
+
+ public long getPciValue() {
+ return pciValue;
+ }
+
+ public void setPciValue(long pciValue) {
+ this.pciValue = pciValue;
+ }
}