aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/PLMNInfo.java
blob: 699c7bdf9be815a602faba3ec855cb666ff2ab1d (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
package org.onap.ransim.rest.api.models;

import java.io.Serializable;

import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Embeddable;
import javax.persistence.Embedded;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
import javax.persistence.Table;

@Embeddable
@Table(name = "PLMNINFO")
public class PLMNInfo implements Serializable {
	private static final long serialVersionUID = 1L;
	
	@Column(name = "PLMNID")
	private String pLMNId;

	@Embedded
	private SNSSAI sNSSAI;
	public String getpLMNId() {
		return pLMNId;
	}

	public void setpLMNId(String pLMNId) {
		this.pLMNId = pLMNId;
	}


	public SNSSAI getsNSSAI() {
		return sNSSAI;
	}

	public void setsNSSAI(SNSSAI sNSSAI) {
		this.sNSSAI = sNSSAI;
	}

}