01: package org.objectweb.celtix.context;
02:
03: import java.io.IOException;
04: import java.io.OutputStream;
05:
06: import javax.xml.ws.handler.MessageContext;
07:
08: public interface OutputStreamMessageContext extends MessageContext {
09: String ONEWAY_MESSAGE_TF = "org.objectweb.celtix.transport.isOneWayMessage";
10:
11: OutputStream getOutputStream();
12:
13: void setOutputStream(OutputStream out);
14:
15: void setFault(boolean isFault);
16:
17: boolean isFault();
18:
19: void setOneWay(boolean isOneWay);
20:
21: boolean isOneWay();
22:
23: InputStreamMessageContext getCorrespondingInputStreamContext()
24: throws IOException;
25: }
|