mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-19 18:42:06 +01:00
84fcf53512
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@10852 b35dd754-fafc-0310-a699-88a17e54d16e
54 lines
1.4 KiB
Java
54 lines
1.4 KiB
Java
package org.jivesoftware.smackx.jingle;
|
|
|
|
import org.jivesoftware.smack.packet.IQ;
|
|
import org.jivesoftware.smackx.packet.Jingle;
|
|
import org.jivesoftware.smackx.packet.JingleError;
|
|
|
|
/**
|
|
* @author Jeff Williams
|
|
* @see JingleSessionState
|
|
*/
|
|
public class JingleSessionStateEnded extends JingleSessionState {
|
|
|
|
private static final SmackLogger LOGGER = SmackLogger.getLogger(JingleSessionStateEnded.class);
|
|
|
|
private static JingleSessionStateEnded INSTANCE = null;
|
|
|
|
protected JingleSessionStateEnded() {
|
|
// Prevent instantiation of the class.
|
|
}
|
|
|
|
/**
|
|
* A thread-safe means of getting the one instance of this class.
|
|
* @return The singleton instance of this class.
|
|
*/
|
|
public synchronized static JingleSessionState getInstance() {
|
|
if (INSTANCE == null) {
|
|
INSTANCE = new JingleSessionStateEnded();
|
|
}
|
|
|
|
return INSTANCE;
|
|
}
|
|
|
|
public void enter() {
|
|
LOGGER.debug("Session Ended");
|
|
LOGGER.debug("-------------------------------------------------------------------");
|
|
|
|
}
|
|
|
|
public void exit() {
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
|
|
|
/**
|
|
* Pretty much nothing is valid for receiving once we've ended the session.
|
|
*/
|
|
public IQ processJingle(JingleSession session, Jingle jingle, JingleActionEnum action) {
|
|
IQ response = null;
|
|
|
|
response = session.createJingleError(jingle, JingleError.MALFORMED_STANZA);
|
|
|
|
return response;
|
|
}
|
|
}
|