Examples of DurableTestParticipant


Examples of org.jboss.jbossts.xts.servicetests.service.participant.DurableTestParticipant

     * @throws Exception if an error occurs deserializing the durable participant
     */
    public Durable2PCParticipant deserialize(String id, ObjectInputStream stream) throws Exception {
        if (id.startsWith(Constants.PARTICIPANT_ID_PREFIX + "DurableTestParticipant")) {
            System.out.println("xts service test : attempting to deserialize WS-AT participant " + id);
            DurableTestParticipant participant = (DurableTestParticipant)stream.readObject();
            System.out.println("xts service test : deserialized WS-AT participant " + id);
            return participant;
        }

        return null;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.