* @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;