10d127f74bee0fe6aa42a83898a9d1efe7fc8769
[dmaap/messagerouter/msgrtr.git] / src / main / java / org / onap / dmaap / messagerouter / msgrtr / nsa / cambria / 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.messagerouter.msgrtr.nsa.cambria.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 import com.att.eelf.configuration.EELFLogger;
30 import com.att.eelf.configuration.EELFManager;
31 import org.apache.http.HttpStatus;
32 import org.onap.dmaap.messagerouter.msgrtr.nsa.cambria.CambriaApiException;
33 import org.springframework.beans.factory.annotation.Autowired;
34
35 /**
36  * Exception Mapper class to handle
37  * CambriaApiException 
38  * @author author
39  *
40  */
41 @Provider
42 @Singleton
43 public class DMaaPCambriaExceptionMapper implements ExceptionMapper<CambriaApiException>{
44
45 private ErrorResponse errRes;
46
47 //private static final Logger LOGGER = Logger.getLogger(DMaaPCambriaExceptionMapper.class);
48 private static final EELFLogger LOGGER = EELFManager.getInstance().getLogger(DMaaPCambriaExceptionMapper.class);
49         
50         @Autowired
51         private DMaaPErrorMessages msgs;
52         
53         public DMaaPCambriaExceptionMapper() {
54                 super();
55                 LOGGER.info("Cambria Exception Mapper Created..");
56         }
57         
58         @Override
59         public Response toResponse(CambriaApiException ex) {
60
61                 LOGGER.info("Reached Cambria Exception Mapper..");
62                 
63                 /**
64                  * Cambria Generic Exception
65                  */
66                 if(ex instanceof CambriaApiException)
67                 {
68                         
69                         errRes = ex.getErrRes();
70                         if(errRes!=null) {
71                                 
72                                 return Response.status(errRes.getHttpStatusCode()).entity(errRes).type(MediaType.APPLICATION_JSON)
73                             .build();
74                         }
75                         else
76                         {
77                                 return Response.status(ex.getStatus()).entity(ex.getMessage()).type(MediaType.APPLICATION_JSON)
78                                     .build();
79                         }
80                         
81                         
82                 }
83                 else
84                 {
85                         errRes = new ErrorResponse(HttpStatus.SC_EXPECTATION_FAILED, DMaaPResponseCode.SERVER_UNAVAILABLE.getResponseCode(), msgs.getServerUnav());
86                         return Response.status(HttpStatus.SC_EXPECTATION_FAILED).entity(errRes).type(MediaType.APPLICATION_JSON).build();
87                 }
88                 
89         }
90
91         
92 }