package org.onap.ransim.rest.web.mapper; import java.util.List; /** * * Response Mapper class for NbrList * @author Devendra Chauhan * */ public class NbrListResponse { private String cellId; private List nbrList; public String getCellId() { return cellId; } public void setCellId(String cellId) { this.cellId = cellId; } public List getNbrList() { return nbrList; } public void setNbrList(List nbrList) { this.nbrList = nbrList; } }