Update of /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/manager/event
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21623/src/java/net/sf/asterisk/manager/event
Modified Files:
AgentLogoffEvent.java
Log Message:
Removed unused attributes loginChan and reason
Index: AgentLogoffEvent.java
===================================================================
RCS file: /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/manager/event/AgentLogoffEvent.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -p -r1.2 -r1.3
--- AgentLogoffEvent.java 23 Feb 2005 22:50:58 -0000 1.2
+++ AgentLogoffEvent.java 27 Feb 2005 15:19:54 -0000 1.3
@@ -31,10 +31,12 @@ public class AgentLogoffEvent extends Ma
* Serializable version identifier
*/
private static final long serialVersionUID = -3482474719161350942L;
+
+ /**
+ * The name of the agent that logged off.
+ */
private String agent;
- private String loginChan;
private String loginTime;
- private String reason;
private String uniqueId;
/**
@@ -47,6 +49,8 @@ public class AgentLogoffEvent extends Ma
/**
* Returns the name of the agent that logged off.
+ *
+ * @return the name of the agent that logged off.
*/
public String getAgent()
{
@@ -55,6 +59,8 @@ public class AgentLogoffEvent extends Ma
/**
* Sets the name of the agent that logged off.
+ *
+ * @param agent the name of the agent that logged off.
*/
public void setAgent(String agent)
{
|