More actor clean-up
[policy/models.git] / models-interactions / model-actors / actor.guard / src / main / java / org / onap / policy / controlloop / actor / guard / GuardConfig.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020 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.controlloop.actor.guard;
22
23 import java.util.LinkedHashMap;
24 import java.util.Map;
25 import java.util.concurrent.Executor;
26 import org.onap.policy.common.endpoints.http.client.HttpClient;
27 import org.onap.policy.common.endpoints.http.client.HttpClientFactory;
28 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpConfig;
29
30 /**
31  * Configuration for Guard Operators.
32  */
33 public class GuardConfig extends HttpConfig {
34     private final Map<String, Object> defaultRequest = new LinkedHashMap<>();
35
36     /**
37      * Constructs the object.
38      *
39      * @param blockingExecutor executor to be used for tasks that may perform blocking I/O
40      * @param params operator parameters
41      * @param clientFactory factory from which to obtain the {@link HttpClient}
42      */
43     public GuardConfig(Executor blockingExecutor, GuardParams params, HttpClientFactory clientFactory) {
44         super(blockingExecutor, params, clientFactory);
45
46         addProperty("ONAPComponent", params.getOnapComponent());
47         addProperty("ONAPInstance", params.getOnapInstance());
48         addProperty("ONAPName", params.getOnapName());
49         addProperty("action", params.getAction());
50     }
51
52     /**
53      * Adds a property to the default request, if the value is not {@code null}.
54      *
55      * @param key property key
56      * @param value property value, or {@code null}
57      */
58     private void addProperty(String key, String value) {
59         if (value != null) {
60             defaultRequest.put(key, value);
61         }
62     }
63
64     /**
65      * Creates a new request, with the default values.
66      *
67      * @return a new request map
68      */
69     public Map<String, Object> makeRequest() {
70         return new LinkedHashMap<>(defaultRequest);
71     }
72 }