2 * Copyright © 2016-2017 European Support Limited
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.openecomp.server.interceptors;
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;
24 import javax.inject.Named;
25 import javax.ws.rs.core.Response;
29 * The type Empty output out interceptor.
32 public class EmptyOutputOutInterceptor extends AbstractOutDatabindingInterceptor {
34 public EmptyOutputOutInterceptor() {
35 // To be executed in post logical phase before marshal phase
36 super(Phase.POST_LOGICAL);
40 * Intercepts a message.
41 * Interceptors should NOT invoke handleMessage or handleFault
42 * on the next interceptor - the interceptor chain will
45 * @param message input message.
48 public void handleMessage(Message 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);