applayerpluginsandutils/httpprotocolplugins/wspinc/MWspSessionHeadersProvider.h
changeset 0 b16258d2340f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/applayerpluginsandutils/httpprotocolplugins/wspinc/MWspSessionHeadersProvider.h	Tue Feb 02 01:09:52 2010 +0200
@@ -0,0 +1,65 @@
+// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
+// All rights reserved.
+// This component and the accompanying materials are made available
+// under the terms of "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:
+//
+
+/**
+ @file MWspSessionHeadersProvider.h
+ @warning : This file contains Rose Model ID comments - please do not delete
+*/
+
+#ifndef __MWSPSESSIONHEADERSPROVIDER_H__
+#define __MWSPSESSIONHEADERSPROVIDER_H__
+
+// System includes
+#include <e32base.h>
+
+
+class MWspSessionHeadersProvider
+/**
+@class MWspSessionHeadersProvider
+@since			7.0
+The MWspSessionHeadersProvider API provides an interface for accessing and 
+setting the Client and Server session headers, respectively. The Client 
+session headers can be accessed to send to the Server in the S-Connect.req
+primitive. Any header information that is returned from the Server in the 
+S-Connect.cnf can be passed to the Client.
+@publishedAll
+@deprecated
+*/
+	{
+public:	// Methods
+
+/**
+	@fn				ClientHeaders() const =0
+	Intended Usage	:	Provides the Client session headers as an encoded buffer.
+	@since			7.0
+	@return			A const reference to a buffer containing the encoded headers.
+ */	  
+	virtual const TDesC8& ClientHeaders() const =0;
+
+/**
+	@fn				SetServerHeadersL(const TDesC8& aBuffer) =0;
+	Intended Usage	:	Sets the Server session headers. Any headers returned 
+						from the Server are passed to the Client in their encoded
+						form.
+	@since			7.0
+	@leave			Leave code KErrNoMemory if the headers cannot be set.
+	@param			aBuffer	A const reference to a buffer containing the encoded
+							session headers from the Server.
+	@post			The Server session headers have been passed to the Client.
+ */	  
+	virtual void SetServerHeadersL(const TDesC8& aBuffer) =0;
+	};
+
+#endif //	__MWSPSESSIONHEADERSPROVIDER_H__