bump the version
[dmaap/messagerouter/msgrtr.git] / src / main / java / org / onap / dmaap / dmf / mr / exception / DMaaPCambriaExceptionMapper.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  *  ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *        http://www.apache.org/licenses/LICENSE-2.0
11 *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *  
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22 package org.onap.dmaap.dmf.mr.exception;
23
24 import javax.inject.Singleton;
25 import javax.ws.rs.core.MediaType;
26 import javax.ws.rs.core.Response;
27 import javax.ws.rs.ext.ExceptionMapper;
28 import javax.ws.rs.ext.Provider;
29
30 import org.apache.http.HttpStatus;
31 import org.springframework.beans.factory.annotation.Autowired;
32
33 import org.onap.dmaap.dmf.mr.CambriaApiException;
34 import com.att.eelf.configuration.EELFLogger;
35 import com.att.eelf.configuration.EELFManager;
36
37 /**
38  * Exception Mapper class to handle
39  * CambriaApiException 
40  * @author rajashree.khare
41  *
42  */
43 @Provider
44 @Singleton
45 public class DMaaPCambriaExceptionMapper implements ExceptionMapper<CambriaApiException>{
46
47 private ErrorResponse errRes;
48
49
50 private static final EELFLogger LOGGER = EELFManager.getInstance().getLogger(DMaaPCambriaExceptionMapper.class);
51         
52         @Autowired
53         private DMaaPErrorMessages msgs;
54         
55         public DMaaPCambriaExceptionMapper() {
56                 super();
57                 LOGGER.info("Cambria Exception Mapper Created..");
58         }
59         
60         @Override
61         public Response toResponse(CambriaApiException ex) {
62
63                 LOGGER.info("Reached Cambria Exception Mapper..");
64                 
65                 /**
66                  * Cambria Generic Exception
67                  */
68                 if(ex instanceof CambriaApiException)
69                 {
70                         
71                         errRes = ex.getErrRes();
72                         if(errRes!=null) {
73                                 
74                                 return Response.status(errRes.getHttpStatusCode()).entity(errRes).type(MediaType.APPLICATION_JSON)
75                             .build();
76                         }
77                         else
78                         {
79                                 return Response.status(ex.getStatus()).entity(ex.getMessage()).type(MediaType.APPLICATION_JSON)
80                                     .build();
81                         }
82                         
83                         
84                 }
85                 else
86                 {
87                         errRes = new ErrorResponse(HttpStatus.SC_EXPECTATION_FAILED, DMaaPResponseCode.SERVER_UNAVAILABLE.getResponseCode(), msgs.getServerUnav());
88                         return Response.status(HttpStatus.SC_EXPECTATION_FAILED).entity(errRes).type(MediaType.APPLICATION_JSON).build();
89                 }
90                 
91         }
92
93         
94 }