io.tracee.binding.cxf.interceptor.TraceeResponseOutInterceptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tracee-cxf Show documentation
Show all versions of tracee-cxf Show documentation
Please refer to https://github.com/tracee/tracee.
package io.tracee.binding.cxf.interceptor;
import io.tracee.TraceeBackend;
import io.tracee.configuration.TraceeFilterConfiguration;
import io.tracee.configuration.TraceeFilterConfiguration.Profile;
import org.apache.cxf.interceptor.Fault;
import org.apache.cxf.message.Message;
import org.apache.cxf.message.MessageUtils;
import org.apache.cxf.phase.Phase;
import static io.tracee.configuration.TraceeFilterConfiguration.Channel.OutgoingResponse;
public class TraceeResponseOutInterceptor extends AbstractTraceeOutInterceptor {
public TraceeResponseOutInterceptor(TraceeBackend backend) {
this(backend, Profile.DEFAULT);
}
public TraceeResponseOutInterceptor(TraceeBackend backend, String profile) {
super(Phase.USER_LOGICAL, OutgoingResponse, backend, profile);
}
@Override
public void handleMessage(Message message) throws Fault {
super.handleMessage(message);
if (shouldHandleMessage(message)) {
backend.clear();
}
}
@Override
protected boolean shouldHandleMessage(Message message) {
return !MessageUtils.isRequestor(message);
}
}