Home | History | Annotate | Download | only in packet

Lines Matching defs:sessionID

38     private String sessionID;

42 * Creates a transcript request for the given sessionID.
44 * @param sessionID the id of the session to get the conversation transcript.
46 public Transcript(String sessionID) {
47 this.sessionID = sessionID;
52 * Creates a new transcript for the given sessionID and list of packets. The list of packets
55 * @param sessionID the id of the session that generated this conversation transcript.
58 public Transcript(String sessionID, List<Packet> packets) {
59 this.sessionID = sessionID;
64 * Returns id of the session that generated this conversation transcript. The sessionID is a
70 return sessionID;
85 buf.append("<transcript xmlns=\"http://jivesoftware.com/protocol/workgroup\" sessionID=\"")
86 .append(sessionID)