aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrListResponse.java
blob: 7fa6b0e7dbfe51fa62ba0a4a44ea2cb9a313a14a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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> 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;
	}
	
	

}