~ubuntu-branches/ubuntu/saucy/resiprocate/saucy-proposed

« back to all changes in this revision

Viewing changes to reTurn/UserAuthData.hxx

  • Committer: Package Import Robot
  • Author(s): Daniel Pocock
  • Date: 2012-05-17 19:29:59 UTC
  • Revision ID: package-import@ubuntu.com-20120517192959-vv00m77isztdy64q
Tags: upstream-1.8.2
ImportĀ upstreamĀ versionĀ 1.8.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#if !defined(USER_AUTH_DATA_HXX)
 
2
#define USER_AUTH_DATA_HXX
 
3
 
 
4
#include <rutil/Data.hxx>
 
5
#include <rutil/Log.hxx>
 
6
 
 
7
namespace reTurn {
 
8
 
 
9
class UserAuthData
 
10
{
 
11
public:
 
12
   UserAuthData(const resip::Data& userName, const resip::Data& realm, const resip::Data& ha1);
 
13
   virtual ~UserAuthData();
 
14
 
 
15
   static UserAuthData createFromPassword(const resip::Data& userName, const resip::Data& realm, const resip::Data& password);
 
16
 
 
17
   resip::Data getUserName() { return mUserName; };
 
18
   resip::Data getRealm() { return mRealm; };
 
19
   resip::Data getHa1() { return mHa1; };
 
20
 
 
21
private:
 
22
   resip::Data mUserName;
 
23
   resip::Data mRealm;
 
24
   resip::Data mHa1;
 
25
};
 
26
 
 
27
} // namespace
 
28
 
 
29
#endif
 
30
 
 
31
 
 
32
/* ====================================================================
 
33
 
 
34
 Copyright (c) 2012, Ready Technology (UK) Limited
 
35
 All rights reserved.
 
36
 
 
37
 Redistribution and use in source and binary forms, with or without
 
38
 modification, are permitted provided that the following conditions are 
 
39
 met:
 
40
 
 
41
 1. Redistributions of source code must retain the above copyright 
 
42
    notice, this list of conditions and the following disclaimer. 
 
43
 
 
44
 2. Redistributions in binary form must reproduce the above copyright
 
45
    notice, this list of conditions and the following disclaimer in the
 
46
    documentation and/or other materials provided with the distribution. 
 
47
 
 
48
 3. Neither the name of Ready Technology nor the names of its contributors 
 
49
    may be used to endorse or promote products derived from this 
 
50
    software without specific prior written permission. 
 
51
 
 
52
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
 
53
 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
 
54
 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
 
55
 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
 
56
 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
 
57
 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
 
58
 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
 
59
 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
 
60
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
 
61
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
 
62
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
63
 
 
64
 ==================================================================== */