/external/smack/src/org/jivesoftware/smackx/ |
OfflineMessageManager.java | 28 import org.jivesoftware.smack.packet.IQ; 158 IQ answer = (IQ) response.nextResult(SmackConfiguration.getPacketReplyTimeout()); 203 IQ answer = (IQ) response.nextResult(SmackConfiguration.getPacketReplyTimeout()); 248 IQ answer = (IQ) response.nextResult(SmackConfiguration.getPacketReplyTimeout()); 274 IQ answer = (IQ) response.nextResult(SmackConfiguration.getPacketReplyTimeout());
|
/external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/ |
CloseListener.java | 21 import org.jivesoftware.smack.packet.IQ;
41 Close.class), new IQTypeFilter(IQ.Type.SET));
|
InBandBytestreamSession.java | 30 import org.jivesoftware.smack.packet.IQ;
98 case IQ:
173 IQ confirmClose = IQ.createResultIQ(closeRequest);
433 * IQIBBInputStream class implements IBBInputStream to be used with IQ stanzas encapsulating the
453 IQ unexpectedRequest = IQ.createErrorResponse((IQ) packet, new XMPPError(
463 IQ badRequest = IQ.createErrorResponse((IQ) packet, new XMPPError( [all...] |
InitiationListener.java | 24 import org.jivesoftware.smack.packet.IQ;
48 new IQTypeFilter(IQ.Type.SET));
|
/external/smack/src/org/jivesoftware/smackx/ping/ |
PingManager.java | 39 import org.jivesoftware.smack.packet.IQ; 188 * Pings the given jid and returns the IQ response which is either of 189 * IQ.Type.ERROR or IQ.Type.RESULT. If we are not connected or if there was 199 public IQ ping(String jid, long pingTimeout) { 211 IQ result = (IQ) collector.nextResult(pingTimeout); 218 * Pings the given jid and returns the IQ response with the default 224 public IQ ping(String jid) { 243 IQ result = ping(jid, pingTimeout) [all...] |
/external/smack/src/org/jivesoftware/smackx/provider/ |
DiscoverItemsProvider.java | 23 import org.jivesoftware.smack.packet.IQ; 35 public IQ parseIQ(XmlPullParser parser) throws Exception {
|
MUCAdminProvider.java | 23 import org.jivesoftware.smack.packet.IQ; 35 public IQ parseIQ(XmlPullParser parser) throws Exception {
|
DiscoverInfoProvider.java | 23 import org.jivesoftware.smack.packet.IQ; 36 public IQ parseIQ(XmlPullParser parser) throws Exception {
|
/external/smack/src/org/jivesoftware/smackx/pubsub/provider/ |
PubSubProvider.java | 16 import org.jivesoftware.smack.packet.IQ;
25 * Parses the root pubsub packet extensions of the {@link IQ} packet and returns
32 public IQ parseIQ(XmlPullParser parser) throws Exception
|
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/ |
Transcript.java | 22 import org.jivesoftware.smack.packet.IQ;
37 public class Transcript extends IQ {
|
TranscriptProvider.java | 23 import org.jivesoftware.smack.packet.IQ;
42 public IQ parseIQ(XmlPullParser parser) throws Exception {
|
AgentStatusRequest.java | 22 import org.jivesoftware.smack.packet.IQ;
38 public class AgentStatusRequest extends IQ {
121 public IQ parseIQ(XmlPullParser parser) throws Exception {
|
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/ |
AgentSession.java | 512 request.setType(IQ.Type.GET);
681 // Acknowledge the IQ set.
682 IQ reply = new IQ() {
689 reply.setType(IQ.Type.RESULT);
777 // Acknowledge the IQ set.
778 IQ reply = new IQ() {
784 reply.setType(IQ.Type.RESULT);
1036 IQ iq = new IQ() { local 1088 IQ iq = new IQ() { local [all...] |
/external/smack/src/org/jivesoftware/smackx/workgroup/ext/notes/ |
ChatNotes.java | 22 import org.jivesoftware.smack.packet.IQ;
27 * IQ packet for retrieving and adding Chat Notes.
29 public class ChatNotes extends IQ {
86 public IQ parseIQ(XmlPullParser parser) throws Exception {
|
/external/smack/src/org/jivesoftware/smackx/workgroup/settings/ |
OfflineSettings.java | 23 import org.jivesoftware.smack.packet.IQ;
27 public class OfflineSettings extends IQ {
115 public IQ parseIQ(XmlPullParser parser) throws Exception {
|
/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/ |
Socks5BytestreamRequest.java | 22 import org.jivesoftware.smack.packet.IQ;
275 IQ errorIQ = IQ.createErrorResponse(this.bytestreamRequest, error);
289 response.setType(IQ.Type.RESULT);
|
InitiationListener.java | 24 import org.jivesoftware.smack.packet.IQ;
44 new IQTypeFilter(IQ.Type.SET));
|
Socks5ClientForInitiator.java | 22 import org.jivesoftware.smack.packet.IQ;
109 activate.setType(IQ.Type.SET);
|
/external/smack/src/org/jivesoftware/smackx/packet/ |
StreamInitiation.java | 24 import org.jivesoftware.smack.packet.IQ;
33 public class StreamInitiation extends IQ {
46 * sent back on type='result', since the <iq/> "id" attribute provides the
134 * @see org.jivesoftware.smack.packet.IQ#getChildElementXML()
138 if (this.getType().equals(IQ.Type.SET)) {
155 else if (this.getType().equals(IQ.Type.RESULT)) {
159 throw new IllegalArgumentException("IQ Type not understood");
|
/external/smack/src/org/jivesoftware/smack/packet/ |
Authentication.java | 29 public class Authentication extends IQ { 40 * modes back from the server, change the type of the IQ packet to "get": 42 * <p><tt>setType(IQ.Type.GET);</tt> 45 setType(IQ.Type.SET); 150 buf.append("<query xmlns=\"jabber:iq:auth\">");
|
/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/provider/ |
BytestreamsProvider.java | 16 import org.jivesoftware.smack.packet.IQ;
28 public IQ parseIQ(XmlPullParser parser) throws Exception {
|
/external/smack/src/org/jivesoftware/smackx/muc/ |
MultiUserChat.java | 52 import org.jivesoftware.smack.packet.IQ; 558 MUCOwner iq = new MUCOwner(); local 559 iq.setTo(room); 560 iq.setType(IQ.Type.GET); 563 PacketFilter responseFilter = new PacketIDFilter(iq.getPacketID()); 566 connection.sendPacket(iq); 568 IQ answer = (IQ) response.nextResult(SmackConfiguration.getPacketReplyTimeout()); 590 MUCOwner iq = new MUCOwner() local 694 MUCOwner iq = new MUCOwner(); local 1376 MUCOwner iq = new MUCOwner(); local 1404 MUCOwner iq = new MUCOwner(); local 1442 MUCAdmin iq = new MUCAdmin(); local 1472 MUCAdmin iq = new MUCAdmin(); local 1501 MUCAdmin iq = new MUCAdmin(); local 1529 MUCAdmin iq = new MUCAdmin(); local 1696 MUCOwner iq = new MUCOwner(); local 1737 MUCAdmin iq = new MUCAdmin(); local 1799 MUCAdmin iq = new MUCAdmin(); local [all...] |
/external/smack/src/org/jivesoftware/smack/ |
PrivacyListManager.java | 23 import org.jivesoftware.smack.packet.IQ;
51 PacketFilter packetFilter = new AndFilter(new IQTypeFilter(IQ.Type.SET),
52 new PacketExtensionFilter("query", "jabber:iq:privacy"));
142 // Prepare the IQ packet to send
143 IQ iq = new IQ() {
148 iq.setType(IQ.Type.RESULT);
149 iq.setFrom(packet.getFrom()); [all...] |
SASLAuthentication.java | 25 import org.jivesoftware.smack.packet.IQ;
455 else if (response.getType() == IQ.Type.ERROR) {
466 IQ ack = (IQ) collector.nextResult(SmackConfiguration.getPacketReplyTimeout());
472 else if (ack.getType() == IQ.Type.ERROR) {
|
/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/packet/ |
Bytestream.java | 21 import org.jivesoftware.smack.packet.IQ;
29 public class Bytestream extends IQ {
217 if (this.getType().equals(IQ.Type.SET)) {
234 else if (this.getType().equals(IQ.Type.RESULT)) {
246 else if (this.getType().equals(IQ.Type.GET)) {
|