Home | History | Annotate | Download | only in packet

Lines Matching defs:userID

41     private String userID;

46 * Creates a transcripts request for the given userID.
48 * @param userID the id of the user to get his conversations transcripts.
50 public Transcripts(String userID) {
51 this.userID = userID;
58 * @param userID the id of the user. Could be a real JID or a unique String that identifies
62 public Transcripts(String userID, List<Transcripts.TranscriptSummary> summaries) {
63 this.userID = userID;
68 * Returns the id of the user that was involved in the conversations. The userID could be a
69 * real JID if the connected user was not anonymous. Otherwise, the userID will be a String
76 return userID;
94 buf.append("<transcripts xmlns=\"http://jivesoftware.com/protocol/workgroup\" userID=\"")
95 .append(userID)