90c2edd55028dbc8ed24d1a688178a4746b51d8b
[portal/ric-dashboard.git] / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / model / DashboardUser.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property and Nokia
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20
21 /*
22  * TODO: this mocks user properties until integration with ONAP Portal is done.
23  */
24 package org.oransc.ric.portal.dashboard.model;
25
26 public class DashboardUser {
27
28         private long id;
29         private String firstName;
30         private String lastName;
31         private String status;
32
33         public DashboardUser() {
34         }
35
36         public DashboardUser(long id, String firstName, String lastName, String status) {
37                 this.id = id;
38                 this.firstName = firstName;
39                 this.lastName = lastName;
40                 this.status = status;
41         }
42
43         public long getId() {
44                 return id;
45         }
46
47         public void setId(long id) {
48                 this.id = id;
49         }
50
51         public String getFirstName() {
52                 return firstName;
53         }
54
55         public void setFirstName(String firstName) {
56                 this.firstName = firstName;
57         }
58
59         public String getLastName() {
60                 return lastName;
61         }
62
63         public void setLastName(String lastName) {
64                 this.lastName = lastName;
65         }
66
67         public String getStatus() {
68                 return status;
69         }
70
71         public void setStatus(String status) {
72                 this.status = status;
73         }
74
75 }