aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellObj.java
blob: f12ec6d812c682c76337ecba37c9c039331eff66 (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
30
31
32
33
package org.onap.ransim.rest.web.mapper;

import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;
/**
 * Request mapper class
 * @author Devendra
 *
 */

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;
	}


}