blob: aea85e70ec1cff2c53b2ac7f25e1958aac554405 (
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Copyright @ 2015 Atlassian Pty Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.java.sip.communicator.service.protocol.event;
import java.util.*;
import net.java.sip.communicator.service.protocol.*;
/**
* <tt>MessageDeliveredEvent</tt>s confirm successful delivery of an instant
* message. Here, it's applied to an <tt>AdHocChatRoom</tt>.
*
* @author Valentin Martinet
*/
@SuppressWarnings("serial")
public class AdHocChatRoomMessageDeliveredEvent
extends EventObject
{
/**
* An event type indicating that the message being received is a standard
* conversation message sent by another participant of the ad-hoc chat room
* to all current participants.
*/
public static final int CONVERSATION_MESSAGE_DELIVERED = 1;
/**
* An event type indicating that the message being received is a special
* message that sent by either another participant or the server itself,
* indicating that some kind of action (other than the delivery of a
* conversation message) has occurred. Action messages are widely used
* in IRC through the /action and /me commands
*/
public static final int ACTION_MESSAGE_DELIVERED = 2;
/**
* A timestamp indicating the exact date when the event occurred.
*/
private final Date timestamp;
/**
* The received <tt>Message</tt>.
*/
private Message message = null;
/**
* The type of message event that this instance represents.
*/
private int eventType = -1;
/**
* Creates a <tt>MessageDeliveredEvent</tt> representing delivery of the
* <tt>source</tt> message to the specified <tt>to</tt> contact.
*
* @param source the <tt>AdHocChatRoom</tt> which triggered this event.
* @param timestamp a date indicating the exact moment when the event
* occurred
* @param message the message that triggered this event.
* @param eventType indicating the type of the delivered event. It's
* either an ACTION_MESSAGE_DELIVERED or a CONVERSATION_MESSAGE_DELIVERED.
*/
public AdHocChatRoomMessageDeliveredEvent( AdHocChatRoom source,
Date timestamp,
Message message,
int eventType)
{
super(source);
this.timestamp = timestamp;
this.message = message;
this.eventType = eventType;
}
/**
* Returns the received message.
*
* @return the <tt>Message</tt> that triggered this event.
*/
public Message getMessage()
{
return this.message;
}
/**
* A timestamp indicating the exact date when the event occurred.
*
* @return a Date indicating when the event occurred.
*/
public Date getTimestamp()
{
return this.timestamp;
}
/**
* Returns the <tt>AdHocChatRoom</tt> that triggered this event.
*
* @return the <tt>AdHocChatRoom</tt> that triggered this event.
*/
public AdHocChatRoom getSourceAdHocChatRoom()
{
return (AdHocChatRoom) this.getSource();
}
/**
* Returns the type of message event represented by this event instance.
* Message event type is one of the XXX_MESSAGE_DELIVERED fields of this
* class.
*
* @return one of the XXX_MESSAGE_DELIVERED fields of this
* class indicating the type of this event.
*/
public int getEventType()
{
return this.eventType;
}
}
|