org.asteriskjava.manager.action.PlayDtmfAction 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 PlayDTMFAction plays a DTMF digit on the specified channel.
*
* It is definied in apps/app_senddtmf.c
.
*
* Available since Asterisk 1.2.8
*
* @author srt
* @version $Id$
* @since 0.3
*/
public class PlayDtmfAction extends AbstractManagerAction {
/**
* Serializable version identifier
*/
private static final long serialVersionUID = 9002288048692675696L;
private String channel;
private String digit;
private Integer duration = null;
private Boolean receive;
/**
* Creates a new empty PlayDtmfAction.
*/
public PlayDtmfAction() {
}
/**
* Creates a new PlayDtmfAction that sends the given DTMF digit to the given channel.
*
* @param channel the name of the channel to send the digit to.
* @param digit the DTML digit to play.
*/
public PlayDtmfAction(String channel, String digit) {
this.channel = channel;
this.digit = digit;
}
/**
* Returns the name of this action, i.e. "PlayDTMF".
*/
@Override
public String getAction() {
return "PlayDTMF";
}
/**
* Returns the 'receive' property of this action.
* (since asterisk 16.7.0)
*
* @return the receive property, or null if not set
*/
public Boolean getReceive() {
return this.receive;
}
/**
* Set the receive property of the action.
* (since asterisk 16.7.0)
*
* @param receive value for receive, or null to unset
*/
public void setReceive(Boolean receive) {
this.receive = receive;
}
/**
* Returns the name of the channel to send the digit to.
*
* @return the name of the channel to send the digit to.
*/
public String getChannel() {
return channel;
}
/**
* Sets the name of the channel to send the digit to.
*
* @param channel the name of the channel to send the digit to.
*/
public void setChannel(String channel) {
this.channel = channel;
}
/**
* Returns the DTMF digit to play.
*
* @return the DTMF digit to play.
*/
public String getDigit() {
return digit;
}
/**
* Sets the DTMF digit to play.
*
* @param digit the DTMF digit to play.
*/
public void setDigit(String digit) {
this.digit = digit;
}
public void setDuration(Integer duration)
{
this.duration = duration;
}
public Integer getDuration()
{
return duration;
}
}