os/security/cryptoservices/filebasedcertificateandkeystores/source/certapps/server/CCertAppsSession.h
Update contrib.
2 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * CCertAppsSession class implementation
25 #ifndef __CCERAPPSSESSION_H__
26 #define __CCERAPPSSESSION_H__
31 class CCertAppsConduit;
34 * A cert apps session.
36 * Handles client requests by passing them to the cert apps conduit.
38 class CCertAppsSession : public CTokenServerSession
42 * Create a new session object.
43 * @param aConduit The cert apps conduit used to service user requests.
45 static CCertAppsSession* NewL(CCertAppsConduit& aConduit);
48 CCertAppsSession(CCertAppsConduit& aConduit);
49 virtual void DoServiceL(const RMessage2& aMessage);
51 CCertAppsConduit& iConduit;