f742854c6aeb5a009969f804813a5bd855a6dbd8
[sdc.git] /
1 /*
2  * Copyright © 2016-2017 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.openecomp.server.interceptors;
17
18 import org.apache.cxf.interceptor.AbstractOutDatabindingInterceptor;
19 import org.apache.cxf.interceptor.Fault;
20 import org.apache.cxf.message.Message;
21 import org.apache.cxf.message.MessageContentsList;
22 import org.apache.cxf.phase.Phase;
23
24 import javax.inject.Named;
25 import javax.ws.rs.core.Response;
26
27
28 /**
29  * The type Empty output out interceptor.
30  */
31 @Named
32 public class EmptyOutputOutInterceptor extends AbstractOutDatabindingInterceptor {
33
34   public EmptyOutputOutInterceptor() {
35     // To be executed in post logical phase before marshal phase
36     super(Phase.POST_LOGICAL);
37   }
38
39   /**
40    * Intercepts a message.
41    * Interceptors should NOT invoke handleMessage or handleFault
42    * on the next interceptor - the interceptor chain will
43    * take care of this.
44    *
45    * @param message input message.
46    */
47   @Override
48   public void handleMessage(Message message) {
49     //get the message
50     MessageContentsList objs = MessageContentsList.getContentsList(message);
51     if (objs.get(0) instanceof Response) {
52       //check if response is present but entity inside it is null the set a default entity
53       int status = ((Response) objs.get(0)).getStatus();
54       Object entity = ((Response) objs.get(0)).getEntity();
55       // in case of staus 200 and entity is null send InternalEmptyObject in output.
56       if (entity == null && status == 200) {
57         DefaultOutput defaultOutput = new DefaultOutput(status, new InternalEmptyObject());
58         defaultOutput.addMetadata(((Response) objs.get(0)).getMetadata());
59         objs.set(0, defaultOutput);
60       }
61     }
62   }
63 }