All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.asteriskjava.manager.action.ConfbridgeUnlockAction Maven / Gradle / Ivy

There is a newer version: 3.40.1
Show newest version
package org.asteriskjava.manager.action;

/**
 * The ConfbridgeUnlockAction unlocks a specified conference.
 * 
 * @author jmb
 * @version $Id$
 */
public class ConfbridgeUnlockAction extends AbstractManagerAction {

	/**
     * Serializable version identifier
     */
	private static final long serialVersionUID = 88241670521642551L;
	
	private String conference;
	
    /**
     * Creates a new empty ConfbridgeUnlockAction.
     */
	public ConfbridgeUnlockAction() {
		super();
	}
	
	/**
     * Creates a new ConfbridgeUnlockAction for a specific conference.
     */	
	public ConfbridgeUnlockAction(String conference) {
		this.setConference(conference);
	}
	
    /**
     * Returns the name of this action "ConfbridgeUnlock".
     */
	@Override
	public String getAction() {
		return "ConfbridgeUnlock";
	}
	
	/**
     * Sets the id of the conference to unlock.
     */	
	public void setConference(String conference) {
		this.conference = conference;
	}
	
    /**
     * Returns the id of the conference to unlock.
     */ 
	public String getConference() {
		return conference;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy