From 9764b6bb545a8edd4979c481627c38c1892f207e Mon Sep 17 00:00:00 2001 From: Niranjana Date: Mon, 22 Mar 2021 11:39:08 +0000 Subject: Update schema and format java files Issue-ID: INT-1892 Signed-off-by: Niranjana Change-Id: Ib35c35cf7ac7a858311618e741c9327d7630aed6 --- .../ransim/rest/web/mapper/CellPciValueObj.java | 48 +++++++++++----------- 1 file changed, 25 insertions(+), 23 deletions(-) (limited to 'ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellPciValueObj.java') 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; + } } -- cgit 1.2.3-korg