1ea83761c8d1748389a2cd72665ad17a5af57a75
[policy/drools-applications.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2023-2024 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.controlloop.ophistory;
23
24 import lombok.AllArgsConstructor;
25 import lombok.Builder;
26 import lombok.Data;
27 import lombok.NoArgsConstructor;
28 import org.onap.policy.common.parameters.BeanValidator;
29 import org.onap.policy.common.parameters.ValidationResult;
30 import org.onap.policy.common.parameters.annotations.Min;
31 import org.onap.policy.common.parameters.annotations.NotBlank;
32 import org.onap.policy.common.parameters.annotations.NotNull;
33
34 /**
35  * Parameters for a Data Manager.
36  */
37 @NotNull
38 @Data
39 @Builder
40 @NoArgsConstructor
41 @AllArgsConstructor
42 public class OperationHistoryDataManagerParams {
43     public static final String DEFAULT_PU = "OperationsHistoryPU";
44     public static final String DEFAULT_DRIVER = "org.mariadb.jdbc.Driver";
45
46     @NotBlank
47     private String url;
48     @NotBlank
49     private String userName;
50
51     // may be blank
52     private String password;
53
54     @Builder.Default
55     private String persistenceUnit = DEFAULT_PU;
56
57     @Builder.Default
58     private String driver = DEFAULT_DRIVER;
59
60     /**
61      * Maximum number of records that can be waiting to be inserted into the DB. When the
62      * limit is reached, the oldest records are discarded.
63      */
64     @Min(1)
65     @Builder.Default
66     private int maxQueueLength = 10000;
67
68     /**
69      * Number of records to add the DB in one transaction.
70      */
71     @Min(1)
72     @Builder.Default
73     private int batchSize = 100;
74
75     /**
76      * Validates the parameters.
77      *
78      * @param resultName name of the result
79      *
80      * @return the validation result
81      */
82     public ValidationResult validate(String resultName) {
83         return new BeanValidator().validateTop(resultName, this);
84     }
85 }