sl@0
|
1 |
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Authentication class for storing login information
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file cauthentication.h
|
sl@0
|
20 |
@publishedPartner
|
sl@0
|
21 |
@released
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef __CAUTHENTICATION_H__
|
sl@0
|
25 |
#define __CAUTHENTICATION_H__
|
sl@0
|
26 |
|
sl@0
|
27 |
#include <uri8.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
CAuthentication encapsulates username and login information.
|
sl@0
|
31 |
Uses 8-bit descriptors. Unicode text must be tranformed into UTF8 for storage.
|
sl@0
|
32 |
@publishedPartner
|
sl@0
|
33 |
@released
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
class CAuthentication: public CBase
|
sl@0
|
36 |
{
|
sl@0
|
37 |
public:
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
enum for TMethod
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
enum TMethod
|
sl@0
|
42 |
{
|
sl@0
|
43 |
/** Basic */
|
sl@0
|
44 |
EBasic,
|
sl@0
|
45 |
/** Digest */
|
sl@0
|
46 |
EDigest
|
sl@0
|
47 |
};
|
sl@0
|
48 |
public:
|
sl@0
|
49 |
IMPORT_C static CAuthentication* NewL(const TDesC8& aName, const TDesC8& aPassword, TMethod aMethod = EDigest);
|
sl@0
|
50 |
IMPORT_C static CAuthentication* NewL(const TUriC8& aUri, TMethod aMethod = EDigest);
|
sl@0
|
51 |
IMPORT_C ~CAuthentication();
|
sl@0
|
52 |
IMPORT_C const TDesC8& Name() const;
|
sl@0
|
53 |
IMPORT_C const TDesC8& Password() const;
|
sl@0
|
54 |
IMPORT_C TMethod Method() const;
|
sl@0
|
55 |
IMPORT_C void SetNameL(const TDesC8& aName);
|
sl@0
|
56 |
IMPORT_C void SetPasswordL(const TDesC8& aPassword);
|
sl@0
|
57 |
IMPORT_C void SetMethod(TMethod aMethod);
|
sl@0
|
58 |
private:
|
sl@0
|
59 |
CAuthentication(TMethod aMethod);
|
sl@0
|
60 |
void ConstructL(const TDesC8& aName, const TDesC8& aPassword);
|
sl@0
|
61 |
void ConstructL(const TUriC8& aUri);
|
sl@0
|
62 |
private:
|
sl@0
|
63 |
/**
|
sl@0
|
64 |
The descriptor buffer that contains the Name.
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
HBufC8* iName;
|
sl@0
|
67 |
/**
|
sl@0
|
68 |
The descriptor buffer that contains the Password.
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
HBufC8* iPassword;
|
sl@0
|
71 |
/**
|
sl@0
|
72 |
The enum of type TMethod.
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
TMethod iMethodType;
|
sl@0
|
75 |
};
|
sl@0
|
76 |
|
sl@0
|
77 |
#endif //__CAUTHENTICATION_H__
|