summaryrefslogtreecommitdiffstats
blob: 6c76922786529ebd54f8df39ce96388f6319cfc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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) {

	}
}