2f051f7b4f3d9ac5c4dcb8d9ea53ebf2fad60e89
[policy/engine.git] / POLICY-SDK-APP / src / main / java / org / onap / policy / model / Roles.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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 package org.onap.policy.model;
22
23
24 import java.io.Serializable;
25
26 import javax.persistence.Column;
27 import javax.persistence.Entity;
28 import javax.persistence.GeneratedValue;
29 import javax.persistence.GenerationType;
30 import javax.persistence.Id;
31 import javax.persistence.NamedQuery;
32 import javax.persistence.Table;
33
34 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
35
36 @Entity
37 @Table(name="Roles")
38 @NamedQuery(name="Roles.findAll", query="SELECT r FROM Roles r ")
39 @JsonIgnoreProperties({"hibernateLazyInitializer", "handler"})  
40 public class Roles implements Serializable{
41         private static final long serialVersionUID = 1L;
42
43         @Id
44         @GeneratedValue(strategy = GenerationType.AUTO)
45
46         @Column(name="id")
47         private int id;
48
49         @Column(name="loginId")
50         private String loginId;
51         
52         private String name;
53         private String scope;
54         private String role;
55
56         public Roles(){
57                 // Empty constructor
58         }
59         
60         public int getId() {
61                 return this.id;
62         }
63
64         public void setId(int id) {
65                 this.id = id;
66         }
67
68         public String getLoginId() {
69                 return this.loginId;
70         }
71
72         public void setLoginId(String loginId) {
73                 this.loginId = loginId;
74                 
75         }
76         public String getScope() {
77                 return this.scope;
78         }
79
80         public void setScope(String scope) {
81                 this.scope = scope;
82                 
83         }
84         
85         public String getName() {
86                 return name;
87         }
88
89         public void setName(String name) {
90                 this.name = name;
91         }
92         public String getRole() {
93                 return this.role;
94         }
95
96         public void setRole(String role) {
97                 this.role = role;
98         }
99 }