Update of /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/manager/action
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19492/src/java/net/sf/asterisk/manager/action
Modified Files:
QueueRemoveAction.java
Log Message:
Removed unued attribute penality
Index: QueueRemoveAction.java
===================================================================
RCS file: /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/manager/action/QueueRemoveAction.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -p -r1.2 -r1.3
--- QueueRemoveAction.java 23 Feb 2005 22:50:58 -0000 1.2
+++ QueueRemoveAction.java 27 Feb 2005 15:12:16 -0000 1.3
@@ -29,12 +29,17 @@ public class QueueRemoveAction extends M
* Serializable version identifier
*/
private static final long serialVersionUID = -4296471882045706821L;
+
+ /**
+ * The name of the queue the member will be removed from.
+ */
private String queue;
private String iface;
- private Integer penality;
/**
* Returns the name of this action, i.e. "QueueRemove".
+ *
+ * @return the name of this action.
*/
public String getAction()
{
@@ -43,6 +48,8 @@ public class QueueRemoveAction extends M
/**
* Returns the name of the queue the member will be removed from.
+ *
+ * @return the name of the queue the member will be removed from.
*/
public String getQueue()
{
@@ -52,6 +59,8 @@ public class QueueRemoveAction extends M
/**
* Sets the name of the queue the member will be removed from.<br>
* This property is mandatory.
+ *
+ * @param queue the name of the queue the member will be removed from.
*/
public void setQueue(String queue)
{
|