Package org.apache.sandesha.ws.rm

Examples of org.apache.sandesha.ws.rm.TerminateSequence


        this.storageManger = storageManger;
    }

    public boolean processMessage(RMMessageContext rmMessageContext) throws AxisFault {

        TerminateSequence terminateSeq = rmMessageContext.getRMHeaders().getTerminateSequence();
        if (terminateSeq != null && terminateSeq.getIdentifier() != null) {
            String seqID = terminateSeq.getIdentifier().getIdentifier();
            storageManger.setTerminateReceived(seqID);
        }
        return false;
    }
View Full Code Here

TOP

Related Classes of org.apache.sandesha.ws.rm.TerminateSequence

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.