blob: 897b5384c055320c73b9d39b7e4475ae82292309 (
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
|
/*
* 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.protocol;
/**
* An <tt>OperationSet</tt> defining operations that allow transferring calls to
* a new location.
*
* @author Emil Ivov
*/
public interface OperationSetCallTransfer
extends OperationSet
{
/**
* Indicates a user request to transfer the specified call participant to a
* new (target) uri.
*
* @param peer the call peer we'd like to transfer
* @param targetURI the uri that we'd like this call peer to be
* transferred to.
*/
public void transferCallPeer(CallPeer peer,
String targetURI);
}
|