aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBCUUPModel.java
diff options
context:
space:
mode:
Diffstat (limited to 'ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBCUUPModel.java')
-rw-r--r--ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/GNBCUUPModel.java145
1 files changed, 81 insertions, 64 deletions
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 + "]";
+ }
+
}