blob: 0b9896aba5e9241ffc6da00fd757595df612141e (
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
|
/*
* 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 peer
* is involved
*
* @param peer the peer for who the call state is required
* @return the call state
*/
public boolean isSecure(CallPeer peer);
/**
* Sets the SAS verifications state of the call session in which a specific
* peer is involved
*
* @param peer the peer who toggled (or for whom is remotely
* toggled) the SAS verified flag
* @param verified the new SAS verification status
*/
public void setSasVerified(CallPeer peer, boolean verified);
}
|