Add Apache license header per file
[externalapi/nbi.git] / src / main / java / org / onap / nbi / exceptions / ApiExceptionHandler.java
index 1f109cb..8fce965 100644 (file)
@@ -1,3 +1,19 @@
+/**
+ *
+ *     Copyright (c) 2017 Orange.  All rights reserved.
+ *
+ *     Licensed under the Apache License, Version 2.0 (the "License");
+ *     you may not use this file except in compliance with the License.
+ *     You may obtain a copy of the License at
+ *
+ *         http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *     Unless required by applicable law or agreed to in writing, software
+ *     distributed under the License is distributed on an "AS IS" BASIS,
+ *     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *     See the License for the specific language governing permissions and
+ *     limitations under the License.
+ */
 package org.onap.nbi.exceptions;
 
 import org.slf4j.Logger;
@@ -18,22 +34,24 @@ public class ApiExceptionHandler {
     @ExceptionHandler(BackendFunctionalException.class)
     @ResponseBody
     public ResponseEntity<ApiError> backendExceptionHandler(final BackendFunctionalException exception) {
-        ApiError apiError = new ApiError(String.valueOf(exception.getHttpStatus().value()), exception.getMessage(), "", "");
+        ApiError apiError =
+                new ApiError(String.valueOf(exception.getHttpStatus().value()), exception.getMessage(), "", "");
         return new ResponseEntity<ApiError>(apiError, exception.getHttpStatus());
     }
 
     @ExceptionHandler(TechnicalException.class)
     @ResponseBody
     public ResponseEntity<ApiError> technicalExceptionHandler(final TechnicalException exception) {
-        ApiError apiError = new ApiError(String.valueOf(exception.getHttpStatus().value()), exception.getMessage(), "", "");
+        ApiError apiError =
+                new ApiError(String.valueOf(exception.getHttpStatus().value()), exception.getMessage(), "", "");
         return new ResponseEntity<ApiError>(apiError, exception.getHttpStatus());
     }
 
     @ExceptionHandler(RestClientException.class)
     @ResponseBody
     public ResponseEntity<ApiError> RestClientExceptionHandler(final RestClientException exception) {
-        ApiError apiError = new ApiError("500", HttpStatus.INTERNAL_SERVER_ERROR.getReasonPhrase(), "Unable to " +
-                "reach ONAP services", "");
+        ApiError apiError = new ApiError("500", HttpStatus.INTERNAL_SERVER_ERROR.getReasonPhrase(),
+                "Unable to " + "reach ONAP services", "");
         return new ResponseEntity<ApiError>(apiError, HttpStatus.INTERNAL_SERVER_ERROR);
     }