Adding configuration to evict expire and Idle
[so.git] / common / src / main / java / org / onap / so / configuration / rest / HttpClientConnectionConfiguration.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.configuration.rest;
22
23 import java.util.concurrent.TimeUnit;
24 import org.springframework.beans.factory.annotation.Value;
25 import org.springframework.stereotype.Service;
26
27 /**
28  * This class is used configure the parameters needed for {@link org.apache.http.impl.client.CloseableHttpClient}
29  * 
30  * @author waqas.ikram@est.tech
31  */
32 @Service
33 public class HttpClientConnectionConfiguration {
34
35     @Value(value = "${rest.http.client.configuration.connTimeOutInSec:10}")
36     private int connectionTimeOutInSeconds;
37
38     @Value(value = "${rest.http.client.configuration.socketTimeOutInSec:180}")
39     private int socketTimeOutInSeconds;
40
41     @Value(value = "${rest.http.client.configuration.timeToLiveInSeconds:600}")
42     private int timeToLiveInSeconds;
43
44     @Value(value = "${rest.http.client.configuration.maxConnections:100}")
45     private int maxConnections;
46
47     @Value(value = "${rest.http.client.configuration.maxConnectionsPerRoute:20}")
48     private int maxConnectionsPerRoute;
49
50     @Value(value = "${rest.http.client.configuration.evictIdleConnectionsTimeInSec:5}")
51     private int evictIdleConnectionsTimeInSec;
52
53     /**
54      * @return the socket connection time out in milliseconds
55      */
56     public int getSocketTimeOutInMiliSeconds() {
57         return (int) TimeUnit.SECONDS.toMillis(socketTimeOutInSeconds);
58     }
59
60     /**
61      * @return the maximum total connection value.
62      */
63     public int getMaxConnections() {
64         return maxConnections;
65     }
66
67     /**
68      * @return the maximum connection per route value.
69      */
70     public int getMaxConnectionsPerRoute() {
71         return maxConnectionsPerRoute;
72     }
73
74     /**
75      * @return the connect time out value in milliseconds.
76      */
77     public int getConnectionTimeOutInMilliSeconds() {
78         return (int) TimeUnit.SECONDS.toMillis(connectionTimeOutInSeconds);
79     }
80
81     /**
82      * @return the connection time to live value in mintues.
83      */
84     public int getTimeToLiveInMins() {
85         return (int) TimeUnit.SECONDS.toMinutes(timeToLiveInSeconds);
86     }
87
88     public long getEvictIdleConnectionsTimeInSec() {
89         return evictIdleConnectionsTimeInSec;
90     }
91
92 }