Replaced all tabs with spaces in java and pom.xml
[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 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28 import org.springframework.http.HttpStatus;
29 import org.springframework.http.client.ClientHttpResponse;
30 import org.springframework.web.client.ResponseErrorHandler;
31
32
33
34 public class CamundaClientErrorHandler implements ResponseErrorHandler {
35
36     private static Logger logger = LoggerFactory.getLogger(CamundaClientErrorHandler.class);
37
38     @Override
39     public void handleError(ClientHttpResponse response) throws IOException {
40         logger.debug(response.getBody().toString());
41     }
42
43     @Override
44     public boolean hasError(ClientHttpResponse response) throws IOException {
45         HttpStatus.Series series = response.getStatusCode().series();
46         return (HttpStatus.Series.CLIENT_ERROR.equals(series) || HttpStatus.Series.SERVER_ERROR.equals(series));
47     }
48
49 }