2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.policy.controlloop.common.rules.test;
23 import org.onap.policy.common.endpoints.http.client.HttpClientConfigException;
24 import org.onap.policy.common.endpoints.http.client.HttpClientFactory;
25 import org.onap.policy.common.endpoints.http.client.HttpClientFactoryInstance;
26 import org.onap.policy.drools.persistence.SystemPersistenceConstants;
29 * Mechanism by which junit tests can manage HTTP Clients.
31 public class HttpClients {
34 * Constructs the object.
36 public HttpClients() {
42 * Adds Http Clients specified in the property file.
44 * @param propFilePrefix prefix prepended to "-http-client.properties" to yield the
45 * full name of the property file containing http client properties
47 public void addClients(String propFilePrefix) {
49 getClientFactory().build(SystemPersistenceConstants.getManager().getHttpClientProperties(propFilePrefix));
50 } catch (HttpClientConfigException e) {
51 throw new IllegalArgumentException("cannot initialize HTTP clients", e);
56 * Destroys all Http Clients.
58 public void destroy() {
59 getClientFactory().destroy();
62 // these methods may be overridden by junit tests
64 protected HttpClientFactory getClientFactory() {
65 return HttpClientFactoryInstance.getClientFactory();