aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper
diff options
context:
space:
mode:
Diffstat (limited to 'ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper')
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellData.java178
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellInputPayload.java14
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellNbrInfoResponse.java91
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellObj.java42
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellPciValueObj.java48
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/ErrorData.java57
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBCUCPModel.java129
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBCUUPModel.java145
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBDUModel.java145
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NRCellCUModel.java61
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NRCellDUModel.java169
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NSSAIConfigData.java123
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NSSAIData.java85
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrCellsNetwork.java56
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrCellsNetworkResponse.java62
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrList.java56
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrListResponse.java42
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrObj.java35
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NearRTRICModel.java162
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/PLMNInfoModel.java46
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/RANSliceInfoModel.java165
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/RRMPolicyMemberModel.java42
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/RRMPolicyRatioModel.java163
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/Result.java56
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/SliceProfileModel.java196
25 files changed, 1275 insertions, 1093 deletions
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellData.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellData.java
index 5e8ca87..ae8ffea 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellData.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellData.java
@@ -21,94 +21,94 @@
package org.onap.ransim.rest.web.mapper;
public class CellData {
- private String networkId;
- private String nodeId;
- private Long physicalCellId;
- private String pnfId;
- private String sectorNumber;
- private String latitude;
- private String longitude;
- private String notes;
-
- public CellData() {
-
- }
-
- public CellData(String networkId, String nodeId, Long physicalCellId, String pnfId, String sectorNumber,
- String latitude, String longitude, String notes) {
- super();
- this.networkId = networkId;
- this.nodeId = nodeId;
- this.physicalCellId = physicalCellId;
- this.pnfId = pnfId;
- this.sectorNumber = sectorNumber;
- this.latitude = latitude;
- this.longitude = longitude;
- this.notes = notes;
- }
-
- public String getNetworkId() {
- return networkId;
- }
-
- public void setNetworkId(String networkId) {
- this.networkId = networkId;
- }
-
- public String getNodeId() {
- return nodeId;
- }
-
- public void setNodeId(String nodeId) {
- this.nodeId = nodeId;
- }
-
- public Long getPhysicalCellId() {
- return physicalCellId;
- }
-
- public void setPhysicalCellId(Long physicalCellId) {
- this.physicalCellId = physicalCellId;
- }
-
- public String getPnfId() {
- return pnfId;
- }
-
- public void setPnfId(String pnfId) {
- this.pnfId = pnfId;
- }
-
- public String getSectorNumber() {
- return sectorNumber;
- }
-
- public void setSectorNumber(String sectorNumber) {
- this.sectorNumber = sectorNumber;
- }
-
- public String getLatitude() {
- return latitude;
- }
-
- public void setLatitude(String latitude) {
- this.latitude = latitude;
- }
-
- public String getLongitude() {
- return longitude;
- }
-
- public void setLongitude(String longitude) {
- this.longitude = longitude;
- }
-
- public String getNotes() {
- return notes;
- }
-
- public void setNotes(String notes) {
- this.notes = notes;
- }
+ private String networkId;
+ private String nodeId;
+ private Long physicalCellId;
+ private String pnfId;
+ private String sectorNumber;
+ private String latitude;
+ private String longitude;
+ private String notes;
+
+ public CellData() {
+
+ }
+
+ public CellData(String networkId, String nodeId, Long physicalCellId, String pnfId, String sectorNumber,
+ String latitude, String longitude, String notes) {
+ super();
+ this.networkId = networkId;
+ this.nodeId = nodeId;
+ this.physicalCellId = physicalCellId;
+ this.pnfId = pnfId;
+ this.sectorNumber = sectorNumber;
+ this.latitude = latitude;
+ this.longitude = longitude;
+ this.notes = notes;
+ }
+
+ public String getNetworkId() {
+ return networkId;
+ }
+
+ public void setNetworkId(String networkId) {
+ this.networkId = networkId;
+ }
+
+ public String getNodeId() {
+ return nodeId;
+ }
+
+ public void setNodeId(String nodeId) {
+ this.nodeId = nodeId;
+ }
+
+ public Long getPhysicalCellId() {
+ return physicalCellId;
+ }
+
+ public void setPhysicalCellId(Long physicalCellId) {
+ this.physicalCellId = physicalCellId;
+ }
+
+ public String getPnfId() {
+ return pnfId;
+ }
+
+ public void setPnfId(String pnfId) {
+ this.pnfId = pnfId;
+ }
+
+ public String getSectorNumber() {
+ return sectorNumber;
+ }
+
+ public void setSectorNumber(String sectorNumber) {
+ this.sectorNumber = sectorNumber;
+ }
+
+ public String getLatitude() {
+ return latitude;
+ }
+
+ public void setLatitude(String latitude) {
+ this.latitude = latitude;
+ }
+
+ public String getLongitude() {
+ return longitude;
+ }
+
+ public void setLongitude(String longitude) {
+ this.longitude = longitude;
+ }
+
+ public String getNotes() {
+ return notes;
+ }
+
+ public void setNotes(String notes) {
+ this.notes = notes;
+ }
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellInputPayload.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellInputPayload.java
index 3b8370b..44a2777 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellInputPayload.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellInputPayload.java
@@ -24,14 +24,14 @@ import java.util.List;
public class CellInputPayload {
- List<CellObj> cellList;
+ List<CellObj> cellList;
- public List<CellObj> getCellList() {
- return cellList;
- }
+ public List<CellObj> getCellList() {
+ return cellList;
+ }
- public void setCellList(List<CellObj> cellList) {
- this.cellList = cellList;
- }
+ public void setCellList(List<CellObj> cellList) {
+ this.cellList = cellList;
+ }
}
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;
+ }
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellObj.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellObj.java
index 7214456..f4bb6cf 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellObj.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellObj.java
@@ -20,29 +20,31 @@
package org.onap.ransim.rest.web.mapper;
-import java.util.List;
-
import com.fasterxml.jackson.annotation.JsonProperty;
+import java.util.List;
+
public class CellObj {
-
- @JsonProperty("Cell")
- private CellData cell;
-
- private List<String> neighbor;
-
- public CellData getCell() {
- return cell;
- }
- public void setCell(CellData cell) {
- this.cell = cell;
- }
- public List<String> getNeighbor() {
- return neighbor;
- }
- public void setNeighbor(List<String> neighbor) {
- this.neighbor = neighbor;
- }
+ @JsonProperty("Cell")
+ private CellData cell;
+
+ private List<String> neighbor;
+
+ public CellData getCell() {
+ return cell;
+ }
+
+ public void setCell(CellData cell) {
+ this.cell = cell;
+ }
+
+ public List<String> getNeighbor() {
+ return neighbor;
+ }
+
+ public void setNeighbor(List<String> neighbor) {
+ this.neighbor = neighbor;
+ }
}
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;
+ }
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/ErrorData.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/ErrorData.java
index 09ca96e..605e2df 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/ErrorData.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/ErrorData.java
@@ -21,30 +21,35 @@
package org.onap.ransim.rest.web.mapper;
public enum ErrorData {
- NO_DATA_FOUND("404", "No Data Found"),
- DATA_NOT_STORED("500","Data not Saved"),
- UNEXPECTED_ERROR("500","Exception Occured during the Operation");
-
- private String errorCode;
- private String errorMessage;
- ErrorData(String errorCode, String errorMessage) {
- this.errorCode=errorCode;
- this.errorMessage = errorMessage;
- }
- public String getErrorCode() {
- return errorCode;
- }
- public void setErrorCode(String errorCode) {
- this.errorCode = errorCode;
- }
- public String getErrorMessage() {
- return errorMessage;
- }
- public void setErrorMessage(String errorMessage) {
- this.errorMessage = errorMessage;
- }
- @Override
- public String toString() {
- return "ErrorData [errorCode=" + errorCode + ", errorMessage=" + errorMessage + "]";
- }
+ NO_DATA_FOUND("404", "No Data Found"), DATA_NOT_STORED("500", "Data not Saved"), UNEXPECTED_ERROR("500",
+ "Exception Occured during the Operation");
+
+ private String errorCode;
+ private String errorMessage;
+
+ ErrorData(String errorCode, String errorMessage) {
+ this.errorCode = errorCode;
+ this.errorMessage = errorMessage;
+ }
+
+ public String getErrorCode() {
+ return errorCode;
+ }
+
+ public void setErrorCode(String errorCode) {
+ this.errorCode = errorCode;
+ }
+
+ public String getErrorMessage() {
+ return errorMessage;
+ }
+
+ public void setErrorMessage(String errorMessage) {
+ this.errorMessage = errorMessage;
+ }
+
+ @Override
+ public String toString() {
+ return "ErrorData [errorCode=" + errorCode + ", errorMessage=" + errorMessage + "]";
+ }
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBCUCPModel.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBCUCPModel.java
index 6e1d143..1d538b6 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBCUCPModel.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBCUCPModel.java
@@ -22,61 +22,76 @@ package org.onap.ransim.rest.web.mapper;
import java.util.List;
-public class GNBCUCPModel{
- private String gNBCUName;
- private Integer gNBId;
- private Integer gNBIdLength;
- private String pLMNId;
- private String nFType;
- private List<NRCellCUModel> cellCUList;
- private Integer nearRTRICId;
- public String getgNBCUName() {
- return gNBCUName;
- }
- public void setgNBCUName(String gNBCUName) {
- this.gNBCUName = gNBCUName;
- }
- public Integer getgNBId() {
- return gNBId;
- }
- public void setgNBId(Integer gNBId) {
- this.gNBId = gNBId;
- }
- public Integer getgNBIdLength() {
- return gNBIdLength;
- }
- public void setgNBIdLength(Integer gNBIdLength) {
- this.gNBIdLength = gNBIdLength;
- }
- public String getpLMNId() {
- return pLMNId;
- }
- public void setpLMNId(String pLMNId) {
- this.pLMNId = pLMNId;
- }
- public List<NRCellCUModel> getCellCUList() {
- return cellCUList;
- }
- public void setCellCUList(List<NRCellCUModel> cellCUList) {
- this.cellCUList = cellCUList;
- }
- public Integer getNearRTRICId() {
- return nearRTRICId;
- }
- public void setNearRTRICId(Integer nearRTRICId) {
- this.nearRTRICId = nearRTRICId;
- }
- public String getnFType() {
- return nFType;
- }
- public void setnFType(String nFType) {
- this.nFType = nFType;
- }
- @Override
- public String toString() {
- return "GNBCUCPModel [gNBCUName=" + gNBCUName + ", gNBId=" + gNBId + ", gNBIdLength=" + gNBIdLength
- + ", pLMNId=" + pLMNId + ", nFType=" + nFType + ", cellCUList=" + cellCUList + ", nearRTRICId="
- + nearRTRICId + "]";
- }
-
+public class GNBCUCPModel {
+ private String gNBCUName;
+ private Integer gNBId;
+ private Integer gNBIdLength;
+ private String pLMNId;
+ private String nFType;
+ private List<NRCellCUModel> cellCUList;
+ private Integer nearRTRICId;
+
+ public String getgNBCUName() {
+ return gNBCUName;
+ }
+
+ public void setgNBCUName(String gNBCUName) {
+ this.gNBCUName = gNBCUName;
+ }
+
+ public Integer getgNBId() {
+ return gNBId;
+ }
+
+ public void setgNBId(Integer gNBId) {
+ this.gNBId = gNBId;
+ }
+
+ public Integer getgNBIdLength() {
+ return gNBIdLength;
+ }
+
+ public void setgNBIdLength(Integer gNBIdLength) {
+ this.gNBIdLength = gNBIdLength;
+ }
+
+ public String getpLMNId() {
+ return pLMNId;
+ }
+
+ public void setpLMNId(String pLMNId) {
+ this.pLMNId = pLMNId;
+ }
+
+ public List<NRCellCUModel> getCellCUList() {
+ return cellCUList;
+ }
+
+ public void setCellCUList(List<NRCellCUModel> cellCUList) {
+ this.cellCUList = cellCUList;
+ }
+
+ public Integer getNearRTRICId() {
+ return nearRTRICId;
+ }
+
+ public void setNearRTRICId(Integer nearRTRICId) {
+ this.nearRTRICId = nearRTRICId;
+ }
+
+ public String getnFType() {
+ return nFType;
+ }
+
+ public void setnFType(String nFType) {
+ this.nFType = nFType;
+ }
+
+ @Override
+ public String toString() {
+ return "GNBCUCPModel [gNBCUName=" + gNBCUName + ", gNBId=" + gNBId + ", gNBIdLength=" + gNBIdLength
+ + ", pLMNId=" + pLMNId + ", nFType=" + nFType + ", cellCUList=" + cellCUList + ", nearRTRICId="
+ + nearRTRICId + "]";
+ }
+
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBCUUPModel.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBCUUPModel.java
index 979e9d1..4b750b0 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBCUUPModel.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBCUUPModel.java
@@ -25,68 +25,85 @@ import java.util.List;
import org.onap.ransim.rest.api.models.NearRTRIC;
import org.onap.ransim.rest.api.models.PLMNInfo;
-public class GNBCUUPModel{
- private Integer gNBCUUPId;
- private Integer gNBId;
- private Integer gNBIdLength;
- private List<PLMNInfoModel> pLMNInfoList;
- private String resourceType;
- private String metricKey;
- private Integer metricValue;
- private Integer nearRTRICId;
- public Integer getgNBCUUPId() {
- return gNBCUUPId;
- }
- public void setgNBCUUPId(Integer gNBCUUPId) {
- this.gNBCUUPId = gNBCUUPId;
- }
- public Integer getgNBId() {
- return gNBId;
- }
- public void setgNBId(Integer gNBId) {
- this.gNBId = gNBId;
- }
- public Integer getgNBIdLength() {
- return gNBIdLength;
- }
- public void setgNBIdLength(Integer gNBIdLength) {
- this.gNBIdLength = gNBIdLength;
- }
- public String getResourceType() {
- return resourceType;
- }
- public void setResourceType(String resourceType) {
- this.resourceType = resourceType;
- }
- public String getMetricKey() {
- return metricKey;
- }
- public void setMetricKey(String metricKey) {
- this.metricKey = metricKey;
- }
- public Integer getMetricValue() {
- return metricValue;
- }
- public void setMetricValue(Integer metricValue) {
- this.metricValue = metricValue;
- }
- public List<PLMNInfoModel> getpLMNInfoList() {
- return pLMNInfoList;
- }
- public void setpLMNInfoList(List<PLMNInfoModel> pLMNInfoList) {
- this.pLMNInfoList = pLMNInfoList;
- }
- public Integer getNearRTRICId() {
- return nearRTRICId;
- }
- public void setNearRTRICId(Integer nearRTRICId) {
- this.nearRTRICId = nearRTRICId;
- }
- @Override
- public String toString() {
- return "GNBCUUPModel [gNBCUUPId=" + gNBCUUPId + ", gNBId=" + gNBId + ", gNBIdLength=" + gNBIdLength
- + ", pLMNInfoList=" + pLMNInfoList + ", resourceType=" + resourceType + ", metricKey=" + metricKey
- + ", metricValue=" + metricValue + ", nearRTRICId=" + nearRTRICId + "]";
- }
-
+public class GNBCUUPModel {
+ private Integer gNBCUUPId;
+ private Integer gNBId;
+ private Integer gNBIdLength;
+ private List<PLMNInfoModel> pLMNInfoList;
+ private String resourceType;
+ private String metricKey;
+ private Integer metricValue;
+ private Integer nearRTRICId;
+
+ public Integer getgNBCUUPId() {
+ return gNBCUUPId;
+ }
+
+ public void setgNBCUUPId(Integer gNBCUUPId) {
+ this.gNBCUUPId = gNBCUUPId;
+ }
+
+ public Integer getgNBId() {
+ return gNBId;
+ }
+
+ public void setgNBId(Integer gNBId) {
+ this.gNBId = gNBId;
+ }
+
+ public Integer getgNBIdLength() {
+ return gNBIdLength;
+ }
+
+ public void setgNBIdLength(Integer gNBIdLength) {
+ this.gNBIdLength = gNBIdLength;
+ }
+
+ public String getResourceType() {
+ return resourceType;
+ }
+
+ public void setResourceType(String resourceType) {
+ this.resourceType = resourceType;
+ }
+
+ public String getMetricKey() {
+ return metricKey;
+ }
+
+ public void setMetricKey(String metricKey) {
+ this.metricKey = metricKey;
+ }
+
+ public Integer getMetricValue() {
+ return metricValue;
+ }
+
+ public void setMetricValue(Integer metricValue) {
+ this.metricValue = metricValue;
+ }
+
+ public List<PLMNInfoModel> getpLMNInfoList() {
+ return pLMNInfoList;
+ }
+
+ public void setpLMNInfoList(List<PLMNInfoModel> pLMNInfoList) {
+ this.pLMNInfoList = pLMNInfoList;
+ }
+
+ public Integer getNearRTRICId() {
+ return nearRTRICId;
+ }
+
+ public void setNearRTRICId(Integer nearRTRICId) {
+ this.nearRTRICId = nearRTRICId;
+ }
+
+ @Override
+ public String toString() {
+ return "GNBCUUPModel [gNBCUUPId=" + gNBCUUPId + ", gNBId=" + gNBId + ", gNBIdLength=" + gNBIdLength
+ + ", pLMNInfoList=" + pLMNInfoList + ", resourceType=" + resourceType + ", metricKey=" + metricKey
+ + ", metricValue=" + metricValue + ", nearRTRICId=" + nearRTRICId + "]";
+ }
+
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBDUModel.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBDUModel.java
index 9b0b48d..8e2ba96 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBDUModel.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBDUModel.java
@@ -22,69 +22,84 @@ package org.onap.ransim.rest.web.mapper;
import java.util.List;
-public class GNBDUModel{
- private Integer gNBDUId;
- private Integer gNBId;
- private Integer gNBIdLength;
- private String gNBDUName;
- private String pLMNId;
- private String nFType;
- private List<NRCellDUModel> cellDUList;
- private Integer nearRTRICId;
- public Integer getgNBDUId() {
- return gNBDUId;
- }
- public void setgNBDUId(Integer gNBDUId) {
- this.gNBDUId = gNBDUId;
- }
- public Integer getgNBId() {
- return gNBId;
- }
- public void setgNBId(Integer gNBId) {
- this.gNBId = gNBId;
- }
- public Integer getgNBIdLength() {
- return gNBIdLength;
- }
- public void setgNBIdLength(Integer gNBIdLength) {
- this.gNBIdLength = gNBIdLength;
- }
- public String getgNBDUName() {
- return gNBDUName;
- }
- public void setgNBDUName(String gNBDUName) {
- this.gNBDUName = gNBDUName;
- }
- public String getpLMNId() {
- return pLMNId;
- }
- public void setpLMNId(String pLMNId) {
- this.pLMNId = pLMNId;
- }
-
- public List<NRCellDUModel> getCellDUList() {
- return cellDUList;
- }
- public void setCellDUList(List<NRCellDUModel> cellDUList) {
- this.cellDUList = cellDUList;
- }
-
- public Integer getNearRTRICId() {
- return nearRTRICId;
- }
- public void setNearRTRICId(Integer nearRTRICId) {
- this.nearRTRICId = nearRTRICId;
- }
- public String getnFType() {
- return nFType;
- }
- public void setnFType(String nFType) {
- this.nFType = nFType;
- }
- @Override
- public String toString() {
- return "GNBDUModel [gNBDUId=" + gNBDUId + ", gNBId=" + gNBId + ", gNBIdLength=" + gNBIdLength + ", gNBDUName="
- + gNBDUName + ", pLMNId=" + pLMNId + ", nFType=" + nFType + ", cellDUList=" + cellDUList
- + ", nearRTRICId=" + nearRTRICId + "]";
- }
+public class GNBDUModel {
+ private Integer gNBDUId;
+ private Integer gNBId;
+ private Integer gNBIdLength;
+ private String gNBDUName;
+ private String pLMNId;
+ private String nFType;
+ private List<NRCellDUModel> cellDUList;
+ private Integer nearRTRICId;
+
+ public Integer getgNBDUId() {
+ return gNBDUId;
+ }
+
+ public void setgNBDUId(Integer gNBDUId) {
+ this.gNBDUId = gNBDUId;
+ }
+
+ public Integer getgNBId() {
+ return gNBId;
+ }
+
+ public void setgNBId(Integer gNBId) {
+ this.gNBId = gNBId;
+ }
+
+ public Integer getgNBIdLength() {
+ return gNBIdLength;
+ }
+
+ public void setgNBIdLength(Integer gNBIdLength) {
+ this.gNBIdLength = gNBIdLength;
+ }
+
+ public String getgNBDUName() {
+ return gNBDUName;
+ }
+
+ public void setgNBDUName(String gNBDUName) {
+ this.gNBDUName = gNBDUName;
+ }
+
+ public String getpLMNId() {
+ return pLMNId;
+ }
+
+ public void setpLMNId(String pLMNId) {
+ this.pLMNId = pLMNId;
+ }
+
+ public List<NRCellDUModel> getCellDUList() {
+ return cellDUList;
+ }
+
+ public void setCellDUList(List<NRCellDUModel> cellDUList) {
+ this.cellDUList = cellDUList;
+ }
+
+ public Integer getNearRTRICId() {
+ return nearRTRICId;
+ }
+
+ public void setNearRTRICId(Integer nearRTRICId) {
+ this.nearRTRICId = nearRTRICId;
+ }
+
+ public String getnFType() {
+ return nFType;
+ }
+
+ public void setnFType(String nFType) {
+ this.nFType = nFType;
+ }
+
+ @Override
+ public String toString() {
+ return "GNBDUModel [gNBDUId=" + gNBDUId + ", gNBId=" + gNBId + ", gNBIdLength=" + gNBIdLength + ", gNBDUName="
+ + gNBDUName + ", pLMNId=" + pLMNId + ", nFType=" + nFType + ", cellDUList=" + cellDUList
+ + ", nearRTRICId=" + nearRTRICId + "]";
+ }
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NRCellCUModel.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NRCellCUModel.java
index 5fe59d9..0ee438b 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NRCellCUModel.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NRCellCUModel.java
@@ -22,31 +22,38 @@ package org.onap.ransim.rest.web.mapper;
import java.util.List;
-public class NRCellCUModel{
- private Integer cellLocalId;
- private List<PLMNInfoModel> pLMNInfoList;
- private String resourceType;
- public Integer getCellLocalId() {
- return cellLocalId;
- }
- public void setCellLocalId(Integer cellLocalId) {
- this.cellLocalId = cellLocalId;
- }
- public List<PLMNInfoModel> getpLMNInfoList() {
- return pLMNInfoList;
- }
- public void setpLMNInfoList(List<PLMNInfoModel> pLMNInfoList) {
- this.pLMNInfoList = pLMNInfoList;
- }
- public String getResourceType() {
- return resourceType;
- }
- public void setResourceType(String resourceType) {
- this.resourceType = resourceType;
- }
- @Override
- public String toString() {
- return "NRCellCUModel [cellLocalId=" + cellLocalId + ", pLMNInfoList=" + pLMNInfoList + ", resourceType="
- + resourceType + "]";
- }
+public class NRCellCUModel {
+ private Integer cellLocalId;
+ private List<PLMNInfoModel> pLMNInfoList;
+ private String resourceType;
+
+ public Integer getCellLocalId() {
+ return cellLocalId;
+ }
+
+ public void setCellLocalId(Integer cellLocalId) {
+ this.cellLocalId = cellLocalId;
+ }
+
+ public List<PLMNInfoModel> getpLMNInfoList() {
+ return pLMNInfoList;
+ }
+
+ public void setpLMNInfoList(List<PLMNInfoModel> pLMNInfoList) {
+ this.pLMNInfoList = pLMNInfoList;
+ }
+
+ public String getResourceType() {
+ return resourceType;
+ }
+
+ public void setResourceType(String resourceType) {
+ this.resourceType = resourceType;
+ }
+
+ @Override
+ public String toString() {
+ return "NRCellCUModel [cellLocalId=" + cellLocalId + ", pLMNInfoList=" + pLMNInfoList + ", resourceType="
+ + resourceType + "]";
+ }
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NRCellDUModel.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NRCellDUModel.java
index 5340eeb..3e3576a 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NRCellDUModel.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NRCellDUModel.java
@@ -24,80 +24,95 @@ import java.util.List;
import javax.persistence.Column;
-public class NRCellDUModel{
- private Integer cellLocalId;
- private String operationalState;
- private String administrativeState;
- private String cellState;
- private List<PLMNInfoModel> pLMNInfoList;
- private Integer nRPCI;
- private Integer nRTAC;
- private String resourceType;
- private Integer prbs;
-
- public Integer getCellLocalId() {
- return cellLocalId;
- }
- public void setCellLocalId(Integer cellLocalId) {
- this.cellLocalId = cellLocalId;
- }
- public List<PLMNInfoModel> getpLMNInfoList() {
- return pLMNInfoList;
- }
- public void setpLMNInfoList(List<PLMNInfoModel> pLMNInfoList) {
- this.pLMNInfoList = pLMNInfoList;
- }
- public String getOperationalState() {
- return operationalState;
- }
- public void setOperationalState(String operationalState) {
- this.operationalState = operationalState;
- }
- public String getAdministrativeState() {
- return administrativeState;
- }
- public void setAdministrativeState(String administrativeState) {
- this.administrativeState = administrativeState;
- }
- public String getCellState() {
- return cellState;
- }
- public void setCellState(String cellState) {
- this.cellState = cellState;
- }
- public Integer getnRPCI() {
- return nRPCI;
- }
- public void setnRPCI(Integer nRPCI) {
- this.nRPCI = nRPCI;
- }
- public Integer getnRTAC() {
- return nRTAC;
- }
- public void setnRTAC(Integer nRTAC) {
- this.nRTAC = nRTAC;
- }
- public String getResourceType() {
- return resourceType;
- }
- public void setResourceType(String resourceType) {
- this.resourceType = resourceType;
- }
-
- public Integer getPrbs() {
- return prbs;
- }
- public void setPrbs(Integer prbs) {
- this.prbs = prbs;
- }
-
- @Override
- public String toString() {
- return "NRCellDUModel [cellLocalId=" + cellLocalId + ", operationalState=" + operationalState
- + ", administrativeState=" + administrativeState + ", cellState=" + cellState + ", pLMNInfoList="
- + pLMNInfoList + ", nRPCI=" + nRPCI + ", nRTAC=" + nRTAC + ", resourceType=" + resourceType + ", prbs="
- + prbs + "]";
- }
-
-
- }
+public class NRCellDUModel {
+ private Integer cellLocalId;
+ private String operationalState;
+ private String administrativeState;
+ private String cellState;
+ private List<PLMNInfoModel> pLMNInfoList;
+ private Integer nRPCI;
+ private Integer nRTAC;
+ private String resourceType;
+ private Integer prbs;
+
+ public Integer getCellLocalId() {
+ return cellLocalId;
+ }
+
+ public void setCellLocalId(Integer cellLocalId) {
+ this.cellLocalId = cellLocalId;
+ }
+
+ public List<PLMNInfoModel> getpLMNInfoList() {
+ return pLMNInfoList;
+ }
+
+ public void setpLMNInfoList(List<PLMNInfoModel> pLMNInfoList) {
+ this.pLMNInfoList = pLMNInfoList;
+ }
+
+ public String getOperationalState() {
+ return operationalState;
+ }
+
+ public void setOperationalState(String operationalState) {
+ this.operationalState = operationalState;
+ }
+
+ public String getAdministrativeState() {
+ return administrativeState;
+ }
+
+ public void setAdministrativeState(String administrativeState) {
+ this.administrativeState = administrativeState;
+ }
+
+ public String getCellState() {
+ return cellState;
+ }
+
+ public void setCellState(String cellState) {
+ this.cellState = cellState;
+ }
+
+ public Integer getnRPCI() {
+ return nRPCI;
+ }
+
+ public void setnRPCI(Integer nRPCI) {
+ this.nRPCI = nRPCI;
+ }
+
+ public Integer getnRTAC() {
+ return nRTAC;
+ }
+
+ public void setnRTAC(Integer nRTAC) {
+ this.nRTAC = nRTAC;
+ }
+
+ public String getResourceType() {
+ return resourceType;
+ }
+
+ public void setResourceType(String resourceType) {
+ this.resourceType = resourceType;
+ }
+
+ public Integer getPrbs() {
+ return prbs;
+ }
+
+ public void setPrbs(Integer prbs) {
+ this.prbs = prbs;
+ }
+
+ @Override
+ public String toString() {
+ return "NRCellDUModel [cellLocalId=" + cellLocalId + ", operationalState=" + operationalState
+ + ", administrativeState=" + administrativeState + ", cellState=" + cellState + ", pLMNInfoList="
+ + pLMNInfoList + ", nRPCI=" + nRPCI + ", nRTAC=" + nRTAC + ", resourceType=" + resourceType + ", prbs="
+ + prbs + "]";
+ }
+
+}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NSSAIConfigData.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NSSAIConfigData.java
index 0b3681f..c49d1c8 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NSSAIConfigData.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NSSAIConfigData.java
@@ -1,57 +1,66 @@
-/*
- * ============LICENSE_START=======================================================
- * Ran Simulator Controller
- * ================================================================================
- * Copyright (C) 2020-2021 Wipro Limited.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-
-package org.onap.ransim.rest.web.mapper;
-
-public class NSSAIConfigData{
- private Integer dLThptPerSlice;
- private Integer uLThptPerSlice;
- private Integer maxNumberOfConns;
- private String lastUpdatedTS;
- public Integer getdLThptPerSlice() {
- return dLThptPerSlice;
- }
- public void setdLThptPerSlice(Integer dLThptPerSlice) {
- this.dLThptPerSlice = dLThptPerSlice;
- }
- public Integer getuLThptPerSlice() {
- return uLThptPerSlice;
- }
- public void setuLThptPerSlice(Integer uLThptPerSlice) {
- this.uLThptPerSlice = uLThptPerSlice;
- }
- public Integer getMaxNumberOfConns() {
- return maxNumberOfConns;
- }
- public void setMaxNumberOfConns(Integer maxNumberOfConns) {
- this.maxNumberOfConns = maxNumberOfConns;
- }
- public String getLastUpdatedTS() {
- return lastUpdatedTS;
- }
- public void setLastUpdatedTS(String lastUpdatedTS) {
- this.lastUpdatedTS = lastUpdatedTS;
- }
- @Override
- public String toString() {
- return "NSSAIConfigData [dLThptPerSlice=" + dLThptPerSlice + ", uLThptPerSlice=" + uLThptPerSlice
- + ", maxNumberOfConns=" + maxNumberOfConns + ", lastUpdatedTS=" + lastUpdatedTS + "]";
- }
-}
+/*
+ * ============LICENSE_START=======================================================
+ * Ran Simulator Controller
+ * ================================================================================
+ * Copyright (C) 2020-2021 Wipro Limited.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.ransim.rest.web.mapper;
+
+public class NSSAIConfigData {
+ private Integer dLThptPerSlice;
+ private Integer uLThptPerSlice;
+ private Integer maxNumberOfConns;
+ private String lastUpdatedTS;
+
+ public Integer getdLThptPerSlice() {
+ return dLThptPerSlice;
+ }
+
+ public void setdLThptPerSlice(Integer dLThptPerSlice) {
+ this.dLThptPerSlice = dLThptPerSlice;
+ }
+
+ public Integer getuLThptPerSlice() {
+ return uLThptPerSlice;
+ }
+
+ public void setuLThptPerSlice(Integer uLThptPerSlice) {
+ this.uLThptPerSlice = uLThptPerSlice;
+ }
+
+ public Integer getMaxNumberOfConns() {
+ return maxNumberOfConns;
+ }
+
+ public void setMaxNumberOfConns(Integer maxNumberOfConns) {
+ this.maxNumberOfConns = maxNumberOfConns;
+ }
+
+ public String getLastUpdatedTS() {
+ return lastUpdatedTS;
+ }
+
+ public void setLastUpdatedTS(String lastUpdatedTS) {
+ this.lastUpdatedTS = lastUpdatedTS;
+ }
+
+ @Override
+ public String toString() {
+ return "NSSAIConfigData [dLThptPerSlice=" + dLThptPerSlice + ", uLThptPerSlice=" + uLThptPerSlice
+ + ", maxNumberOfConns=" + maxNumberOfConns + ", lastUpdatedTS=" + lastUpdatedTS + "]";
+ }
+}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NSSAIData.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NSSAIData.java
index 364795e..d114a08 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NSSAIData.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NSSAIData.java
@@ -20,44 +20,53 @@
package org.onap.ransim.rest.web.mapper;
-
import org.onap.ransim.rest.api.models.NSSAIConfig;
-public class NSSAIData{
- private String sNSSAI;
- private String status;
- private String globalSubscriberId;
- private String subscriptionServiceType;
- //private Map<String, Integer> configData;
- private NSSAIConfig configData;
- public String getsNSSAI() {
- return sNSSAI;
- }
- public void setsNSSAI(String sNSSAI) {
- this.sNSSAI = sNSSAI;
- }
- public String getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- public String getGlobalSubscriberId() {
- return globalSubscriberId;
- }
- public void setGlobalSubscriberId(String globalSubscriberId) {
- this.globalSubscriberId = globalSubscriberId;
- }
- public String getSubscriptionServiceType() {
- return subscriptionServiceType;
- }
- public void setSubscriptionServiceType(String subscriptionServiceType) {
- this.subscriptionServiceType = subscriptionServiceType;
- }
- public NSSAIConfig getConfigData() {
- return configData;
- }
- public void setConfigData(NSSAIConfig configData) {
- this.configData = configData;
- }
+public class NSSAIData {
+ private String sNSSAI;
+ private String status;
+ private String globalSubscriberId;
+ private String subscriptionServiceType;
+ // private Map<String, Integer> configData;
+ private NSSAIConfig configData;
+
+ public String getsNSSAI() {
+ return sNSSAI;
+ }
+
+ public void setsNSSAI(String sNSSAI) {
+ this.sNSSAI = sNSSAI;
+ }
+
+ public String getStatus() {
+ return status;
+ }
+
+ public void setStatus(String status) {
+ this.status = status;
+ }
+
+ public String getGlobalSubscriberId() {
+ return globalSubscriberId;
+ }
+
+ public void setGlobalSubscriberId(String globalSubscriberId) {
+ this.globalSubscriberId = globalSubscriberId;
+ }
+
+ public String getSubscriptionServiceType() {
+ return subscriptionServiceType;
+ }
+
+ public void setSubscriptionServiceType(String subscriptionServiceType) {
+ this.subscriptionServiceType = subscriptionServiceType;
+ }
+
+ public NSSAIConfig getConfigData() {
+ return configData;
+ }
+
+ public void setConfigData(NSSAIConfig configData) {
+ this.configData = configData;
+ }
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrCellsNetwork.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrCellsNetwork.java
index 8b207b3..995c503 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrCellsNetwork.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrCellsNetwork.java
@@ -23,32 +23,34 @@ package org.onap.ransim.rest.web.mapper;
import java.util.List;
public class NbrCellsNetwork {
- //param
-
- private String targetCellId;
- private long pciValue;
- private boolean ho;
-
-
- public String getTargetCellId() {
- return targetCellId;
- }
- public void setTargetCellId(String targetCellId) {
- this.targetCellId = targetCellId;
- }
- public long getPciValue() {
- return pciValue;
- }
- public void setPciValue(long pciValue) {
- this.pciValue = pciValue;
- }
- public boolean isHo() {
- return ho;
- }
- public void setHo(boolean ho) {
- this.ho = ho;
- }
-
-
+ // param
+
+ private String targetCellId;
+ private long pciValue;
+ private boolean ho;
+
+ public String getTargetCellId() {
+ return targetCellId;
+ }
+
+ public void setTargetCellId(String targetCellId) {
+ this.targetCellId = targetCellId;
+ }
+
+ public long getPciValue() {
+ return pciValue;
+ }
+
+ public void setPciValue(long pciValue) {
+ this.pciValue = pciValue;
+ }
+
+ public boolean isHo() {
+ return ho;
+ }
+
+ public void setHo(boolean ho) {
+ this.ho = ho;
+ }
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrCellsNetworkResponse.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrCellsNetworkResponse.java
index 24c0296..00dc861 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrCellsNetworkResponse.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrCellsNetworkResponse.java
@@ -20,38 +20,40 @@
package org.onap.ransim.rest.web.mapper;
-import java.util.List;
-
import com.fasterxml.jackson.annotation.JsonProperty;
+import java.util.List;
+
public class NbrCellsNetworkResponse {
-
- private String networkId;
- //private List<NbrCellsNetwork> NbrCellsNetworkObjList;
- @JsonProperty("cellsNbrList")
- private List<NbrListResponse> cellsNbrList;
- public String getNetworkId() {
- return networkId;
- }
- public void setNetworkId(String networkId) {
- this.networkId = networkId;
- }
- public List<NbrListResponse> getCellsNbrList() {
- return cellsNbrList;
- }
- public void setCellsNbrList(List<NbrListResponse> cellsNbrList) {
- this.cellsNbrList = cellsNbrList;
- }
-
-
-
- /*public List<NbrCellsNetwork> getNbrCellsNetworkObjList() {
- return NbrCellsNetworkObjList;
- }
- public void setNbrCellsNetworkObjList(List<NbrCellsNetwork> nbrCellsNetworkObjList) {
- NbrCellsNetworkObjList = nbrCellsNetworkObjList;
- }*/
-
-
+
+ private String networkId;
+ // private List<NbrCellsNetwork> NbrCellsNetworkObjList;
+ @JsonProperty("cellsNbrList")
+ private List<NbrListResponse> cellsNbrList;
+
+ public String getNetworkId() {
+ return networkId;
+ }
+
+ public void setNetworkId(String networkId) {
+ this.networkId = networkId;
+ }
+
+ public List<NbrListResponse> getCellsNbrList() {
+ return cellsNbrList;
+ }
+
+ public void setCellsNbrList(List<NbrListResponse> cellsNbrList) {
+ this.cellsNbrList = cellsNbrList;
+ }
+
+ /*
+ * public List<NbrCellsNetwork> getNbrCellsNetworkObjList() {
+ * return NbrCellsNetworkObjList;
+ * }
+ * public void setNbrCellsNetworkObjList(List<NbrCellsNetwork> nbrCellsNetworkObjList) {
+ * NbrCellsNetworkObjList = nbrCellsNetworkObjList;
+ * }
+ */
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrList.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrList.java
index b13f7fd..ee0f786 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrList.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrList.java
@@ -23,32 +23,34 @@ package org.onap.ransim.rest.web.mapper;
import java.util.List;
public class NbrList {
- //param
-
- private String targetCellId;
- private long pciValue;
- private boolean ho;
-
-
- public String getTargetCellId() {
- return targetCellId;
- }
- public void setTargetCellId(String targetCellId) {
- this.targetCellId = targetCellId;
- }
- public long getPciValue() {
- return pciValue;
- }
- public void setPciValue(long pciValue) {
- this.pciValue = pciValue;
- }
- public boolean isHo() {
- return ho;
- }
- public void setHo(boolean ho) {
- this.ho = ho;
- }
-
-
+ // param
+
+ private String targetCellId;
+ private long pciValue;
+ private boolean ho;
+
+ public String getTargetCellId() {
+ return targetCellId;
+ }
+
+ public void setTargetCellId(String targetCellId) {
+ this.targetCellId = targetCellId;
+ }
+
+ public long getPciValue() {
+ return pciValue;
+ }
+
+ public void setPciValue(long pciValue) {
+ this.pciValue = pciValue;
+ }
+
+ public boolean isHo() {
+ return ho;
+ }
+
+ public void setHo(boolean ho) {
+ this.ho = ho;
+ }
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrListResponse.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrListResponse.java
index 8cce96d..6d7448a 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrListResponse.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrListResponse.java
@@ -18,32 +18,34 @@
* ============LICENSE_END=========================================================
*/
-
-package org.onap.ransim.rest.web.mapper;
+package org.onap.ransim.rest.web.mapper;
import java.util.List;
+
/**
- *
+ *
* Response Mapper class for NbrList
*
*/
public class NbrListResponse {
-
- private String cellId;
- private List<NbrList> nbrList;
- public String getCellId() {
- return cellId;
- }
- public void setCellId(String cellId) {
- this.cellId = cellId;
- }
- public List<NbrList> getNbrList() {
- return nbrList;
- }
- public void setNbrList(List<NbrList> nbrList) {
- this.nbrList = nbrList;
- }
-
-
+
+ private String cellId;
+ private List<NbrList> nbrList;
+
+ public String getCellId() {
+ return cellId;
+ }
+
+ public void setCellId(String cellId) {
+ this.cellId = cellId;
+ }
+
+ public List<NbrList> getNbrList() {
+ return nbrList;
+ }
+
+ public void setNbrList(List<NbrList> nbrList) {
+ this.nbrList = nbrList;
+ }
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrObj.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrObj.java
index 9fd8f38..df15cf8 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrObj.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrObj.java
@@ -21,22 +21,23 @@
package org.onap.ransim.rest.web.mapper;
public class NbrObj {
- private String targetCellId;
- private boolean ho;
-
- 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;
- }
-
-
+ private String targetCellId;
+ private boolean ho;
+
+ 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;
+ }
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NearRTRICModel.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NearRTRICModel.java
index 57ec2d8..c29abda 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NearRTRICModel.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NearRTRICModel.java
@@ -22,76 +22,94 @@ package org.onap.ransim.rest.web.mapper;
import java.util.List;
-public class NearRTRICModel{
- private Integer nearRTRICId;
- private Integer gNBId;
- private List<String> trackingArea;
- private String resourceType;
- private List<GNBCUCPModel> gNBCUCPList;
- private List<GNBCUUPModel> gNBCUUPList;
- private List<GNBDUModel> gNBDUList;
- private List<String> ranNFNSSIList;
- private List<PLMNInfoModel> pLMNInfoList;
- public Integer getNearRTRICId() {
- return nearRTRICId;
- }
- public void setNearRTRICId(Integer nearRTRICId) {
- this.nearRTRICId = nearRTRICId;
- }
- public Integer getgNBId() {
- return gNBId;
- }
- public void setgNBId(Integer gNBId) {
- this.gNBId = gNBId;
- }
- public List<String> getTrackingArea() {
- return trackingArea;
- }
- public void setTrackingArea(List<String> trackingArea) {
- this.trackingArea = trackingArea;
- }
- public String getResourceType() {
- return resourceType;
- }
- public void setResourceType(String resourceType) {
- this.resourceType = resourceType;
- }
-
- public List<String> getRanNFNSSIList() {
- return ranNFNSSIList;
- }
- public void setRanNFNSSIList(List<String> ranNFNSSIList) {
- this.ranNFNSSIList = ranNFNSSIList;
- }
- public List<GNBCUCPModel> getgNBCUCPList() {
- return gNBCUCPList;
- }
- public void setgNBCUCPList(List<GNBCUCPModel> gNBCUCPList) {
- this.gNBCUCPList = gNBCUCPList;
- }
- public List<GNBCUUPModel> getgNBCUUPList() {
- return gNBCUUPList;
- }
- public void setgNBCUUPList(List<GNBCUUPModel> gNBCUUPList) {
- this.gNBCUUPList = gNBCUUPList;
- }
- public List<GNBDUModel> getgNBDUList() {
- return gNBDUList;
- }
- public void setgNBDUList(List<GNBDUModel> gNBDUList) {
- this.gNBDUList = gNBDUList;
- }
- public List<PLMNInfoModel> getpLMNInfoList() {
- return pLMNInfoList;
- }
- public void setpLMNInfoList(List<PLMNInfoModel> pLMNInfoList) {
- this.pLMNInfoList = pLMNInfoList;
- }
- @Override
- public String toString() {
- return "NearRTRICModel [nearRTRICId=" + nearRTRICId + ", gNBId=" + gNBId + ", trackingArea=" + trackingArea
- + ", resourceType=" + resourceType + ", gNBCUCPList=" + gNBCUCPList + ", gNBCUUPList=" + gNBCUUPList
- + ", gNBDUList=" + gNBDUList + ", ranNFNSSIList=" + ranNFNSSIList + ", pLMNInfoList=" + pLMNInfoList
- + "]";
- }
+public class NearRTRICModel {
+ private Integer nearRTRICId;
+ private Integer gNBId;
+ private List<String> trackingArea;
+ private String resourceType;
+ private List<GNBCUCPModel> gNBCUCPList;
+ private List<GNBCUUPModel> gNBCUUPList;
+ private List<GNBDUModel> gNBDUList;
+ private List<String> ranNFNSSIList;
+ private List<PLMNInfoModel> pLMNInfoList;
+
+ public Integer getNearRTRICId() {
+ return nearRTRICId;
+ }
+
+ public void setNearRTRICId(Integer nearRTRICId) {
+ this.nearRTRICId = nearRTRICId;
+ }
+
+ public Integer getgNBId() {
+ return gNBId;
+ }
+
+ public void setgNBId(Integer gNBId) {
+ this.gNBId = gNBId;
+ }
+
+ public List<String> getTrackingArea() {
+ return trackingArea;
+ }
+
+ public void setTrackingArea(List<String> trackingArea) {
+ this.trackingArea = trackingArea;
+ }
+
+ public String getResourceType() {
+ return resourceType;
+ }
+
+ public void setResourceType(String resourceType) {
+ this.resourceType = resourceType;
+ }
+
+ public List<String> getRanNFNSSIList() {
+ return ranNFNSSIList;
+ }
+
+ public void setRanNFNSSIList(List<String> ranNFNSSIList) {
+ this.ranNFNSSIList = ranNFNSSIList;
+ }
+
+ public List<GNBCUCPModel> getgNBCUCPList() {
+ return gNBCUCPList;
+ }
+
+ public void setgNBCUCPList(List<GNBCUCPModel> gNBCUCPList) {
+ this.gNBCUCPList = gNBCUCPList;
+ }
+
+ public List<GNBCUUPModel> getgNBCUUPList() {
+ return gNBCUUPList;
+ }
+
+ public void setgNBCUUPList(List<GNBCUUPModel> gNBCUUPList) {
+ this.gNBCUUPList = gNBCUUPList;
+ }
+
+ public List<GNBDUModel> getgNBDUList() {
+ return gNBDUList;
+ }
+
+ public void setgNBDUList(List<GNBDUModel> gNBDUList) {
+ this.gNBDUList = gNBDUList;
+ }
+
+ public List<PLMNInfoModel> getpLMNInfoList() {
+ return pLMNInfoList;
+ }
+
+ public void setpLMNInfoList(List<PLMNInfoModel> pLMNInfoList) {
+ this.pLMNInfoList = pLMNInfoList;
+ }
+
+ @Override
+ public String toString() {
+ return "NearRTRICModel [nearRTRICId=" + nearRTRICId + ", gNBId=" + gNBId + ", trackingArea=" + trackingArea
+ + ", resourceType=" + resourceType + ", gNBCUCPList=" + gNBCUCPList + ", gNBCUUPList=" + gNBCUUPList
+ + ", gNBDUList=" + gNBDUList + ", ranNFNSSIList=" + ranNFNSSIList + ", pLMNInfoList=" + pLMNInfoList
+ + "]";
+ }
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/PLMNInfoModel.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/PLMNInfoModel.java
index 6bbc0ca..3bddf1a 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/PLMNInfoModel.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/PLMNInfoModel.java
@@ -20,25 +20,29 @@
package org.onap.ransim.rest.web.mapper;
-public class PLMNInfoModel{
- private String pLMNId;
- private NSSAIData sNSSAI;
-
- public String getpLMNId() {
- return pLMNId;
- }
- public void setpLMNId(String pLMNId) {
- this.pLMNId = pLMNId;
- }
- public NSSAIData getsNSSAI() {
- return sNSSAI;
- }
- public void setsNSSAI(NSSAIData sNSSAI) {
- this.sNSSAI = sNSSAI;
- }
- @Override
- public String toString() {
- return "PLMNInfoModel [pLMNId=" + pLMNId + ", sNSSAI=" + sNSSAI + "]";
- }
-
+public class PLMNInfoModel {
+ private String pLMNId;
+ private NSSAIData sNSSAI;
+
+ public String getpLMNId() {
+ return pLMNId;
+ }
+
+ public void setpLMNId(String pLMNId) {
+ this.pLMNId = pLMNId;
+ }
+
+ public NSSAIData getsNSSAI() {
+ return sNSSAI;
+ }
+
+ public void setsNSSAI(NSSAIData sNSSAI) {
+ this.sNSSAI = sNSSAI;
+ }
+
+ @Override
+ public String toString() {
+ return "PLMNInfoModel [pLMNId=" + pLMNId + ", sNSSAI=" + sNSSAI + "]";
+ }
+
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/RANSliceInfoModel.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/RANSliceInfoModel.java
index d04caad..610309b 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/RANSliceInfoModel.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/RANSliceInfoModel.java
@@ -23,77 +23,96 @@ package org.onap.ransim.rest.web.mapper;
import java.io.Serializable;
import java.util.List;
-public class RANSliceInfoModel implements Serializable{
- private static final long serialVersionUID = 1L;
- private String ranNFNSSIId;
- private List<String> ranNSSIList;
- private List<String> nSSAIList;
- private List<SliceProfileModel> sliceProfilesList;
- private String trackingAreaList;
- private String subnetStatus;
- private String nsstId;
- private String sliceType;
- private String isShareable;
- public String getRanNFNSSIId() {
- return ranNFNSSIId;
- }
- public void setRanNFNSSIId(String ranNFNSSIId) {
- this.ranNFNSSIId = ranNFNSSIId;
- }
- public List<String> getRanNSSIList() {
- return ranNSSIList;
- }
- public void setRanNSSIList(List<String> ranNSSIList) {
- this.ranNSSIList = ranNSSIList;
- }
-
- public String getTrackingAreaList() {
- return trackingAreaList;
- }
- public void setTrackingAreaList(String trackingAreaList) {
- this.trackingAreaList = trackingAreaList;
- }
- public String getSubnetStatus() {
- return subnetStatus;
- }
- public void setSubnetStatus(String subnetStatus) {
- this.subnetStatus = subnetStatus;
- }
- public String getNsstId() {
- return nsstId;
- }
- public void setNsstId(String nsstId) {
- this.nsstId = nsstId;
- }
- public String getSliceType() {
- return sliceType;
- }
- public void setSliceType(String sliceType) {
- this.sliceType = sliceType;
- }
- public String getIsShareable() {
- return isShareable;
- }
- public List<String> getnSSAIList() {
- return nSSAIList;
- }
- public void setnSSAIList(List<String> nSSAIList) {
- this.nSSAIList = nSSAIList;
- }
- public List<SliceProfileModel> getSliceProfilesList() {
- return sliceProfilesList;
- }
- public void setSliceProfilesList(List<SliceProfileModel> sliceProfilesList) {
- this.sliceProfilesList = sliceProfilesList;
- }
- public void setIsShareable(String isShareable) {
- this.isShareable = isShareable;
- }
- @Override
- public String toString() {
- return "RANSliceInfoModel [ranNFNSSIId=" + ranNFNSSIId + ", ranNSSIList=" + ranNSSIList + ", nSSAIList=" + nSSAIList + ", sliceProfilesList=" + sliceProfilesList + ", trackingAreaList="
- + trackingAreaList + ", subnetStatus=" + subnetStatus + ", nsstId=" + nsstId + ", sliceType="
- + sliceType + ", isShareable=" + isShareable + "]";
- }
-
+public class RANSliceInfoModel implements Serializable {
+ private static final long serialVersionUID = 1L;
+ private String ranNFNSSIId;
+ private List<String> ranNSSIList;
+ private List<String> nSSAIList;
+ private List<SliceProfileModel> sliceProfilesList;
+ private String trackingAreaList;
+ private String subnetStatus;
+ private String nsstId;
+ private String sliceType;
+ private String isShareable;
+
+ public String getRanNFNSSIId() {
+ return ranNFNSSIId;
+ }
+
+ public void setRanNFNSSIId(String ranNFNSSIId) {
+ this.ranNFNSSIId = ranNFNSSIId;
+ }
+
+ public List<String> getRanNSSIList() {
+ return ranNSSIList;
+ }
+
+ public void setRanNSSIList(List<String> ranNSSIList) {
+ this.ranNSSIList = ranNSSIList;
+ }
+
+ public String getTrackingAreaList() {
+ return trackingAreaList;
+ }
+
+ public void setTrackingAreaList(String trackingAreaList) {
+ this.trackingAreaList = trackingAreaList;
+ }
+
+ public String getSubnetStatus() {
+ return subnetStatus;
+ }
+
+ public void setSubnetStatus(String subnetStatus) {
+ this.subnetStatus = subnetStatus;
+ }
+
+ public String getNsstId() {
+ return nsstId;
+ }
+
+ public void setNsstId(String nsstId) {
+ this.nsstId = nsstId;
+ }
+
+ public String getSliceType() {
+ return sliceType;
+ }
+
+ public void setSliceType(String sliceType) {
+ this.sliceType = sliceType;
+ }
+
+ public String getIsShareable() {
+ return isShareable;
+ }
+
+ public List<String> getnSSAIList() {
+ return nSSAIList;
+ }
+
+ public void setnSSAIList(List<String> nSSAIList) {
+ this.nSSAIList = nSSAIList;
+ }
+
+ public List<SliceProfileModel> getSliceProfilesList() {
+ return sliceProfilesList;
+ }
+
+ public void setSliceProfilesList(List<SliceProfileModel> sliceProfilesList) {
+ this.sliceProfilesList = sliceProfilesList;
+ }
+
+ public void setIsShareable(String isShareable) {
+ this.isShareable = isShareable;
+ }
+
+ @Override
+ public String toString() {
+ return "RANSliceInfoModel [ranNFNSSIId=" + ranNFNSSIId + ", ranNSSIList=" + ranNSSIList + ", nSSAIList="
+ + nSSAIList + ", sliceProfilesList=" + sliceProfilesList + ", trackingAreaList=" + trackingAreaList
+ + ", subnetStatus=" + subnetStatus + ", nsstId=" + nsstId + ", sliceType=" + sliceType
+ + ", isShareable=" + isShareable + "]";
+ }
+
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/RRMPolicyMemberModel.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/RRMPolicyMemberModel.java
index 7d613f5..df9ccfa 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/RRMPolicyMemberModel.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/RRMPolicyMemberModel.java
@@ -20,24 +20,28 @@
package org.onap.ransim.rest.web.mapper;
-public class RRMPolicyMemberModel{
- private String pLMNId;
- private NSSAIData sNSSAI;
+public class RRMPolicyMemberModel {
+ private String pLMNId;
+ private NSSAIData sNSSAI;
- public String getpLMNId() {
- return pLMNId;
- }
- public void setpLMNId(String pLMNId) {
- this.pLMNId = pLMNId;
- }
- public NSSAIData getsNSSAI() {
- return sNSSAI;
- }
- public void setsNSSAI(NSSAIData sNSSAI) {
- this.sNSSAI = sNSSAI;
- }
- @Override
- public String toString() {
- return "RRMPolicyMemberModel [pLMNId=" + pLMNId + ", sNSSAI=" + sNSSAI + "]";
- }
+ public String getpLMNId() {
+ return pLMNId;
+ }
+
+ public void setpLMNId(String pLMNId) {
+ this.pLMNId = pLMNId;
+ }
+
+ public NSSAIData getsNSSAI() {
+ return sNSSAI;
+ }
+
+ public void setsNSSAI(NSSAIData sNSSAI) {
+ this.sNSSAI = sNSSAI;
+ }
+
+ @Override
+ public String toString() {
+ return "RRMPolicyMemberModel [pLMNId=" + pLMNId + ", sNSSAI=" + sNSSAI + "]";
+ }
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/RRMPolicyRatioModel.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/RRMPolicyRatioModel.java
index 2a78238..9c89b5e 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/RRMPolicyRatioModel.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/RRMPolicyRatioModel.java
@@ -22,76 +22,95 @@ package org.onap.ransim.rest.web.mapper;
import java.util.List;
-public class RRMPolicyRatioModel{
- private Integer rrmPolicyID;
- private String resourceID;
- private String resourceType;
- private String sliceType;
- private List<RRMPolicyMemberModel> rRMPolicyMemberList;
- private String quotaType;
- private Integer rRMPolicyMaxRatio;
- private Integer rRMPolicyMinRatio;
- private Integer rRMPolicyDedicatedRatio;
- public Integer getRrmPolicyID() {
- return rrmPolicyID;
- }
- public void setRrmPolicyID(Integer rrmPolicyID) {
- this.rrmPolicyID = rrmPolicyID;
- }
- public String getResourceID() {
- return resourceID;
- }
- public void setResourceID(String resourceID) {
- this.resourceID = resourceID;
- }
- public String getResourceType() {
- return resourceType;
- }
- public void setResourceType(String resourceType) {
- this.resourceType = resourceType;
- }
- public String getSliceType() {
- return sliceType;
- }
- public void setSliceType(String sliceType) {
- this.sliceType = sliceType;
- }
- public List<RRMPolicyMemberModel> getrRMPolicyMemberList() {
- return rRMPolicyMemberList;
- }
- public void setrRMPolicyMemberList(List<RRMPolicyMemberModel> rRMPolicyMemberList) {
- this.rRMPolicyMemberList = rRMPolicyMemberList;
- }
- public String getQuotaType() {
- return quotaType;
- }
- public void setQuotaType(String quotaType) {
- this.quotaType = quotaType;
- }
- public Integer getrRMPolicyMaxRatio() {
- return rRMPolicyMaxRatio;
- }
- public void setrRMPolicyMaxRatio(Integer rRMPolicyMaxRatio) {
- this.rRMPolicyMaxRatio = rRMPolicyMaxRatio;
- }
- public Integer getrRMPolicyMinRatio() {
- return rRMPolicyMinRatio;
- }
- public void setrRMPolicyMinRatio(Integer rRMPolicyMinRatio) {
- this.rRMPolicyMinRatio = rRMPolicyMinRatio;
- }
- public Integer getrRMPolicyDedicatedRatio() {
- return rRMPolicyDedicatedRatio;
- }
- public void setrRMPolicyDedicatedRatio(Integer rRMPolicyDedicatedRatio) {
- this.rRMPolicyDedicatedRatio = rRMPolicyDedicatedRatio;
- }
- @Override
- public String toString() {
- return "RRMPolicyRatioModel [rrmPolicyID=" + rrmPolicyID + ", resourceID=" + resourceID + ", resourceType="
- + resourceType + ", sliceType=" + sliceType + ", rRMPolicyMemberList=" + rRMPolicyMemberList
- + ", quotaType=" + quotaType + ", rRMPolicyMaxRatio=" + rRMPolicyMaxRatio + ", rRMPolicyMinRatio="
- + rRMPolicyMinRatio + ", rRMPolicyDedicatedRatio=" + rRMPolicyDedicatedRatio + "]";
- }
-
+public class RRMPolicyRatioModel {
+ private Integer rrmPolicyID;
+ private String resourceID;
+ private String resourceType;
+ private String sliceType;
+ private List<RRMPolicyMemberModel> rRMPolicyMemberList;
+ private String quotaType;
+ private Integer rRMPolicyMaxRatio;
+ private Integer rRMPolicyMinRatio;
+ private Integer rRMPolicyDedicatedRatio;
+
+ public Integer getRrmPolicyID() {
+ return rrmPolicyID;
+ }
+
+ public void setRrmPolicyID(Integer rrmPolicyID) {
+ this.rrmPolicyID = rrmPolicyID;
+ }
+
+ public String getResourceID() {
+ return resourceID;
+ }
+
+ public void setResourceID(String resourceID) {
+ this.resourceID = resourceID;
+ }
+
+ public String getResourceType() {
+ return resourceType;
+ }
+
+ public void setResourceType(String resourceType) {
+ this.resourceType = resourceType;
+ }
+
+ public String getSliceType() {
+ return sliceType;
+ }
+
+ public void setSliceType(String sliceType) {
+ this.sliceType = sliceType;
+ }
+
+ public List<RRMPolicyMemberModel> getrRMPolicyMemberList() {
+ return rRMPolicyMemberList;
+ }
+
+ public void setrRMPolicyMemberList(List<RRMPolicyMemberModel> rRMPolicyMemberList) {
+ this.rRMPolicyMemberList = rRMPolicyMemberList;
+ }
+
+ public String getQuotaType() {
+ return quotaType;
+ }
+
+ public void setQuotaType(String quotaType) {
+ this.quotaType = quotaType;
+ }
+
+ public Integer getrRMPolicyMaxRatio() {
+ return rRMPolicyMaxRatio;
+ }
+
+ public void setrRMPolicyMaxRatio(Integer rRMPolicyMaxRatio) {
+ this.rRMPolicyMaxRatio = rRMPolicyMaxRatio;
+ }
+
+ public Integer getrRMPolicyMinRatio() {
+ return rRMPolicyMinRatio;
+ }
+
+ public void setrRMPolicyMinRatio(Integer rRMPolicyMinRatio) {
+ this.rRMPolicyMinRatio = rRMPolicyMinRatio;
+ }
+
+ public Integer getrRMPolicyDedicatedRatio() {
+ return rRMPolicyDedicatedRatio;
+ }
+
+ public void setrRMPolicyDedicatedRatio(Integer rRMPolicyDedicatedRatio) {
+ this.rRMPolicyDedicatedRatio = rRMPolicyDedicatedRatio;
+ }
+
+ @Override
+ public String toString() {
+ return "RRMPolicyRatioModel [rrmPolicyID=" + rrmPolicyID + ", resourceID=" + resourceID + ", resourceType="
+ + resourceType + ", sliceType=" + sliceType + ", rRMPolicyMemberList=" + rRMPolicyMemberList
+ + ", quotaType=" + quotaType + ", rRMPolicyMaxRatio=" + rRMPolicyMaxRatio + ", rRMPolicyMinRatio="
+ + rRMPolicyMinRatio + ", rRMPolicyDedicatedRatio=" + rRMPolicyDedicatedRatio + "]";
+ }
+
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/Result.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/Result.java
index 20b08fc..8b0ba3c 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/Result.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/Result.java
@@ -24,35 +24,35 @@ import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Mapper Class for Result
- *
+ *
*/
public class Result {
- // param
- @JsonProperty("attribute-name")
- private String attributeName;
- @JsonProperty("value")
- private String value;
-
- public Result(String atributeName, String value) {
- super();
- this.attributeName = atributeName;
- this.value = value;
- }
-
- public String getAttributeName() {
- return attributeName;
- }
-
- public void setAttributeName(String attributeName) {
- this.attributeName = attributeName;
- }
-
- public String getValue() {
- return value;
- }
-
- public void setValue(String value) {
- this.value = value;
- }
+ // param
+ @JsonProperty("attribute-name")
+ private String attributeName;
+ @JsonProperty("value")
+ private String value;
+
+ public Result(String atributeName, String value) {
+ super();
+ this.attributeName = atributeName;
+ this.value = value;
+ }
+
+ public String getAttributeName() {
+ return attributeName;
+ }
+
+ public void setAttributeName(String attributeName) {
+ this.attributeName = attributeName;
+ }
+
+ public String getValue() {
+ return value;
+ }
+
+ public void setValue(String value) {
+ this.value = value;
+ }
}
diff --git a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/SliceProfileModel.java b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/SliceProfileModel.java
index c1f45dd..c7be576 100644
--- a/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/SliceProfileModel.java
+++ b/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/SliceProfileModel.java
@@ -22,91 +22,113 @@ package org.onap.ransim.rest.web.mapper;
import java.util.List;
-public class SliceProfileModel{
- private String sliceProfileId;
- private String sNSSAI;
- private String pLMNIdList;
- private Integer maxNumberofUEs;
- private Integer latency;
- private Integer dLThptPerSlice;
- private Integer uLThptPerSlice;
- private Integer maxNumberofConns;
- private String uEMobilityLevel;
- private String resourceSharingLevel;
- private List<String> coverageAreaList;
-
- public String getSliceProfileId() {
- return sliceProfileId;
- }
- public void setSliceProfileId(String sliceProfileId) {
- this.sliceProfileId = sliceProfileId;
- }
- public String getsNSSAI() {
- return sNSSAI;
- }
- public void setsNSSAI(String sNSSAI) {
- this.sNSSAI = sNSSAI;
- }
- public String getpLMNIdList() {
- return pLMNIdList;
- }
- public void setpLMNIdList(String pLMNIdList) {
- this.pLMNIdList = pLMNIdList;
- }
- public Integer getMaxNumberofUEs() {
- return maxNumberofUEs;
- }
- public void setMaxNumberofUEs(Integer maxNumberofUEs) {
- this.maxNumberofUEs = maxNumberofUEs;
- }
- public Integer getLatency() {
- return latency;
- }
- public void setLatency(Integer latency) {
- this.latency = latency;
- }
- public Integer getdLThptPerSlice() {
- return dLThptPerSlice;
- }
- public void setdLThptPerSlice(Integer dLThptPerSlice) {
- this.dLThptPerSlice = dLThptPerSlice;
- }
- public Integer getuLThptPerSlice() {
- return uLThptPerSlice;
- }
- public void setuLThptPerSlice(Integer uLThptPerSlice) {
- this.uLThptPerSlice = uLThptPerSlice;
- }
- public Integer getMaxNumberofConns() {
- return maxNumberofConns;
- }
- public void setMaxNumberofConns(Integer maxNumberofConns) {
- this.maxNumberofConns = maxNumberofConns;
- }
- public String getuEMobilityLevel() {
- return uEMobilityLevel;
- }
- public void setuEMobilityLevel(String uEMobilityLevel) {
- this.uEMobilityLevel = uEMobilityLevel;
- }
- public String getResourceSharingLevel() {
- return resourceSharingLevel;
- }
- public void setResourceSharingLevel(String resourceSharingLevel) {
- this.resourceSharingLevel = resourceSharingLevel;
- }
- public List<String> getCoverageAreaList() {
- return coverageAreaList;
- }
- public void setCoverageAreaList(List<String> coverageAreaList) {
- this.coverageAreaList = coverageAreaList;
- }
- @Override
- public String toString() {
- return "SliceProfileModel [sliceProfileId=" + sliceProfileId + ", sNSSAI=" + sNSSAI + ", pLMNIdList="
- + pLMNIdList + ", maxNumberofUEs=" + maxNumberofUEs + ", latency=" + latency + ", dLThptPerSlice="
- + dLThptPerSlice + ", uLThptPerSlice=" + uLThptPerSlice + ", maxNumberofConns=" + maxNumberofConns
- + ", uEMobilityLevel=" + uEMobilityLevel + ", resourceSharingLevel=" + resourceSharingLevel
- + ", coverageAreaList=" + coverageAreaList + "]";
- }
+public class SliceProfileModel {
+ private String sliceProfileId;
+ private String sNSSAI;
+ private String pLMNIdList;
+ private Integer maxNumberofUEs;
+ private Integer latency;
+ private Integer dLThptPerSlice;
+ private Integer uLThptPerSlice;
+ private Integer maxNumberofConns;
+ private String uEMobilityLevel;
+ private String resourceSharingLevel;
+ private List<String> coverageAreaList;
+
+ public String getSliceProfileId() {
+ return sliceProfileId;
+ }
+
+ public void setSliceProfileId(String sliceProfileId) {
+ this.sliceProfileId = sliceProfileId;
+ }
+
+ public String getsNSSAI() {
+ return sNSSAI;
+ }
+
+ public void setsNSSAI(String sNSSAI) {
+ this.sNSSAI = sNSSAI;
+ }
+
+ public String getpLMNIdList() {
+ return pLMNIdList;
+ }
+
+ public void setpLMNIdList(String pLMNIdList) {
+ this.pLMNIdList = pLMNIdList;
+ }
+
+ public Integer getMaxNumberofUEs() {
+ return maxNumberofUEs;
+ }
+
+ public void setMaxNumberofUEs(Integer maxNumberofUEs) {
+ this.maxNumberofUEs = maxNumberofUEs;
+ }
+
+ public Integer getLatency() {
+ return latency;
+ }
+
+ public void setLatency(Integer latency) {
+ this.latency = latency;
+ }
+
+ public Integer getdLThptPerSlice() {
+ return dLThptPerSlice;
+ }
+
+ public void setdLThptPerSlice(Integer dLThptPerSlice) {
+ this.dLThptPerSlice = dLThptPerSlice;
+ }
+
+ public Integer getuLThptPerSlice() {
+ return uLThptPerSlice;
+ }
+
+ public void setuLThptPerSlice(Integer uLThptPerSlice) {
+ this.uLThptPerSlice = uLThptPerSlice;
+ }
+
+ public Integer getMaxNumberofConns() {
+ return maxNumberofConns;
+ }
+
+ public void setMaxNumberofConns(Integer maxNumberofConns) {
+ this.maxNumberofConns = maxNumberofConns;
+ }
+
+ public String getuEMobilityLevel() {
+ return uEMobilityLevel;
+ }
+
+ public void setuEMobilityLevel(String uEMobilityLevel) {
+ this.uEMobilityLevel = uEMobilityLevel;
+ }
+
+ public String getResourceSharingLevel() {
+ return resourceSharingLevel;
+ }
+
+ public void setResourceSharingLevel(String resourceSharingLevel) {
+ this.resourceSharingLevel = resourceSharingLevel;
+ }
+
+ public List<String> getCoverageAreaList() {
+ return coverageAreaList;
+ }
+
+ public void setCoverageAreaList(List<String> coverageAreaList) {
+ this.coverageAreaList = coverageAreaList;
+ }
+
+ @Override
+ public String toString() {
+ return "SliceProfileModel [sliceProfileId=" + sliceProfileId + ", sNSSAI=" + sNSSAI + ", pLMNIdList="
+ + pLMNIdList + ", maxNumberofUEs=" + maxNumberofUEs + ", latency=" + latency + ", dLThptPerSlice="
+ + dLThptPerSlice + ", uLThptPerSlice=" + uLThptPerSlice + ", maxNumberofConns=" + maxNumberofConns
+ + ", uEMobilityLevel=" + uEMobilityLevel + ", resourceSharingLevel=" + resourceSharingLevel
+ + ", coverageAreaList=" + coverageAreaList + "]";
+ }
}