Update of /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/manager/action
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18972/src/java/net/sf/asterisk/manager/action
Modified Files:
StopMonitorAction.java
Log Message:
Removed unused attributes
Index: StopMonitorAction.java
===================================================================
RCS file: /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/manager/action/StopMonitorAction.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -p -r1.2 -r1.3
--- StopMonitorAction.java 23 Feb 2005 22:50:58 -0000 1.2
+++ StopMonitorAction.java 27 Feb 2005 15:10:02 -0000 1.3
@@ -29,13 +29,16 @@ public class StopMonitorAction extends M
* Serializable version identifier
*/
private static final long serialVersionUID = -6316010713240389305L;
+
+ /**
+ * The name of the channel to end monitoring.
+ */
private String channel;
- private String file;
- private String format;
- private Boolean mix;
/**
* Returns the name of this action, i.e. "StopMonitor".
+ *
+ * @return the name of this action.
*/
public String getAction()
{
@@ -44,6 +47,8 @@ public class StopMonitorAction extends M
/**
* Returns the name of the channel to end monitoring.
+ *
+ * @return the name of the channel to end monitoring.
*/
public String getChannel()
{
@@ -53,6 +58,8 @@ public class StopMonitorAction extends M
/**
* Sets the name of the channel to end monitoring.<br>
* This property is mandatory.
+ *
+ * @param channel the name of the channel to end monitoring.
*/
public void setChannel(String channel)
{
|