1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-17 00:44:50 +02:00
Smack/smack-extensions/src/main/java/org/jivesoftware/smackx/jingle/JingleSessionHandler.java

43 lines
1.3 KiB
Java
Raw Normal View History

/**
*
* Copyright 2017 Florian Schmaus
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jivesoftware.smackx.jingle;
2017-06-10 15:09:30 +02:00
import org.jivesoftware.smack.XMPPConnection;
import org.jivesoftware.smack.packet.IQ;
import org.jivesoftware.smackx.jingle.element.Jingle;
2017-06-13 21:59:40 +02:00
import org.jivesoftware.smackx.jingle.element.JingleContent;
public interface JingleSessionHandler {
2017-06-11 02:52:34 +02:00
IQ handleJingleSessionRequest(Jingle jingle);
2017-06-10 15:09:30 +02:00
XMPPConnection getConnection();
2017-06-12 14:44:00 +02:00
void addTransportInfoListener(JingleTransportInfoListener listener);
void removeTransportInfoListener(JingleTransportInfoListener listener);
2017-06-13 21:59:40 +02:00
JingleManager.FullJidAndSessionId getFullJidAndSessionId();
JingleContent getReceivedContent();
JingleContent getProposedContent();
JingleContent.Creator getRole();
}