01: package org.objectweb.celtix.handlers;
02:
03: import javax.xml.ws.handler.Handler;
04:
05: import org.objectweb.celtix.context.StreamMessageContext;
06:
07: /**
08: * A StreamHandler provides an interception point which gives access
09: * to the data stream immediately before being written to or read from
10: * the underlying transport. The StreamHandler allows transformations
11: * on the marshalled data.
12: */
13: public interface StreamHandler extends Handler<StreamMessageContext> {
14: }
|