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

org.asteriskjava.manager.event.ExtensionStatusEvent Maven / Gradle / Ivy

There is a newer version: 3.40.1
Show newest version
/*
 *  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.event;

/**
 * An ExtensionStatusEvent is triggered when the state of an extension changes.

* For this to work for you must provide appropriate hints in your dialplan to * map channels to extensions. *
* Example: *

exten => 1234,1,Dial(SIP/myuser)
 * exten => 1234,hint,SIP/myuser
* Hints can also be used to map the state of multiple channels to an extension: *
exten => 6789,hint,SIP/user1&SIP/user2
*
* It is implemented in manager.c, values for state are defined in * include/asterisk/pbx.h. * * @author srt * @version $Id$ */ public class ExtensionStatusEvent extends ManagerEvent { /** * Serializable version identifier. */ private static final long serialVersionUID = 0L; /** * No device INUSE or BUSY. */ public static final int NOT_INUSE = 0; /** * One or more devices INUSE. */ public static final int INUSE = 1; /** * All devices BUSY. */ public static final int BUSY = 1 << 1; /** * All devices UNAVAILABLE/UNREGISTERED. */ public static final int UNAVAILABLE = 1 << 2; /** * One or more devices RINGING. */ public static final int RINGING = 1 << 3; private String exten; private String context; private String hint; private Integer status; private String callerId; public ExtensionStatusEvent(Object source) { super(source); } /** * Returns the extension. */ public String getExten() { return exten; } /** * Sets the extension. */ public void setExten(String exten) { this.exten = exten; } /** * Returns the context of the extension. */ public String getContext() { return context; } /** * Sets the context of the extension. */ public void setContext(String context) { this.context = context; } /** * Returns the hint assigned to the extension. The hint is used to map a channel (e.g. "SIP/123") to an * extension (e.g. "123").

* Available since Asterisk 1.6. * * @return the hint (channel name) assigned to the extension. * @since 1.0.0 */ public String getHint() { return hint; } public void setHint(String hint) { this.hint = hint; } /** * Returns the state of the extension.

* Possible values are: *

    *
  • RINGING
  • *
  • INUSE | RINGING
  • *
  • INUSE
  • *
  • NOT_INUSE
  • *
  • BUSY
  • *
  • UNAVAILABLE
  • *
*/ public Integer getStatus() { return status; } /** * Sets the state of the extension. */ public void setStatus(Integer status) { this.status = status; } /** * Returns the Caller*ID in the form "Some Name" <1234>. *
* This property is only available on BRIstuffed Asterisk servers. * * @return the Caller*ID. * @since 0.3 */ public String getCallerId() { return callerId; } /** * Sets the Caller*ID. * * @param callerId the Caller*ID. * @since 0.3 */ public void setCallerId(String callerId) { this.callerId = callerId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy