os/security/cryptomgmtlibs/securityutils/source/secsettings/secsettingsserver/secsettingsserver.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/security/cryptomgmtlibs/securityutils/source/secsettings/secsettingsserver/secsettingsserver.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,90 @@
     1.4 +/*
     1.5 +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of the License "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +* Implements CSecSettingsServer.	See class and function definitions for
    1.19 +* more information.
    1.20 +*
    1.21 +*/
    1.22 +
    1.23 +
    1.24 +/**
    1.25 + @file
    1.26 +*/
    1.27 +
    1.28 +#include "secsettingsserver.h"
    1.29 +#include <e32property.h>
    1.30 +#include <sacls.h>
    1.31 +
    1.32 +namespace SecuritySettingsServer
    1.33 +{
    1.34 +CSecSettingsServer* CSecSettingsServer::NewLC()
    1.35 +/**
    1.36 +	Factory function allocates new, initialized instance of
    1.37 +	CSecSettingsServer which is left on the cleanup stack.
    1.38 +
    1.39 +	@return					New, initialized instance of CSecSettingsServer
    1.40 +							which is left on the cleanup stack.
    1.41 + */
    1.42 +	{
    1.43 +	CSecSettingsServer* self = new(ELeave) CSecSettingsServer();
    1.44 +	CleanupStack::PushL(self);
    1.45 +	self->ConstructL();
    1.46 +	return self;
    1.47 +	}
    1.48 +
    1.49 +CSecSettingsServer::CSecSettingsServer()
    1.50 +/**
    1.51 +	Initializes the superclass with this server's version.
    1.52 + */
    1.53 +	:	CScsServer(SecuritySettingsServer::Version(), EPriorityStandard)
    1.54 +	{
    1.55 +	// empty.
    1.56 +	}
    1.57 +
    1.58 +void CSecSettingsServer::ConstructL()
    1.59 +/**
    1.60 +	Second-phase construction initializes the superclass and
    1.61 +	starts the server.
    1.62 + */
    1.63 +	{
    1.64 +	CScsServer::ConstructL(SecuritySettingsServer::KShutdownPeriodUs);
    1.65 +
    1.66 +	StartL(SecuritySettingsServer::KSecSettingsServerName);
    1.67 +	}
    1.68 +
    1.69 +
    1.70 +
    1.71 +CSecSettingsServer::~CSecSettingsServer()
    1.72 +/**
    1.73 +	Cleanup the server.
    1.74 + */
    1.75 +	{
    1.76 +	}
    1.77 +
    1.78 +CScsSession* CSecSettingsServer::DoNewSessionL(const RMessage2& /*aMessage*/)
    1.79 +/**
    1.80 +	Implement CScsServer by allocating a new instance of CSecSettingsSession.
    1.81 +
    1.82 +	@param	aMessage		Standard server-side handle to message.	 Not used.
    1.83 +	@return					New instance of CSecSettingsSession which is owned by the
    1.84 +							caller.
    1.85 + */
    1.86 +	{
    1.87 +	return CSecSettingsSession::NewL(*this);
    1.88 +	}
    1.89 +
    1.90 +
    1.91 +
    1.92 +} // End of namespace SecuritySettingsServer
    1.93 +// End of file