52f8177f3da1ee66dc75068da95fc14ff0ac47c6
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / PolicyGroupEntity.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 package org.onap.policy.rest.jpa;
21
22 import java.io.Serializable;
23
24 import javax.persistence.Column;
25 import javax.persistence.Entity;
26 import javax.persistence.Id;
27 import javax.persistence.NamedQuery;
28 import javax.persistence.Table;
29
30 @Entity
31 @Table(name="PolicyGroupEntity")
32 @NamedQuery(name="PolicyGroupEntity.findAll", query="SELECT p FROM PolicyGroupEntity p ")
33 public class PolicyGroupEntity implements Serializable{
34
35     private static final long serialVersionUID = 1L;
36
37     @Id
38     @Column(name="groupKey")
39     private int groupKey;
40
41     @Id
42     @Column(name="policyid")
43     private int policyid;
44
45     public int getGroupKey() {
46         return groupKey;
47     }
48
49     public void setGroupKey(int groupKey) {
50         this.groupKey = groupKey;
51     }
52
53     public int getPolicyid() {
54         return policyid;
55     }
56
57     public void setPolicyid(int policyid) {
58         this.policyid = policyid;
59     }
60 }