2 * ============LICENSE_START=======================================================
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
22 package org.onap.policy.controlloop.ophistory;
24 import lombok.AllArgsConstructor;
25 import lombok.Builder;
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;
35 * Parameters for a Data Manager.
42 public class OperationHistoryDataManagerParams {
43 public static final String DEFAULT_PU = "OperationsHistoryPU";
44 public static final String DEFAULT_DRIVER = "org.mariadb.jdbc.Driver";
49 private String userName;
52 private String password;
55 private String persistenceUnit = DEFAULT_PU;
58 private String driver = DEFAULT_DRIVER;
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.
66 private int maxQueueLength = 10000;
69 * Number of records to add the DB in one transaction.
73 private int batchSize = 100;
76 * Validates the parameters.
78 * @param resultName name of the result
80 * @return the validation result
82 public ValidationResult validate(String resultName) {
83 return new BeanValidator().validateTop(resultName, this);