diff -r 000000000000 -r 33413c0669b9 vpnengine/vpnmanager/src/pwdchanger.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vpnengine/vpnmanager/src/pwdchanger.cpp Thu Dec 17 09:14:51 2009 +0200 @@ -0,0 +1,67 @@ +/* +* Copyright (c) 2003 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: +* Handles the calling of PKI Service Server module’s password change function. +* +*/ + + + +#include "pwdchanger.h" +#include "vpnapiservant.h" + +CPwdChanger* CPwdChanger::NewL(const RMessage2& aMessage, CVpnApiServant& aVpnApiServant) + { + CPwdChanger* self = new (ELeave) CPwdChanger(aMessage, aVpnApiServant); + CleanupStack::PushL(self); + self->ConstructL(); + CleanupStack::Pop(); // self + return self; + } + +CPwdChanger::CPwdChanger(const RMessage2& aMessage, CVpnApiServant& aVpnApiServant) : + CActive(0), iMessage(aMessage), iVpnApiServant(aVpnApiServant) + { + } + +void CPwdChanger::ConstructL() + { + CActiveScheduler::Add(this); + User::LeaveIfError(iPkiService.Connect()); + } + +CPwdChanger::~CPwdChanger() + { + Cancel(); + iPkiService.Close(); + } + +void CPwdChanger::ChangePassword() + { + iPkiService.ChangePassword(iStatus); + SetActive(); + } + +void CPwdChanger::DoCancel() + { + iPkiService.CancelPendingOperation(); + iMessage.Complete(KErrCancel); + } + +void CPwdChanger::RunL() + { + iMessage.Complete(iStatus.Int()); + iVpnApiServant.PasswordChangeComplete(); + } +