debuggercdi/com.nokia.carbide.trk.support/src/com/nokia/carbide/trk/support/connection/TCPIPPortMappingConnection.java
author ryall <ken.ryall@nokia.com>
Tue, 30 Mar 2010 15:13:35 -0500
changeset 1141 9d8e297eaa0a
parent 164 88b7eb94b003
permissions -rw-r--r--
Add in new files missing from last commit.

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/

package com.nokia.carbide.trk.support.connection;

import com.nokia.carbide.remoteconnections.interfaces.IConnectionType;

import java.util.Map;

public class TCPIPPortMappingConnection extends TCPIPConnection {

	public TCPIPPortMappingConnection(IConnectionType connectionType, Map<String, String> settings) {
		super(connectionType, settings);
	}

	
}