001/** 002 * 003 * Copyright 2003-2006 Jive Software. 004 * 005 * Licensed under the Apache License, Version 2.0 (the "License"); 006 * you may not use this file except in compliance with the License. 007 * You may obtain a copy of the License at 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, 013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 014 * See the License for the specific language governing permissions and 015 * limitations under the License. 016 */ 017package org.jivesoftware.smackx.jingle.nat; 018 019import org.jivesoftware.smack.XMPPException; 020import org.jivesoftware.smackx.jingle.JingleSession; 021import org.jivesoftware.smackx.jingle.listeners.CreatedJingleSessionListener; 022import org.jivesoftware.smackx.jingle.listeners.JingleSessionListener; 023import org.jivesoftware.smackx.jingle.media.PayloadType; 024 025/** 026 * A Fixed Jingle Transport Manager implementation. 027 * 028 */ 029public class FixedTransportManager extends JingleTransportManager implements JingleSessionListener, CreatedJingleSessionListener { 030 031 FixedResolver resolver; 032 033 public FixedTransportManager(FixedResolver inResolver) { 034 resolver = inResolver; 035 } 036 037 protected TransportResolver createResolver(JingleSession session) { 038 return resolver; 039 } 040 041 public void sessionEstablished(PayloadType pt, TransportCandidate rc, TransportCandidate lc, JingleSession jingleSession) { 042 } 043 044 public void sessionDeclined(String reason, JingleSession jingleSession) { 045 } 046 047 public void sessionRedirected(String redirection, JingleSession jingleSession) { 048 } 049 050 public void sessionClosed(String reason, JingleSession jingleSession) { 051 } 052 053 public void sessionClosedOnError(XMPPException e, JingleSession jingleSession) { 054 } 055 056 public void sessionMediaReceived(JingleSession jingleSession, String participant) { 057 // Do Nothing 058 } 059 060 public void sessionCreated(JingleSession jingleSession) { 061 jingleSession.addListener(this); 062 } 063}