summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarun Gupta <tarun1995gupta@gmail.com>2015-07-29 15:54:09 (GMT)
committerAlex Clayton <alex.clayton@isode.com>2016-01-14 15:38:31 (GMT)
commit72249383639858b1a7947b1afc6b9491ebd82bf8 (patch)
tree03af3e75006a133ee365116384bcc659543e183e /src/com/isode/stroke/jingle/AbstractJingleSessionListener.java
parent701abcb162dfb3e7cc8c6a9ada81a16d1fc8d4ee (diff)
downloadstroke-72249383639858b1a7947b1afc6b9491ebd82bf8.zip
stroke-72249383639858b1a7947b1afc6b9491ebd82bf8.tar.bz2
Completes Jingle.
Adds Listenable, JingleSession, JingleContentID, FakeJingleSession, JingleSessionListener, JingleSessionManager, JingleResponder. NotifyListeners are not in line with Swiften and have to be corrected. License: This patch is BSD-licensed, see Documentation/Licenses/BSD-simplified.txt for details. Test-Information: None. Change-Id: I6533b2be02a0843277a63ca115348ff6138a0fc0
Diffstat (limited to 'src/com/isode/stroke/jingle/AbstractJingleSessionListener.java')
-rw-r--r--src/com/isode/stroke/jingle/AbstractJingleSessionListener.java54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/com/isode/stroke/jingle/AbstractJingleSessionListener.java b/src/com/isode/stroke/jingle/AbstractJingleSessionListener.java
new file mode 100644
index 0000000..6c76922
--- /dev/null
+++ b/src/com/isode/stroke/jingle/AbstractJingleSessionListener.java
@@ -0,0 +1,54 @@
+/*
+ * Copyright (c) 2013 Isode Limited.
+ * All rights reserved.
+ * See the COPYING file for more information.
+ */
+/*
+ * Copyright (c) 2015 Tarun Gupta.
+ * Licensed under the simplified BSD license.
+ * See Documentation/Licenses/BSD-simplified.txt for more information.
+ */
+
+package com.isode.stroke.jingle;
+
+import com.isode.stroke.elements.JinglePayload;
+import com.isode.stroke.elements.JingleDescription;
+import com.isode.stroke.elements.JingleTransportPayload;
+import java.util.logging.Logger;
+
+public class AbstractJingleSessionListener implements JingleSessionListener {
+
+ private Logger logger_ = Logger.getLogger(this.getClass().getName());
+
+ public void handleSessionAcceptReceived(final JingleContentID id, JingleDescription des, JingleTransportPayload tr) {
+ logger_.warning("Unimplemented\n");
+ }
+
+ public void handleSessionInfoReceived(JinglePayload payload) {
+ logger_.warning("Unimplemented\n");
+ }
+
+ public void handleSessionTerminateReceived(JinglePayload.Reason reason) {
+ logger_.warning("Unimplemented\n");
+ }
+
+ public void handleTransportAcceptReceived(final JingleContentID id, JingleTransportPayload tr) {
+ logger_.warning("Unimplemented\n");
+ }
+
+ public void handleTransportInfoReceived(final JingleContentID id, JingleTransportPayload tr) {
+ logger_.warning("Unimplemented\n");
+ }
+
+ public void handleTransportRejectReceived(final JingleContentID id, JingleTransportPayload tr) {
+ logger_.warning("Unimplemented\n");
+ }
+
+ public void handleTransportReplaceReceived(final JingleContentID id, JingleTransportPayload tr) {
+ logger_.warning("Unimplemented\n");
+ }
+
+ public void handleTransportInfoAcknowledged(final String id) {
+
+ }
+} \ No newline at end of file