aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/NbrObj.java
blob: 06e1edfc083b237bf168f1f4b9e3b8e5dea36d68 (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
package org.onap.ransim.rest.web.mapper;

/**
 * Mapper class for nbrObj
 * @author Devendra Chauhan
 *
 */
public class NbrObj {
	private String targetCellId;
	private boolean ho;
	
	public String getTargetCellId() {
		return targetCellId;
	}
	public void setTargetCellId(String targetCellId) {
		this.targetCellId = targetCellId;
	}
	public boolean isHo() {
		return ho;
	}
	public void setHo(boolean ho) {
		this.ho = ho;
	}
	
	

}