connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/internal/IConnectedService2.java
changeset 704 670ab96c591c
parent 703 3a27d56389d5
parent 700 9441b6037cb6
child 705 3051ec3010db
equal deleted inserted replaced
703:3a27d56389d5 704:670ab96c591c
     1 /**
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 
       
    18 package com.nokia.carbide.remoteconnections.internal;
       
    19 
       
    20 import java.util.Map;
       
    21 
       
    22 import com.nokia.carbide.remoteconnections.interfaces.IConnectedService;
       
    23 
       
    24 /**
       
    25  * An extended interface to a connected service
       
    26  * @since 3.0
       
    27  */
       
    28 public interface IConnectedService2 extends IConnectedService {
       
    29 
       
    30 	/**
       
    31 	 * Return the properties for this connected service
       
    32 	 * @return Map
       
    33 	 */
       
    34 	Map<String, String> getProperties();
       
    35 }