~ubuntu-branches/ubuntu/oneiric/psi/oneiric

« back to all changes in this revision

Viewing changes to iris/src/xmpp/xmpp-im/xmpp_httpauthrequest.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2006  Maciek Niedzielski
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Lesser General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2.1 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Lesser General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public
 
15
 * License along with this library; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef XMPP_AUTHREQUEST_H
 
21
#define XMPP_AUTHREQUEST_H
 
22
 
 
23
#include <QString>
 
24
 
 
25
class QDomElement;
 
26
class QDomDocument;
 
27
 
 
28
namespace XMPP
 
29
{
 
30
        class HttpAuthRequest
 
31
        {
 
32
        public:
 
33
                HttpAuthRequest(const QString &m, const QString &u, const QString &i);
 
34
                HttpAuthRequest(const QString &m = "", const QString &u = "");
 
35
                HttpAuthRequest(const QDomElement &);
 
36
 
 
37
                bool isEmpty() const;
 
38
 
 
39
                void setMethod(const QString&);
 
40
                void setUrl(const QString&);
 
41
                void setId(const QString&);
 
42
                QString method() const;
 
43
                QString url() const;
 
44
                QString id() const;
 
45
                bool hasId() const;
 
46
 
 
47
                QDomElement toXml(QDomDocument &) const;
 
48
                bool fromXml(const QDomElement &);
 
49
 
 
50
                static Stanza::Error denyError;
 
51
        private:
 
52
                QString method_, url_, id_;
 
53
                bool hasId_;
 
54
        };
 
55
}
 
56
 
 
57
#endif