1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package net.sf.asterisk.manager.event;
18
19 /***
20 * A ConnectEvent is triggered after successful login to the asterisk server.<br>
21 * It is a pseudo event not directly related to an asterisk generated event.
22 *
23 * @author srt
24 * @version $Id: ConnectEvent.java,v 1.3 2005/03/02 23:15:50 srt Exp $
25 */
26 public class ConnectEvent extends ManagerEvent
27 {
28 /***
29 * Serializable version identifier
30 */
31 private static final long serialVersionUID = 3257845467831284784L;
32
33 /***
34 * The version of the manager protocol.
35 */
36 private String protocolIdentifier;
37
38 /***
39 * @param source
40 */
41 public ConnectEvent(Object source)
42 {
43 super(source);
44 }
45
46 /***
47 * Returns the version of the protocol.
48 *
49 * @return the version of the protocol.
50 */
51 public String getProtocolIdentifier()
52 {
53 return protocolIdentifier;
54 }
55
56 /***
57 * Sets the version of the protocol.
58 *
59 * @param protocolIdentifier the version of the protocol.
60 */
61 public void setProtocolIdentifier(String protocolIdentifier)
62 {
63 this.protocolIdentifier = protocolIdentifier;
64 }
65 }