Unit/SONAR/Checkstyle in ONAP-REST
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / PipResolverParam.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-REST
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.rest.jpa;
23
24 import java.io.Serializable;
25
26 import javax.persistence.Column;
27 import javax.persistence.Entity;
28 import javax.persistence.GeneratedValue;
29 import javax.persistence.GenerationType;
30 import javax.persistence.Id;
31 import javax.persistence.JoinColumn;
32 import javax.persistence.ManyToOne;
33 import javax.persistence.NamedQuery;
34 import javax.persistence.Table;
35 import javax.persistence.Transient;
36
37 import lombok.Getter;
38 import lombok.NoArgsConstructor;
39 import lombok.Setter;
40 import lombok.ToString;
41
42 /**
43  * The persistent class for the PipResolverParam database table.
44  *
45  */
46 @Entity
47 @Table(name = "PipResolverParams")
48 @NamedQuery(name = "PipResolverParam.findAll", query = "SELECT p FROM PipResolverParam p")
49 @Getter
50 @Setter
51 @NoArgsConstructor
52 @ToString
53 public class PipResolverParam implements Serializable {
54     private static final long serialVersionUID = 1L;
55
56     @Id
57     @GeneratedValue(strategy = GenerationType.AUTO)
58     @Column(name = "id")
59     private int id;
60
61     @Column(name = "PARAM_NAME", nullable = false, length = 1024)
62     private String paramName;
63
64     @Column(name = "PARAM_VALUE", nullable = false, length = 2048)
65     private String paramValue;
66
67     @Column(name = "PARAM_DEFAULT", nullable = true, length = 2048)
68     private String paramDefault;
69
70     @Column(name = "REQUIRED", nullable = false)
71     private char required = '0';
72
73     // bi-directional many-to-one association to PipResolver
74     @ManyToOne
75     @JoinColumn(name = "ID_RESOLVER")
76     private PipResolver pipresolver;
77
78     /**
79      * Instantiates a new PIP resolver param.
80      *
81      * @param name the name
82      */
83     public PipResolverParam(String name) {
84         this.paramName = name;
85     }
86
87     /**
88      * Instantiates a new PIP resolver param.
89      *
90      * @param name the name
91      * @param value the value
92      */
93     public PipResolverParam(String name, String value) {
94         this(name);
95         this.paramValue = value;
96     }
97
98     /**
99      * Instantiates a new PIP resolver param.
100      *
101      * @param param the param
102      */
103     public PipResolverParam(PipResolverParam param) {
104         this(param.getParamName(), param.getParamValue());
105         this.paramDefault = param.getParamDefault();
106         this.required = param.required;
107     }
108
109     /**
110      * Checks if is required.
111      *
112      * @return true, if is required
113      */
114     @Transient
115     public boolean isRequired() {
116         return this.required == '1';
117     }
118
119     /**
120      * Sets the required.
121      *
122      * @param required the new required
123      */
124     @Transient
125     public void setRequired(boolean required) {
126         if (required) {
127             this.required = '1';
128         } else {
129             this.required = '0';
130         }
131     }
132 }