Searched defs:invitee (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dmucinvitesendtask.cc35 MucInviteSendTask::Send(const Jid& to, const Jid& invitee) { argument
43 invite->AddAttr(QN_TO, invitee.Str());
H A Dcallclient.cc1387 buzz::Jid invitee = iter->second.jid; local
1388 muc_invite_send_->Send(invite_to, invitee);
1393 buzz::Jid invitee = user_jid; local
1394 muc_invite_send_->Send(invite_to, invitee);
/external/smack/src/org/jivesoftware/smackx/muc/
H A DInvitationRejectionListener.java24 * A listener that is fired anytime an invitee declines or rejects an invitation.
31 * Called when the invitee declines the invitation.
33 * @param invitee the invitee that declined the invitation. (e.g. hecate@shakespeare.lit).
34 * @param reason the reason why the invitee declined the invitation.
36 public abstract void invitationDeclined(String invitee, String reason); argument
H A DMultiUserChat.java729 * will be sent to the room which in turn will forward the invitation to the invitee.<p>
731 * If the room is password-protected, the invitee will receive a password to use to join
732 * the room. If the room is members-only, the the invitee may be added to the member list.
743 * will be sent to the room which in turn will forward the invitation to the invitee.<p>
745 * If the room is password-protected, the invitee will receive a password to use to join
746 * the room. If the room is members-only, the the invitee may be added to the member list.
769 * Informs the sender of an invitation that the invitee declines the invitation. The rejection
775 * @param reason the reason why the invitee is declining the invitation.
843 * @param invitee the user being invited.
846 private void fireInvitationRejectionListeners(String invitee, Strin argument
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DRoomInvitation.java51 private String invitee; field in class:RoomInvitation
65 * Text provided by the inviter explaining the reason why the invitee is invited.
69 public RoomInvitation(Type type, String invitee, String sessionID, String reason) { argument
71 this.invitee = invitee;
109 if (invitee != null) {
110 buf.append("<invitee>").append(invitee).append("</invitee>");
157 else if ("invitee"
[all...]
H A DRoomTransfer.java51 private String invitee; field in class:RoomTransfer
65 * Text provided by the inviter explaining the reason why the invitee is invited.
69 public RoomTransfer(RoomTransfer.Type type, String invitee, String sessionID, String reason) { argument
71 this.invitee = invitee;
109 if (invitee != null) {
110 buf.append("<invitee>").append(invitee).append("</invitee>");
157 else if ("invitee"
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/
H A DAgentSession.java1008 * Invites a user or agent to an existing session support. The provided invitee's JID can be of
1018 * the invitation to fail. The inviter will eventually receive a message error indicating that the invitee
1027 * @param invitee JID of entity that will get the invitation.
1028 * @param sessionID ID of the support session that the invitee is being invited.
1033 public void sendRoomInvitation(RoomInvitation.Type type, String invitee, String sessionID, String reason) argument
1035 final RoomInvitation invitation = new RoomInvitation(type, invitee, sessionID, reason);
1062 * Transfer an existing session support to another user or agent. The provided invitee's JID can be of
1071 * Once the invitee joins the support room the workgroup service will kick the inviter from the room.<p>
1079 * @param invitee JID of entity that will get the invitation.
1080 * @param sessionID ID of the support session that the invitee i
1085 sendRoomTransfer(RoomTransfer.Type type, String invitee, String sessionID, String reason) argument
[all...]

Completed in 179 milliseconds