blob: b0f7cb119dbe5c960cd61f9a0f529a9604727f18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.service.contactsource;
/**
* Extension for {@link ContactSourceService}s to provide a prefix for phone
* number to be dialed.
*/
public interface PrefixedContactSourceService
{
/**
* Returns the global phone number prefix to be used when calling contacts
* from this contact source.
*
* @return the global phone number prefix
*/
public String getPhoneNumberPrefix();
}
|