aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/service/protocol/icqconstants/IcqStatusEnum.java
blob: 2f63f639a32199f59a451f550011462a346ea7f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package net.java.sip.communicator.service.protocol.icqconstants;

import net.java.sip.communicator.service.protocol.*;
import java.util.*;

/**
 * An enumeration containing all status instances that MUST be supported by
 * an implementation of the ICQ (Oscar) protocol. Implementations may
 * support other forms of PresenceStatus but they MUST ALL support those
 * enumerated here.
 * <p>
 * For testing purposes, this class also provides a <tt>List</tt> containing
 * all of the status fields.
 *
 * @author Emil Ivov
 */
public class IcqStatusEnum
    extends PresenceStatus
{

    /**
     * The Free For Chat ICQ status. Indicates that the user is eager to
     * communicate.
     */
    public static final IcqStatusEnum FREE_FOR_CHAT
        = new IcqStatusEnum(70, "Free For Chat");

    /**
     * The Online ICQ status. Indicate that the user is able and willing to
     * communicate.
     */
    public static final IcqStatusEnum ONLINE = new IcqStatusEnum(65, "Online");

    /**
     * The Invisible ICQ status. Indicates that the user has connectivity even
     * though it may appear otherwise to others, to whom she would appear to be
     * offline.
     */
    public static final IcqStatusEnum INVISIBLE
        = new IcqStatusEnum(45, "Invisible");

    /**
     * The Away ICQ status. Indicates that the user has connectivity but might
     * not be able to immediately act upon initiation of communication.
     */
    public static final IcqStatusEnum AWAY = new IcqStatusEnum(40, "Away");


    /**
     * The Not Available ICQ status. Indicates that the user has connectivity
     * but might not be able to immediately act (i.e. even less immediately than
     * when in an Away status ;-P ) upon initiation of communication.
     *
     */
    public static final IcqStatusEnum NOT_AVAILABLE
        = new IcqStatusEnum(35, "Not Available");

    /**
     * The DND ICQ status. Indicates that the user has connectivity but prefers
     * not to be contacted.
     */
    public static final IcqStatusEnum DO_NOT_DISTURB
        = new IcqStatusEnum(30, "Do Not Disturb");

    /**
     * The Occupied ICQ status. Indicates that the user has connectivity and
     * communication is particularly unwanted.
     */
    public static final IcqStatusEnum OCCUPIED
        = new IcqStatusEnum(25, "Occupied");

    /**
     * The Offline ICQ status. Indicates the user does not seem to be connected
     * to the ICQ network or at least does not want us to know she is
     */
    public static final IcqStatusEnum OFFLINE = new IcqStatusEnum(0, "Offline");

    /**
     * The minimal set of states that any ICQ implementation must support.
     */
    public static final ArrayList icqStatusSet =new ArrayList();
    static{
            icqStatusSet.add(FREE_FOR_CHAT);
            icqStatusSet.add(ONLINE);
            icqStatusSet.add(INVISIBLE);
            icqStatusSet.add(AWAY);
            icqStatusSet.add(NOT_AVAILABLE);
            icqStatusSet.add(DO_NOT_DISTURB);
            icqStatusSet.add(OCCUPIED);
            icqStatusSet.add(OFFLINE);
    }

    /**
     * Creates a status with the specified connectivity coeff and name
     * @param status the connectivity coefficient for the specified status
     * @param statusName String
     */
    protected IcqStatusEnum(int status, String statusName)
    {
        super(status, statusName);
    }
}