Merge "Update docker tag convention"
[policy/engine.git] / BRMSGateway / src / main / java / org / onap / policy / brmsInterface / jpa / BRMSPolicyInfo.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 package org.onap.policy.brmsInterface.jpa;
21
22 import javax.persistence.Column;
23 import javax.persistence.Entity;
24 import javax.persistence.Id;
25 import javax.persistence.JoinColumn;
26 import javax.persistence.ManyToOne;
27 import javax.persistence.Table;
28
29 @Entity
30 @Table(name="brmsgroup_policy")
31 public class BRMSPolicyInfo {
32         
33         @Id
34         @Column(name="policyName")
35         private String policyName;
36         
37         @ManyToOne
38         @JoinColumn(name="controllerName")
39         private BRMSGroupInfo controllerName;
40         
41         public String getPolicyName() {
42                 return policyName;
43         }
44
45         public void setPolicyName(String policyName) {
46                 this.policyName = policyName;
47         }
48
49         public BRMSGroupInfo getControllerName() {
50                 return controllerName;
51         }
52
53         public void setControllerName(BRMSGroupInfo controllerName) {
54                 this.controllerName = controllerName;
55         }
56 }