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

org.asteriskjava.pbx.CallerID Maven / Gradle / Ivy

There is a newer version: 3.41.0
Show newest version
package org.asteriskjava.pbx;

public interface CallerID
{
	/**
	 * Gets the number component of the caller id.
	 * 
	 * @return the callerid's number
	 */
	String getNumber();

	/**
	 * Gets the name component of the caller id.
	 * 
	 * @return the callerid's name
	 */
	String getName();

	/**
	 * Controls whether this caller id should be presented to the remote end.
	 * 
	 * @param hide
	 *            - if true then the caller id will be hidden.
	 */
	void setHideCallerID(boolean hide);

	/**
	 * 
	 * @return true if the caller id is marked as hidden.
	 */
	boolean isHideCallerID();

	/**
	 * Returns true if the caller id number is blank or equal to 'unknown'.
	 * 
	 * @return
	 */
	boolean isUnknown();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy