org.asteriskjava.manager.action.QueuePauseAction Maven / Gradle / Ivy
Show all versions of asterisk-java Show documentation
/*
* Copyright 2004-2006 Stefan Reuter
*
* 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 org.asteriskjava.manager.action;
/**
* The QueuePauseAction makes a queue member temporarily unavailabe (or
* available again).
* It is implemented in apps/app_queue.c
* Available since Asterisk 1.2.
*
* @author srt
* @version $Id$
* @since 0.2
*/
public class QueuePauseAction extends AbstractManagerAction {
/**
* Serializable version identifier
*/
private static final long serialVersionUID = -4296471882045706821L;
private String iface;
private Boolean paused;
private String queue;
private String reason;
/**
* Creates a new empty QueuePauseAction.
*/
public QueuePauseAction() {
}
/**
* Creates a new QueuePauseAction that makes the member on the given
* interface unavailable on all queues.
*
* @param iface the interface of the member to make unavailable
*/
public QueuePauseAction(String iface) {
this.iface = iface;
this.paused = Boolean.TRUE;
}
/**
* Creates a new QueuePauseAction that makes the member on the given
* interface unavailable on the given queue.
*
* @param iface the interface of the member to make unavailable
* @param queue the queue the member is made unvailable on
*/
public QueuePauseAction(String iface, String queue) {
this.iface = iface;
this.queue = queue;
this.paused = Boolean.TRUE;
}
/**
* Creates a new QueuePauseAction that makes the member on the given
* interface available or unavailable on all queues.
*
* @param iface the interface of the member to make unavailable
* @param paused Boolean.TRUE to make the member unavailbale, Boolean.FALSE
* to make the member available
*/
public QueuePauseAction(String iface, Boolean paused) {
this.iface = iface;
this.paused = paused;
}
/**
* Creates a new QueuePauseAction that makes the member on the given
* interface unavailable on the given queue.
*
* @param iface the interface of the member to make unavailable
* @param queue the queue the member is made unvailable on
* @param paused Boolean.TRUE to make the member unavailbale, Boolean.FALSE
* to make the member available
*/
public QueuePauseAction(String iface, String queue, Boolean paused) {
this.iface = iface;
this.queue = queue;
this.paused = paused;
}
/**
* Returns the name of this action, i.e. "QueuePause".
*
* @return the name of this action.
*/
@Override
public String getAction() {
return "QueuePause";
}
/**
* Returns the interface of the member to make available or unavailable.
*
* @return the interface of the member to make available or unavailable.
*/
public String getInterface() {
return iface;
}
/**
* Sets the interface of the member to make available or unavailable.
* This property is mandatory.
*
* @param iface the interface of the member to make available or
* unavailable.
*/
public void setInterface(String iface) {
this.iface = iface;
}
/**
* Returns the name of the queue the member is made available or unavailable
* on.
*
* @return the name of the queue the member is made available or unavailable
* on or null
for all queues.
*/
public String getQueue() {
return queue;
}
/**
* Sets the name of the queue the member is made available or unavailable
* on.
*
* @param queue the name of the queue the member is made available or
* unavailable on or null
for all queues.
*/
public void setQueue(String queue) {
this.queue = queue;
}
/**
* Returns if the member is made available or unavailable.
*
* @return Boolean.TRUE to make the member unavailbale, Boolean.FALSE to
* make the member available
*/
public Boolean getPaused() {
return paused;
}
/**
* Sets if the member is made available or unavailable.
* This property is mandatory.
*
* @param paused Boolean.TRUE to make the member unavailbale, Boolean.FALSE
* to make the member available
*/
public void setPaused(Boolean paused) {
this.paused = paused;
}
/**
* Sets the name of the local reason.
* Available since Asterisk 1.6.
*
* @return Name of the local reason for clears the flag.
*/
public String getReason() {
return reason;
}
/**
* Returns the name of the reason.
* Available since Asterisk 1.6.
*
* @param reason Name of the local reason for clears the flag.
*/
public void setReason(String reason) {
this.reason = reason;
}
}