diff options
author | Ingo Bauersachs <ingo@jitsi.org> | 2011-10-04 12:22:16 +0000 |
---|---|---|
committer | Ingo Bauersachs <ingo@jitsi.org> | 2011-10-04 12:22:16 +0000 |
commit | 0f09a0cc4e6f29d238ee4ed4dea31e13b688ec99 (patch) | |
tree | 4fc3399adff81ecb8ef31f631ef4c00661b4ebc8 /src/net/java/sip/communicator/service/protocol/media/SrtpAwareCallPeer.java | |
parent | 4568262a8e6b89d6e7560a523433a7a40c24951c (diff) | |
download | jitsi-0f09a0cc4e6f29d238ee4ed4dea31e13b688ec99.zip jitsi-0f09a0cc4e6f29d238ee4ed4dea31e13b688ec99.tar.gz jitsi-0f09a0cc4e6f29d238ee4ed4dea31e13b688ec99.tar.bz2 |
Rename generic srtp classes from Zrtp* to Srtp*
Diffstat (limited to 'src/net/java/sip/communicator/service/protocol/media/SrtpAwareCallPeer.java')
-rw-r--r-- | src/net/java/sip/communicator/service/protocol/media/SrtpAwareCallPeer.java | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/service/protocol/media/SrtpAwareCallPeer.java b/src/net/java/sip/communicator/service/protocol/media/SrtpAwareCallPeer.java new file mode 100644 index 0000000..284bc92 --- /dev/null +++ b/src/net/java/sip/communicator/service/protocol/media/SrtpAwareCallPeer.java @@ -0,0 +1,27 @@ +/* + * 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.media; + +import net.java.sip.communicator.service.neomedia.*; +import net.java.sip.communicator.service.protocol.*; + +/** + * A utility interface whose only purpose is to represent a call peer that's + * also capable of ZRTP control. + * + * @param <T> the implementation specific call extension + * @param <U> the implementation specific protocol provider extension + * + * @author Emil Ivov + */ +public abstract class SrtpAwareCallPeer<T extends Call, + U extends ProtocolProviderService> + extends AbstractCallPeer<T, U> + implements SrtpControl +{ + +} |