aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/web/mapper/CellPciValueObj.java
blob: 32c27108aa7ce9ab2cc07895a5ae88ec6508d930 (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;
/**
 * Request mapper Class 
 * @author Devendra Chauhan
 *
 */

public class CellPciValueObj {
	
	private String cellId;
	private long pciValue;
	
	
	public CellPciValueObj(String cellId, long pciValue) {
		super();
		this.cellId = cellId;
		this.pciValue = pciValue;
	}
	public String getCellId() {
		return cellId;
	}
	public void setCellId(String cellId) {
		this.cellId = cellId;
	}
	public long getPciValue() {
		return pciValue;
	}
	public void setPciValue(long pciValue) {
		this.pciValue = pciValue;
	}
	

}