package org.onap.ransim.rest.web.mapper; import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty; /** * Response Mapper for NbrCellsNetwork * @author Devendra Chauhan * */ public class NbrCellsNetworkResponse { private String networkId; //private List NbrCellsNetworkObjList; @JsonProperty("cellsNbrList") private List cellsNbrList; public String getNetworkId() { return networkId; } public void setNetworkId(String networkId) { this.networkId = networkId; } public List getCellsNbrList() { return cellsNbrList; } public void setCellsNbrList(List cellsNbrList) { this.cellsNbrList = cellsNbrList; } /*public List getNbrCellsNetworkObjList() { return NbrCellsNetworkObjList; } public void setNbrCellsNetworkObjList(List nbrCellsNetworkObjList) { NbrCellsNetworkObjList = nbrCellsNetworkObjList; }*/ }