Fixed the Sonar technical debt.
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / ClosedLoops.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 import java.io.Serializable;
24
25 import javax.persistence.Column;
26 import javax.persistence.Entity;
27 import javax.persistence.GeneratedValue;
28 import javax.persistence.GenerationType;
29 import javax.persistence.Id;
30 import javax.persistence.NamedQueries;
31 import javax.persistence.NamedQuery;
32 import javax.persistence.OrderBy;
33 import javax.persistence.Table;
34
35 @Entity
36 @Table(name="ClosedLoops")
37 @NamedQueries({
38         @NamedQuery(name="ClosedLoops.findAll", query="SELECT e FROM ClosedLoops e"),
39         @NamedQuery(name="ClosedLoops.deleteAll", query="DELETE FROM ClosedLoops WHERE 1=1")
40 })
41 public class ClosedLoops implements Serializable {
42
43         /**
44          * 
45          */
46         private static final long serialVersionUID = -7796845092457926842L;
47         
48         @Id
49         @GeneratedValue(strategy = GenerationType.AUTO)
50         @Column(name="id")
51         private int id;
52         
53         @Column(name="closedLoopControlName", nullable=false, length=255)
54         @OrderBy("asc")
55         private String closedLoopControlName;
56
57         @Column(name="alarmConditions", nullable=true, length=255)
58         private String alarmConditions;
59         
60         @Column(name="yaml", nullable=true, length=1028)
61         private String yaml;
62                 
63         public ClosedLoops() {
64                 //An empty constructor
65         }
66
67         public int getId() {
68                 return id;
69         }
70
71         public void setId(int id) {
72                 this.id = id;
73         }
74
75         public String getClosedLoopControlName() {
76                 return closedLoopControlName;
77         }
78
79         public void setClosedLoopControlName(String closedLoopControlName) {
80                 this.closedLoopControlName = closedLoopControlName;
81         }
82
83         public String getAlarmConditions() {
84                 return alarmConditions;
85         }
86
87         public void setAlarmConditions(String alarmConditions) {
88                 this.alarmConditions = alarmConditions;
89         }
90
91         public String getYaml() {
92                 return yaml;
93         }
94
95         public void setYaml(String yaml) {
96                 this.yaml = yaml;
97         }
98         
99 }