aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellNbrInfoResponse.java
blob: 0f6ef2062e8c47b57f91b7890f3849d9a80105a8 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package org.onap.ransim.rest.web.mapper;

import javax.persistence.Column;

import com.fasterxml.jackson.annotation.JsonProperty;

public class CellNbrInfoResponse {
	
	
	
	@JsonProperty("cellId")
	private String cellId;



	@JsonProperty("targetCellId")
	private String targetCellId;
	
	private boolean ho;
	
	
	public CellNbrInfoResponse(String cellId,String targetCellId,boolean ho) {
		this.cellId =  cellId;
		this.targetCellId = targetCellId;
		this.ho =  ho;
		
		
	}

	public String getCellId() {
		return cellId;
	}

	public void setCellId(String cellId) {
		this.cellId = cellId;
	}

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

}