Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Authentication class for storing login information
19 @file cauthentication.h
24 #ifndef __CAUTHENTICATION_H__
25 #define __CAUTHENTICATION_H__
30 CAuthentication encapsulates username and login information.
31 Uses 8-bit descriptors. Unicode text must be tranformed into UTF8 for storage.
35 class CAuthentication: public CBase
49 IMPORT_C static CAuthentication* NewL(const TDesC8& aName, const TDesC8& aPassword, TMethod aMethod = EDigest);
50 IMPORT_C static CAuthentication* NewL(const TUriC8& aUri, TMethod aMethod = EDigest);
51 IMPORT_C ~CAuthentication();
52 IMPORT_C const TDesC8& Name() const;
53 IMPORT_C const TDesC8& Password() const;
54 IMPORT_C TMethod Method() const;
55 IMPORT_C void SetNameL(const TDesC8& aName);
56 IMPORT_C void SetPasswordL(const TDesC8& aPassword);
57 IMPORT_C void SetMethod(TMethod aMethod);
59 CAuthentication(TMethod aMethod);
60 void ConstructL(const TDesC8& aName, const TDesC8& aPassword);
61 void ConstructL(const TUriC8& aUri);
64 The descriptor buffer that contains the Name.
68 The descriptor buffer that contains the Password.
72 The enum of type TMethod.
77 #endif //__CAUTHENTICATION_H__