1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/httputils/inc/cauthentication.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,77 @@
1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Authentication class for storing login information
1.18 +//
1.19 +//
1.20 +
1.21 +/**
1.22 + @file cauthentication.h
1.23 + @publishedPartner
1.24 + @released
1.25 +*/
1.26 +
1.27 +#ifndef __CAUTHENTICATION_H__
1.28 +#define __CAUTHENTICATION_H__
1.29 +
1.30 +#include <uri8.h>
1.31 +
1.32 +/**
1.33 +CAuthentication encapsulates username and login information.
1.34 +Uses 8-bit descriptors. Unicode text must be tranformed into UTF8 for storage.
1.35 +@publishedPartner
1.36 +@released
1.37 +*/
1.38 +class CAuthentication: public CBase
1.39 + {
1.40 +public:
1.41 + /**
1.42 + enum for TMethod
1.43 + */
1.44 + enum TMethod
1.45 + {
1.46 + /** Basic */
1.47 + EBasic,
1.48 + /** Digest */
1.49 + EDigest
1.50 + };
1.51 +public:
1.52 + IMPORT_C static CAuthentication* NewL(const TDesC8& aName, const TDesC8& aPassword, TMethod aMethod = EDigest);
1.53 + IMPORT_C static CAuthentication* NewL(const TUriC8& aUri, TMethod aMethod = EDigest);
1.54 + IMPORT_C ~CAuthentication();
1.55 + IMPORT_C const TDesC8& Name() const;
1.56 + IMPORT_C const TDesC8& Password() const;
1.57 + IMPORT_C TMethod Method() const;
1.58 + IMPORT_C void SetNameL(const TDesC8& aName);
1.59 + IMPORT_C void SetPasswordL(const TDesC8& aPassword);
1.60 + IMPORT_C void SetMethod(TMethod aMethod);
1.61 +private:
1.62 + CAuthentication(TMethod aMethod);
1.63 + void ConstructL(const TDesC8& aName, const TDesC8& aPassword);
1.64 + void ConstructL(const TUriC8& aUri);
1.65 +private:
1.66 + /**
1.67 + The descriptor buffer that contains the Name.
1.68 + */
1.69 + HBufC8* iName;
1.70 + /**
1.71 + The descriptor buffer that contains the Password.
1.72 + */
1.73 + HBufC8* iPassword;
1.74 + /**
1.75 + The enum of type TMethod.
1.76 + */
1.77 + TMethod iMethodType;
1.78 + };
1.79 +
1.80 +#endif //__CAUTHENTICATION_H__