001/**
002 *
003 * Copyright 2013-2014 Georg Lukas
004 *
005 * Licensed under the Apache License, Version 2.0 (the "License");
006 * you may not use this file except in compliance with the License.
007 * You may obtain a copy of the License at
008 *
009 *     http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.jivesoftware.smackx.receipts;
018
019/**
020 * Interface for received receipt notifications.
021 * 
022 * Implement this and add a listener to get notified. 
023 */
024public interface ReceiptReceivedListener {
025    /**
026     * Callback invoked when a new receipt got received.
027     * <p>
028     * {@code receiptId} correspondents to the message ID, which can be obtained with
029     * {@link org.jivesoftware.smack.packet.Packet#getPacketID()}.
030     * </p>
031     * 
032     * @param fromJid the jid that send this receipt
033     * @param toJid the jid which received this receipt
034     * @param receiptId the message ID of the packet which has been received and this receipt is for
035     */
036    void onReceiptReceived(String fromJid, String toJid, String receiptId);
037}