HomeSort by relevance Sort by last modified time
    Searched refs:userJID (Results 1 - 8 of 8) sorted by null

  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
RevokedOffer.java 26 * the reason, the workgroup, the userJID, and the timestamp which the message was received.<br>
32 private String userJID;
41 * @param userJID the JID of the user for which this revocation was issued.
48 RevokedOffer(String userJID, String userID, String workgroupName, String sessionID,
52 this.userJID = userJID;
61 return userJID;
OfferConfirmation.java 29 private String userJID;
33 return userJID;
36 public void setUserJID(String userJID) {
37 this.userJID = userJID;
Offer.java 44 private String userJID;
60 * @param userJID the XMPP address of the user from which the offer originates.
69 String userJID, String workgroupName, Date expiresDate,
75 this.userJID = userJID;
121 return userJID;
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
OfferRevokeProvider.java 35 String userJID = parser.getAttributeValue("", "jid");
37 String userID = userJID;
63 return new OfferRevokePacket(userJID, userID, reason, sessionID);
68 private String userJID;
73 public OfferRevokePacket (String userJID, String userID, String cause, String sessionID) {
74 this.userJID = userJID;
81 return userJID;
OfferRequestProvider.java 59 String userJID = parser.getAttributeValue("", "jid");
61 String userID = userJID;
104 new OfferRequestPacket(userJID, userID, timeout, metaData, sessionID, content);
114 private String userJID;
119 public OfferRequestPacket(String userJID, String userID, int timeout, Map<String, List<String>> metaData,
122 this.userJID = userJID;
131 * Returns the userID, which is either the same as the userJID or a special
146 return userJID;
185 buf.append("<offer xmlns=\"http://jabber.org/protocol/workgroup\" jid=\"").append(userJID).append("\">");
    [all...]
  /external/smack/src/org/jivesoftware/smack/
ChatManager.java 139 * @param userJID the user this chat is with.
143 public Chat createChat(String userJID, MessageListener listener) {
149 return createChat(userJID, threadID, listener);
155 * @param userJID the jid of the user this chat is with
160 public Chat createChat(String userJID, String thread, MessageListener listener) {
168 chat = createChat(userJID, thread, true);
173 private Chat createChat(String userJID, String threadID, boolean createdLocally) {
174 Chat chat = new Chat(this, userJID, threadID);
176 jidChats.put(userJID, chat);
177 baseJidChats.put(StringUtils.parseBareAddress(userJID), chat)
    [all...]
SASLAuthentication.java 458 String userJID = response.getJid();
476 return userJID;
SASLAuthentication.java.orig 458 String userJID = response.getJid();
476 return userJID;

Completed in 120 milliseconds