summaryrefslogtreecommitdiffstats
blob: ba869002c8e5b9e720a63235b54e28899020d922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * Copyright (c) 2010 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#pragma once

#include <boost/optional.hpp>

#include "Swiften/Base/ByteArray.h"
#include "Swiften/Elements/Element.h"

namespace Swift {
	class AuthRequest : public Element {
		public:
			AuthRequest(const std::string& mechanism = "") : mechanism_(mechanism) {
			}

			AuthRequest(const std::string& mechanism, const ByteArray& message) : 
					mechanism_(mechanism), message_(message) {
			}

			AuthRequest(const std::string& mechanism, const boost::optional<ByteArray>& message) : 
					mechanism_(mechanism), message_(message) {
			}

			const boost::optional<ByteArray>& getMessage() const {
				return message_;
			}

			void setMessage(const ByteArray& message) {
				message_ = boost::optional<ByteArray>(message);
			}

			const std::string& getMechanism() const {
				return mechanism_;
			}

			void setMechanism(const std::string& mechanism) {
				mechanism_ = mechanism;
			}

		private:
			std::string mechanism_;
			boost::optional<ByteArray> message_;
	};
}