aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/enums/MessageConfirmation.java
blob: bd4a9ccbcb795de93e4b8b16b3ddd84f5e1f5a7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package de.thedevstack.conversationsplus.enums;

/**
 * This enum represents the different combinations
 * of confirmations which need to be requested, processed
 * or sent.
 */
public enum MessageConfirmation {
    NONE,
    /**
     * Message Delivery Receipts (XEP-0184)
     */
    DELIVERY_RECEIPT,
    /**
     * Chat Markers (XEP-0333)
     */
    CHAT_MARKERS,
    /**
     * Message Delivery Receipts (XEP-0184) and
     * Chat Markers (XEP-0333)
     */
    DELIVERY_RECEIPT_CHAT_MARKERS;
}