Format java POLICY-SDK-APP
[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, 2019 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 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
24
25 import java.io.Serializable;
26
27 import javax.persistence.Column;
28 import javax.persistence.Entity;
29 import javax.persistence.GeneratedValue;
30 import javax.persistence.GenerationType;
31 import javax.persistence.Id;
32 import javax.persistence.NamedQuery;
33 import javax.persistence.Table;
34
35 @Entity
36 @Table(name = "Roles")
37 @NamedQuery(name = "Roles.findAll", query = "SELECT r FROM Roles r ")
38 @JsonIgnoreProperties({"hibernateLazyInitializer", "handler"})
39 public class Roles implements Serializable {
40     private static final long serialVersionUID = 1L;
41
42     @Id
43     @GeneratedValue(strategy = GenerationType.AUTO)
44
45     @Column(name = "id")
46     private int id;
47
48     @Column(name = "loginId")
49     private String loginId;
50
51     private String name;
52     private String scope;
53     private String role;
54
55     public Roles() {
56         // Empty constructor
57     }
58
59     public int getId() {
60         return this.id;
61     }
62
63     public void setId(int id) {
64         this.id = id;
65     }
66
67     public String getLoginId() {
68         return this.loginId;
69     }
70
71     public void setLoginId(String loginId) {
72         this.loginId = loginId;
73
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
93     public String getRole() {
94         return this.role;
95     }
96
97     public void setRole(String role) {
98         this.role = role;
99     }
100 }