aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/CreateACellReq.java
diff options
context:
space:
mode:
authorNiranjana <niranjana.y60@wipro.com>2021-03-22 11:39:08 +0000
committerNiranjana <niranjana.y60@wipro.com>2021-03-24 11:31:03 +0000
commit9764b6bb545a8edd4979c481627c38c1892f207e (patch)
treec6b6133144fa7812710f76ced95bbcb243bb9446 /ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/CreateACellReq.java
parent43e39ceab8e35a0a54ae72252b46491f362a0749 (diff)
Update schema and format java files
Issue-ID: INT-1892 Signed-off-by: Niranjana <niranjana.y60@wipro.com> Change-Id: Ib35c35cf7ac7a858311618e741c9327d7630aed6
Diffstat (limited to 'ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/CreateACellReq.java')
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/CreateACellReq.java76
1 files changed, 38 insertions, 38 deletions
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/CreateACellReq.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/CreateACellReq.java
index 618facf..b216e5e 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/CreateACellReq.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/CreateACellReq.java
@@ -24,54 +24,54 @@ import java.io.Serializable;
public class CreateACellReq implements Serializable {
- private long physicalCellId;
+ private long physicalCellId;
- private int gridX;
- private int gridY;
+ private int gridX;
+ private int gridY;
- private static final long serialVersionUID = 3736300675426332512L;
+ private static final long serialVersionUID = 3736300675426332512L;
- public CreateACellReq() {
- // Default constructor for CreateACellReq
- }
+ public CreateACellReq() {
+ // Default constructor for CreateACellReq
+ }
- /**
- * A constructor for CreateACellReq.
- *
- * @param physicalCellId PCI number of the new cell
- * @param gridX x coordinate value for the cell
- * @param gridY y coordinate value for the cell
- */
- public CreateACellReq(long physicalCellId, int gridX, int gridY) {
- super();
+ /**
+ * A constructor for CreateACellReq.
+ *
+ * @param physicalCellId PCI number of the new cell
+ * @param gridX x coordinate value for the cell
+ * @param gridY y coordinate value for the cell
+ */
+ public CreateACellReq(long physicalCellId, int gridX, int gridY) {
+ super();
- this.physicalCellId = physicalCellId;
+ this.physicalCellId = physicalCellId;
- this.gridX = gridX;
- this.gridY = gridY;
- }
+ this.gridX = gridX;
+ this.gridY = gridY;
+ }
- public long getPhysicalCellId() {
- return physicalCellId;
- }
+ public long getPhysicalCellId() {
+ return physicalCellId;
+ }
- public void setPhysicalCellId(long physicalCellId) {
- this.physicalCellId = physicalCellId;
- }
+ public void setPhysicalCellId(long physicalCellId) {
+ this.physicalCellId = physicalCellId;
+ }
- public int getGridX() {
- return gridX;
- }
+ public int getGridX() {
+ return gridX;
+ }
- public void setGridX(int gridX) {
- this.gridX = gridX;
- }
+ public void setGridX(int gridX) {
+ this.gridX = gridX;
+ }
- public int getGridY() {
- return gridY;
- }
+ public int getGridY() {
+ return gridY;
+ }
- public void setGridY(int gridY) {
- this.gridY = gridY;
- }
+ public void setGridY(int gridY) {
+ this.gridY = gridY;
+ }
}