diff -r b6f2a363adf7 -r 7797b2f86d2b imservices/ossprotocoladaptation/inc/cossprotocolloginrequest.h --- a/imservices/ossprotocoladaptation/inc/cossprotocolloginrequest.h Wed Apr 14 16:17:20 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,121 +0,0 @@ -/* -* Copyright (c) 2007-2008 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: Login Request to the Network Server. -* -*/ - - - -#ifndef _COSSPROTOCOLLOGINREQUEST_H_ -#define _COSSPROTOCOLLOGINREQUEST_H_ - -// INCLUDES -#include -#include -#include -#include "ossprotocolpluginlogger.h" -#include "ossprotocloliterals.h" -// FORWARD DECLARATIONS - -class MOSSProtocolConnectionManager; - -class COSSProtocolConnectionManager; - - -const TInt KImpsMaxResourceIdLen = 64; // maximum Resource ID, this is not sure! - -/** - * COSSProtocolLoginRequest - * - * Issue Login Request to the Network Server - * - */ -NONSHARABLE_CLASS ( COSSProtocolLoginRequest ) : public CActive - - - { - -public: - - static COSSProtocolLoginRequest* NewLC ( MOSSProtocolConnectionManager& aConnMan, - TXIMPRequestId aRequestId ); - static COSSProtocolLoginRequest* NewL ( MOSSProtocolConnectionManager& aConnMan, - TXIMPRequestId aRequestId ); - virtual ~COSSProtocolLoginRequest(); - - -private: - - COSSProtocolLoginRequest ( MOSSProtocolConnectionManager& aConnMan, - TXIMPRequestId aRequestId ); - void ConstructL(); - - -private: // from CActive - - void DoCancel(); - /* - * RunL() function also deletes the request object once the activity is done - * - */ - void RunL(); - TInt RunError ( TInt aError ); - -private: // new methods - - /** - * Resource Id Generator - * Leaves with KErrNotFound if no value - * @return ResourceId - */ - TPtrC GenResourceId( const TDesC& aResourceId ); -public: - - /** - * Issue login request to the isolation server - */ - void IssueLoginRequestL(); - - -private: // data - - /** - * OWN:Request Id from ximpfw - */ - TXIMPRequestId iRequestId; - /** - * Send data request to pure data handler generates the id - */ - TInt iSendId; - /** - * OSS Protocol Plugin Connection Manager - * Not own. - */ - MOSSProtocolConnectionManager& iConnMan; - - /** - * Resource ID Implementation - * Not own. - */ - TBuf iResourceId; - - /** - * Own user id - */ - HBufC* iUserName; - }; - - -#endif // _COSSPROTOCOLLOGINREQUEST_H_ -