Slightly improve bytestreams management
[iris.git] / src / xmpp / xmpp-im / xmpp_httpauthrequest.h
blob32fe9b3e3ad2e9760b68178bc01becf76f0116f8
1 /*
2 * Copyright (C) 2006 Maciek Niedzielski
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.
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.
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
20 #ifndef XMPP_AUTHREQUEST_H
21 #define XMPP_AUTHREQUEST_H
23 #include <QString>
25 class QDomElement;
26 class QDomDocument;
28 namespace XMPP
30 class HttpAuthRequest
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 &);
37 bool isEmpty() const;
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;
47 QDomElement toXml(QDomDocument &) const;
48 bool fromXml(const QDomElement &);
50 static Stanza::Error denyError;
51 private:
52 QString method_, url_, id_;
53 bool hasId_;
57 #endif