blob: 0ac4c1c4632f38d3f1a688b0a1bd98e62116a6db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* SIP Communicator, 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.protocol;
import java.net.*;
/**
* The operation set is there to propose an extremely simple and light way of
* registering new accounts for a given protocol. The
* getAccountRegistrationURL() returns a URL that when opened in a web browser
* allows you to register your own account with the corresponding protocol.
* <p>
*
* @author Emil Ivov
*/
public interface OperationSetWebAccountRegistration
extends OperationSet
{
/**
* Returns a URL that points to a page which allows for on-line registration
* of accounts belonging to the service supported by this protocol provider.
* <p>
* @return a URL pointing to a web page where one could register their
* account for the current protocol.
*/
public URL getAccountRegistrationURL();
}
|