Use lombok for events, base, dao
[policy/models.git] / models-dao / src / main / java / org / onap / policy / models / dao / DaoParameters.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.dao;
23
24 import java.util.Properties;
25 import lombok.Getter;
26 import lombok.Setter;
27 import lombok.ToString;
28
29 /**
30  * This class is a POJO that holds properties for PF DAOs.
31  *
32  * @author Liam Fallon (liam.fallon@est.tech)
33  */
34 @Getter
35 @Setter
36 @ToString
37 public class DaoParameters {
38     /** The default PF DAO plugin class. */
39     public static final String DEFAULT_PLUGIN_CLASS = "org.onap.policy.models.dao.impl.DefaultPfDao";
40
41     private String pluginClass = DEFAULT_PLUGIN_CLASS;
42     private String persistenceUnit;
43
44     private Properties jdbcProperties = new Properties();
45
46     /**
47      * Gets a single JDBC property.
48      *
49      * @param key the key of the property
50      * @return the JDBC property
51      */
52     public String getJdbcProperty(final String key) {
53         return jdbcProperties.getProperty(key);
54     }
55
56     /**
57      * Sets a single JDBC property.
58      *
59      * @param key the key of the property
60      * @param value the value of the JDBC property
61      */
62     public void setJdbcProperty(final String key, final String value) {
63         jdbcProperties.setProperty(key, value);
64     }
65 }