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

org.asteriskjava.manager.event.ZapShowChannelsEvent 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;

/**
 * A ZapShowChannelsEvent is triggered in response to a ZapShowChannelsAction and shows the state of
 * a zap channel.
 * 
 * @see org.asteriskjava.manager.action.ZapShowChannelsAction
 * 
 * @author srt
 * @version $Id: ZapShowChannelsEvent.java 938 2007-12-31 03:23:38Z srt $
 */
public class ZapShowChannelsEvent extends ResponseEvent
{
    /**
     * Serial version identifier
     */
    private static final long serialVersionUID = -3613642267527361400L;
    private Integer channel;
    private String signalling;
    private String context;
    private Boolean dnd;
    private String alarm;

    /**
     * @param source
     */
    public ZapShowChannelsEvent(Object source)
    {
        super(source);
    }

    /**
     * Returns the number of this zap channel.
     */
    public Integer getChannel()
    {
        return channel;
    }

    /**
     * Sets the number of this zap channel.
     */
    public void setChannel(Integer channel)
    {
        this.channel = channel;
    }

    /**
     * Returns the signalling of this zap channel.

* Possible values are: *

    *
  • E & M Immediate
  • *
  • E & M Wink
  • *
  • E & M E1
  • *
  • Feature Group D (DTMF)
  • *
  • Feature Group D (MF)
  • *
  • Feature Group B (MF)
  • *
  • E911 (MF)
  • *
  • FXS Loopstart
  • *
  • FXS Groundstart
  • *
  • FXS Kewlstart
  • *
  • FXO Loopstart
  • *
  • FXO Groundstart
  • *
  • FXO Kewlstart
  • *
  • PRI Signalling
  • *
  • R2 Signalling
  • *
  • SF (Tone) Signalling Immediate
  • *
  • SF (Tone) Signalling Wink
  • *
  • SF (Tone) Signalling with Feature Group D (DTMF)
  • *
  • SF (Tone) Signalling with Feature Group D (MF)
  • *
  • SF (Tone) Signalling with Feature Group B (MF)
  • *
  • GR-303 Signalling with FXOKS
  • *
  • GR-303 Signalling with FXSKS
  • *
  • Pseudo Signalling
  • *
*/ public String getSignalling() { return signalling; } /** * Sets the signalling of this zap channel. */ public void setSignalling(String signalling) { this.signalling = signalling; } /** * Returns the context of this zap channel as defined in zapata.conf. */ public String getContext() { return context; } /** * Sets the context of this zap channel. */ public void setContext(String context) { this.context = context; } /** * Returns whether dnd (do not disturb) is enabled for this zap channel. * * @return Boolean.TRUE if dnd is enabled, Boolean.FALSE if it is disabled, * null if not set. * @since 0.3 */ public Boolean getDnd() { return dnd; } /** * Sets whether dnd (do not disturb) is enabled for this zap channel. * * @param dnd Boolean.TRUE if dnd is enabled, Boolean.FALSE if it is disabled. * @since 0.3 */ public void setDnd(Boolean dnd) { this.dnd = dnd; } /** * Returns the alarm state of this zap channel.

* This may be one of *

    *
  • Red Alarm
  • *
  • Yellow Alarm
  • *
  • Blue Alarm
  • *
  • Recovering
  • *
  • Loopback
  • *
  • Not Open
  • *
  • No Alarm
  • *
*/ public String getAlarm() { return alarm; } /** * Sets the alarm state of this zap channel. */ public void setAlarm(String alarm) { this.alarm = alarm; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy