blob: 9778f06aee2cdc00a43015de6d679d2e7bda1622 (
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
32
33
34
35
36
37
38
|
/*
* 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;
/**
* An Operation Set defining the encryption operations for telephony.
*
* @author Emanuel Onica
* @author Romain Kuntz
* @author Emil Ivov
*/
public interface OperationSetSecureTelephony
extends OperationSet
{
/**
* Gets the secure state of the call session in which a specific participant
* is involved
*
* @param participant the participant for who the call state is required
* @return the call state
*/
public boolean isSecure(CallPeer participant);
/**
* Sets the SAS verifications state of the call session in which a specific participant
* is involved
*
* @param participant the participant who toggled (or for whom is remotely
* toggled) the SAS verfied flag
* @param verified the new SAS verification status
* @param source the source who generated the call change
*/
public boolean setSasVerified(CallPeer participant, boolean verified);
}
|