74d5f7a9e61e7ceaec0b15df6754cd8e747dfe22
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandler / recipe / CamundaClientErrorHandler.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.so.apihandler.recipe;
24
25 import java.io.IOException;
26
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29 import org.springframework.http.HttpStatus;
30 import org.springframework.http.client.ClientHttpResponse;
31 import org.springframework.web.client.ResponseErrorHandler;
32
33
34
35 public class CamundaClientErrorHandler implements ResponseErrorHandler{
36         
37          private static Logger logger = LoggerFactory.getLogger(CamundaClientErrorHandler.class);
38         
39           @Override
40           public void handleError(ClientHttpResponse response) throws IOException {
41                         logger.debug(response.getBody().toString());
42                 }
43
44           @Override
45           public boolean hasError(ClientHttpResponse response) throws IOException {
46                         HttpStatus.Series series = response.getStatusCode().series();
47                         return (HttpStatus.Series.CLIENT_ERROR.equals(series)
48                                 || HttpStatus.Series.SERVER_ERROR.equals(series));
49         }
50             
51 }