7dca3bf3734e76d5e2ae2deca1a9576d00afc735
[policy/models.git] /
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.concurrent.Executor;
24 import lombok.Getter;
25 import org.onap.policy.common.endpoints.http.client.HttpClient;
26 import org.onap.policy.common.endpoints.http.client.HttpClientFactory;
27 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpConfig;
28 import org.onap.policy.models.decisions.concepts.DecisionRequest;
29
30 /**
31  * Configuration for Guard Operators.
32  */
33 public class GuardConfig extends HttpConfig {
34     private final DecisionRequest defaultRequest = new DecisionRequest();
35
36     /**
37      * {@code True} if the associated guard operation is disabled.
38      */
39     @Getter
40     private boolean disabled;
41
42     /**
43      * Constructs the object.
44      *
45      * @param blockingExecutor executor to be used for tasks that may perform blocking I/O
46      * @param params operator parameters
47      * @param clientFactory factory from which to obtain the {@link HttpClient}
48      */
49     public GuardConfig(Executor blockingExecutor, GuardParams params, HttpClientFactory clientFactory) {
50         super(blockingExecutor, params, clientFactory);
51
52         defaultRequest.setOnapComponent(params.getOnapComponent());
53         defaultRequest.setOnapInstance(params.getOnapInstance());
54         defaultRequest.setOnapName(params.getOnapName());
55         defaultRequest.setAction(params.getAction());
56
57         this.disabled = params.isDisabled();
58     }
59
60     /**
61      * Creates a new request, with the default values.
62      *
63      * @return a new request
64      */
65     public DecisionRequest makeRequest() {
66         return new DecisionRequest(defaultRequest);
67     }
68 }