connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/internal/api/IConnectedService2.java
author dadubrow
Fri, 05 Feb 2010 10:32:30 -0600
branchRCL_2_4
changeset 900 8b30bf718a17
parent 858 1ef0dbc67108
permissions -rw-r--r--
update since tags to 2.5

/**
* 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.remoteconnections.internal.api;

import java.util.Map;

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

/**
 * An extended interface to a connected service
 * @since 2.5
 */
public interface IConnectedService2 extends IConnectedService {

	/**
	 * Return the properties for this connected service
	 * @return Map
	 */
	Map<String, String> getProperties();
}