KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > handlers > StreamHandler


1 package org.objectweb.celtix.handlers;
2
3 import javax.xml.ws.handler.Handler;
4
5 import org.objectweb.celtix.context.StreamMessageContext;
6
7
8
9 /**
10  * A StreamHandler provides an interception point which gives access
11  * to the data stream immediately before being written to or read from
12  * the underlying transport. The StreamHandler allows transformations
13  * on the marshalled data.
14  */

15 public interface StreamHandler extends Handler<StreamMessageContext> {
16 }
17
Popular Tags