2020-05-02 09:50:17 +02:00
|
|
|
package eu.siacs.conversations.xmpp.jingle;
|
|
|
|
|
|
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
2020-05-15 17:06:16 +02:00
|
|
|
import eu.siacs.conversations.xmpp.Jid;
|
2020-05-02 09:50:17 +02:00
|
|
|
|
|
|
|
|
public interface OngoingRtpSession {
|
|
|
|
|
Account getAccount();
|
|
|
|
|
Jid getWith();
|
|
|
|
|
String getSessionId();
|
|
|
|
|
}
|