org.asteriskjava.manager.event.NewCallerIdEvent 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.event;
/**
* A NewCallerIdEvent is triggered when the caller id of a channel changes.
* It is implemented in channel.c
*
* @author srt
* @version $Id$
*/
public class NewCallerIdEvent extends AbstractChannelEvent
{
/**
* Serializable version identifier.
*/
static final long serialVersionUID = 6639570533512201213L;
/**
* Callerid presentation/screening.
*/
private Integer cidCallingPres;
private String cidCallingPresTxt;
private String language;
private String linkedId;
public NewCallerIdEvent(Object source)
{
super(source);
}
public String getLanguage()
{
return language;
}
public void setLanguage(String language)
{
this.language = language;
}
/**
* Returns the CallerId presentation/screening.
*
* @return the CallerId presentation/screening.
* @since 0.2
*/
public Integer getCidCallingPres()
{
return cidCallingPres;
}
/**
* Returns the textual respresentation of the CallerId presentation/screening.
*
* @return the textual respresentation of the CallerId presentation/screening.
* @since 0.2
*/
public String getCidCallingPresTxt()
{
return cidCallingPresTxt;
}
/**
* Sets the CallerId presentation/screening in the form "%d (%s)".
*
* @param s the CallerId presentation/screening in the form "%d (%s)".
* @since 0.2
*/
public void setCidCallingPres(String s)
{
int spaceIdx;
if (s == null)
{
return;
}
spaceIdx = s.indexOf(' ');
if (spaceIdx <= 0)
{
spaceIdx = s.length();
}
try
{
this.cidCallingPres = Integer.valueOf(s.substring(0, spaceIdx));
}
catch (NumberFormatException e)
{
return;
}
if (s.length() > spaceIdx + 3)
{
this.cidCallingPresTxt = s.substring(spaceIdx + 2, s.length() - 1);
}
}
public String getLinkedId()
{
return linkedId;
}
public void setLinkedId(String linkedId)
{
this.linkedId = linkedId;
}
}