FileDocCategorySizeDatePackage
ServerOutboundSequence.javaAPI DocExample3184Tue May 29 16:56:42 BST 2007com.sun.xml.ws.rm.jaxws.runtime.server

ServerOutboundSequence

public class ServerOutboundSequence extends com.sun.xml.ws.rm.jaxws.runtime.OutboundSequence
A ServerOutboundSequence represents all the response messages to requests belonging to a companion ServerInboundSequence.

Fields Summary
Constructors Summary
public ServerOutboundSequence(ServerInboundSequence seq, String id, com.sun.xml.ws.rm.jaxws.runtime.SequenceConfig config)
Public ctor stores companion inbound sequence as well as sequence id from an Offer element in the CreateSequence message from the client. If the id is null then no messages are stored in this ServerOutboundSequence.

        inboundSequence = seq;
        this.config = config;
        setId(id);
        saveMessages = true;
        ackHandler = new AcknowledgementHandler(config);
    
Methods Summary