6b4a2bf85a9f342c6e45b4c5959b951314832cc8
[policy/engine.git] / BRMSGateway / src / main / java / org / onap / policy / brmsInterface / jpa / BRMSGroupInfo.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.Table;
26
27 @Entity
28 @Table(name="brmsgroup_info")
29 public class BRMSGroupInfo{
30         
31         @Id
32         @Column(name = "controllerName", nullable=false, length=255)
33         private String controllerName;
34         
35         @Column(name = "groupId", nullable=false, length=255)
36         private String groupId;
37         
38         @Column(name = "artifactId", nullable=false, length=255)
39         private String artifactId;
40         
41         @Column(name = "version", length=255)
42         private String version;
43         
44         public String getControllerName() {
45                 return controllerName;
46         }
47
48         public void setControllerName(String controllerName) {
49                 this.controllerName = controllerName;
50         }
51
52         public String getGroupId() {
53                 return groupId;
54         }
55
56         public void setGroupId(String groupId) {
57                 this.groupId = groupId;
58         }
59
60         public String getArtifactId() {
61                 return artifactId;
62         }
63
64         public void setArtifactId(String artifactId) {
65                 this.artifactId = artifactId;
66         }
67
68         public String getVersion() {
69                 return version;
70         }
71
72         public void setVersion(String version) {
73                 this.version = version;
74         }
75 }