Lines Matching refs:request
45 * that made the offline messages request or to any other session used by the user that becomes
48 * Once the session that made the offline messages request has been closed and the user becomes
77 * @throws XMPPException If the user is not allowed to make this request.
88 * @throws XMPPException If the user is not allowed to make this request or the server does
109 * @throws XMPPException If the user is not allowed to make this request or the server does
125 * request. The request will include the list of stamps that uniquely identifies
131 * this request.
132 * @throws XMPPException If the user is not allowed to make this request or the server does
137 OfflineMessageRequest request = new OfflineMessageRequest();
141 request.addItem(item);
144 PacketFilter responseFilter = new PacketIDFilter(request.getPacketID());
146 // Filter offline messages that were requested by this request
155 // Send the retrieval request to the server.
156 connection.sendPacket(request);
188 * @throws XMPPException If the user is not allowed to make this request or the server does
193 OfflineMessageRequest request = new OfflineMessageRequest();
194 request.setFetch(true);
196 PacketFilter responseFilter = new PacketIDFilter(request.getPacketID());
198 // Filter offline messages that were requested by this request
200 // Send the retrieval request to the server.
201 connection.sendPacket(request);
228 * Deletes the specified list of offline messages. The request will include the list of
232 * @throws XMPPException If the user is not allowed to make this request or the server does
236 OfflineMessageRequest request = new OfflineMessageRequest();
240 request.addItem(item);
243 PacketFilter responseFilter = new PacketIDFilter(request.getPacketID());
245 // Send the deletion request to the server.
246 connection.sendPacket(request);
262 * @throws XMPPException If the user is not allowed to make this request or the server does
266 OfflineMessageRequest request = new OfflineMessageRequest();
267 request.setPurge(true);
269 PacketFilter responseFilter = new PacketIDFilter(request.getPacketID());
271 // Send the deletion request to the server.
272 connection.sendPacket(request);