Cleanup drl files in policy/engine test modules
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / PolicyRoles.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-REST
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.rest.jpa;
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.JoinColumn;
32 import javax.persistence.ManyToOne;
33 import javax.persistence.NamedQuery;
34 import javax.persistence.OrderBy;
35 import javax.persistence.Table;
36
37 import org.onap.policy.rest.jpa.UserInfo;
38
39
40 /**
41  * The persistent class for the roles database table.
42  * 
43  */
44 @Entity
45 @Table(name="roles")
46 @NamedQuery(name="PolicyRoles.findAll", query="SELECT r FROM PolicyRoles r ")
47 public class PolicyRoles implements Serializable {
48     private static final long serialVersionUID = 1L;
49
50     @Id
51     @GeneratedValue(strategy = GenerationType.AUTO)
52
53     @Column(name="id")
54     private int id;
55
56     @ManyToOne
57     @JoinColumn(name="loginid")
58     @OrderBy("asc")
59     private UserInfo loginId;
60
61     public UserInfo getLoginId() {
62         return loginId;
63     }
64
65     public void setLoginId(UserInfo loginId) {
66         this.loginId = loginId;
67     }
68
69     @Column(name="scope", nullable=true, length=45)
70     private String scope;
71
72     @Column(name="role", nullable=false, length=45)
73     private String role;
74
75     public PolicyRoles() {
76         // Empty constructor
77     }
78
79     public int getId() {
80         return this.id;
81     }
82
83     public void setId(int id) {
84         this.id = id;
85     }
86
87     public String getScope() {
88         return this.scope;
89     }
90
91     public void setScope(String scope) {
92         this.scope = scope;
93
94     }
95     public String getRole() {
96         return this.role;
97     }
98
99     public void setRole(String role) {
100         this.role = role;
101     }
102
103 }