74135b9dcc4d9fa3b6d95fcc495fea2a04be9b32
[dcaegen2/analytics/tca.git] / dcae-analytics-common / src / main / java / org / openecomp / dcae / apod / analytics / common / utils / HTTPUtils.java
1 /*\r
2  * ===============================LICENSE_START======================================\r
3  *  dcae-analytics\r
4  * ================================================================================\r
5  *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * ================================================================================\r
7  *  Licensed under the Apache License, Version 2.0 (the "License");\r
8  *  you may not use this file except in compliance with the License.\r
9  *   You may obtain a copy of the License at\r
10  *\r
11  *          http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  *  Unless required by applicable law or agreed to in writing, software\r
14  *  distributed under the License is distributed on an "AS IS" BASIS,\r
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  *  See the License for the specific language governing permissions and\r
17  *  limitations under the License.\r
18  *  ============================LICENSE_END===========================================\r
19  */\r
20 \r
21 package org.openecomp.dcae.apod.analytics.common.utils;\r
22 \r
23 /**\r
24  * Contains common utils to check HTTP Related Utils\r
25  *\r
26  * @author Rajiv Singla . Creation Date: 11/2/2016.\r
27  */\r
28 public abstract class HTTPUtils {\r
29 \r
30     /**\r
31      * HTTP Status code for successful HTTP call\r
32      */\r
33     public static final Integer HTTP_SUCCESS_STATUS_CODE = 200;\r
34 \r
35     /**\r
36      * HTTP Response code when request has been accepted for processing, but the processing has not been completed\r
37      */\r
38     public static final Integer HTTP_ACCEPTED_RESPONSE_CODE = 202;\r
39 \r
40     /**\r
41      * HTTP Response code when there is no content\r
42      */\r
43     public static final Integer HTTP_NO_CONTENT_RESPONSE_CODE = 204;\r
44 \r
45 \r
46     public static final String JSON_APPLICATION_TYPE = "application/json";\r
47 \r
48 \r
49     private HTTPUtils() {\r
50 \r
51     }\r
52 \r
53     /**\r
54      *  Checks if HTTP Status code is less than or equal to 200 but less then 300\r
55      *\r
56      * @param statusCode http status code\r
57      * @return true if response code between 200 and 300\r
58      */\r
59     public static boolean isSuccessfulResponseCode(Integer statusCode) {\r
60         return statusCode >= 200 && statusCode < 300;\r
61     }\r
62 }\r