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.jingleold.nat;
018
019import org.jivesoftware.smack.XMPPException;
020
021import org.jivesoftware.smackx.jingleold.JingleSession;
022import org.jivesoftware.smackx.jingleold.listeners.CreatedJingleSessionListener;
023import org.jivesoftware.smackx.jingleold.listeners.JingleSessionListener;
024import org.jivesoftware.smackx.jingleold.media.PayloadType;
025
026/**
027 * A Fixed Jingle Transport Manager implementation.
028 *
029 */
030public class FixedTransportManager extends JingleTransportManager implements JingleSessionListener, CreatedJingleSessionListener {
031
032    FixedResolver resolver;
033
034    public FixedTransportManager(FixedResolver inResolver) {
035        resolver = inResolver;
036    }
037
038    @Override
039    protected TransportResolver createResolver(JingleSession session) {
040        return resolver;
041    }
042
043    @Override
044    public void sessionEstablished(PayloadType pt, TransportCandidate rc, TransportCandidate lc, JingleSession jingleSession) {
045    }
046
047    @Override
048    public void sessionDeclined(String reason, JingleSession jingleSession) {
049    }
050
051    @Override
052    public void sessionRedirected(String redirection, JingleSession jingleSession) {
053    }
054
055    @Override
056    public void sessionClosed(String reason, JingleSession jingleSession) {
057    }
058
059    @Override
060    public void sessionClosedOnError(XMPPException e, JingleSession jingleSession) {
061    }
062
063    @Override
064    public void sessionMediaReceived(JingleSession jingleSession, String participant) {
065        // Do Nothing
066    }
067
068    @Override
069    public void sessionCreated(JingleSession jingleSession) {
070        jingleSession.addListener(this);
071    }
072}