applayerprotocols/httpexamples/nwsswsptrhnd/MConnectionInfoProvider.h
changeset 0 b16258d2340f
equal deleted inserted replaced
-1:000000000000 0:b16258d2340f
       
     1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 /**
       
    17  @file MConnectionInfoProvider.h
       
    18  @warning : This file contains Rose Model ID comments - please do not delete
       
    19 */
       
    20 
       
    21 #ifndef __MCONNECTIONINFOPROVIDER_H__
       
    22 #define __MCONNECTIONINFOPROVIDER_H__
       
    23 
       
    24 // System includes
       
    25 #include <wsp/mwspproxyinfoprovider.h>
       
    26 #include <wsp/mwspcapabilityprovider.h>
       
    27 #include <wsp/mwspsessionheadersprovider.h>
       
    28 
       
    29 
       
    30 /**
       
    31 	@since			7.0
       
    32 	This interface defines methods to obtain further interfaces that supply connection-related
       
    33 	information.  This information comes in three varieties:
       
    34 	* the WAP Proxy which is to be connected to;
       
    35 	* the Client's requested capabilities and the Server's negotiated capabilities;
       
    36 	* the Client's session request header, and the Server's session response header.
       
    37  */
       
    38 //##ModelId=3C9B094C007D
       
    39 class MConnectionInfoProvider
       
    40 	{
       
    41 public:	// Methods
       
    42 
       
    43 /**Obtain the client's provider of proxy information
       
    44 	@since			7.0
       
    45  */
       
    46 	//##ModelId=3C9B094C00A6
       
    47 	virtual MWspProxyInfoProvider& ProxyInfoProvider() const = 0;
       
    48 
       
    49 /**Obtain the client's provider of capabilities information
       
    50 	@since			7.0
       
    51  */
       
    52 	//##ModelId=3C9B094C00A5
       
    53 	virtual MWspCapabilityProvider& CapabilityProvider() const = 0;
       
    54 
       
    55 /**Obtain the client's provider of sesion headers
       
    56 	@since			7.0
       
    57  */
       
    58 	//##ModelId=3C9B094C009B
       
    59 	virtual MWspSessionHeadersProvider& SessionHeadersProvider() const = 0;
       
    60 	};
       
    61 
       
    62 #endif	// __MCONNECTIONINFOPROVIDER_H__