aboutsummaryrefslogtreecommitdiff
path: root/cxfImplementations/PlainInputInterceptor.java
diff options
context:
space:
mode:
authorAndreas Fitzek <andreas.fitzek@iaik.tugraz.at>2016-03-14 16:29:25 +0100
committerAndreas Fitzek <andreas.fitzek@iaik.tugraz.at>2016-03-14 16:29:25 +0100
commite86d9677b16f54850cbd4c91c9f714754a75b67b (patch)
tree64d08dac31e6ff40e690139af9d6728bacdbd508 /cxfImplementations/PlainInputInterceptor.java
parent84293bd12f63b59852026cab02035fc9ebee626a (diff)
downloadmoa-sig-e86d9677b16f54850cbd4c91c9f714754a75b67b.tar.gz
moa-sig-e86d9677b16f54850cbd4c91c9f714754a75b67b.tar.bz2
moa-sig-e86d9677b16f54850cbd4c91c9f714754a75b67b.zip
CXF Webservice classes, excluded for now
Diffstat (limited to 'cxfImplementations/PlainInputInterceptor.java')
-rw-r--r--cxfImplementations/PlainInputInterceptor.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/cxfImplementations/PlainInputInterceptor.java b/cxfImplementations/PlainInputInterceptor.java
new file mode 100644
index 0000000..29bfb87
--- /dev/null
+++ b/cxfImplementations/PlainInputInterceptor.java
@@ -0,0 +1,22 @@
+package at.gv.egovernment.moa.spss.server.webservice.impl;
+
+import org.apache.cxf.binding.soap.SoapMessage;
+import org.apache.cxf.binding.soap.interceptor.AbstractSoapInterceptor;
+import org.apache.cxf.interceptor.Fault;
+import org.apache.cxf.phase.Phase;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class PlainInputInterceptor extends AbstractSoapInterceptor {
+ private static final Logger logger = LoggerFactory.getLogger(PlainInputInterceptor.class);
+
+ public PlainInputInterceptor() {
+ super(Phase.POST_PROTOCOL);
+ }
+
+ @Override
+ public void handleMessage(SoapMessage message) throws Fault {
+ logger.debug("In Interceptor {}", message.getId());
+ }
+
+}