org.asteriskjava.pbx.PhoneNumber Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asterisk-java Show documentation
Show all versions of asterisk-java Show documentation
The free Java library for Asterisk PBX integration.
The newest version!
package org.asteriskjava.pbx;
/**
* Provides an abstraction of a phone number. This allows different PBX's to
* store the phone numbers in a way that may be specific to the pbx.
*
* In general most PBX's there is no need for a special abstraction, however
* using the interface just makes the code clearer that we are passing a phone
* number.
*
* @author bsutton
*/
public interface PhoneNumber {
// TODO
}