summaryrefslogtreecommitdiffstats
blob: 11952c39d3735c5ab0e3c88d3f3d70c47f51cf70 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
 * Copyright (c) 2010 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#ifndef SWIFTEN_SecurityLabel_H
#define SWIFTEN_SecurityLabel_H

#include <vector>

#include <string>
#include <Swiften/Elements/Payload.h>

namespace Swift {
	class SecurityLabel : public Payload {
		public:
			SecurityLabel() {}

			const std::string& getDisplayMarking() const { return displayMarking_; }

			void setDisplayMarking(const std::string& displayMarking) { 
				displayMarking_ = displayMarking;
			}

			const std::string& getForegroundColor() const { 
				return foregroundColor_; 
			}

			void setForegroundColor(const std::string& foregroundColor) { 
				foregroundColor_ = foregroundColor;
			}

			const std::string& getBackgroundColor() const { 
				return backgroundColor_; 
			}

			void setBackgroundColor(const std::string& backgroundColor) { 
				backgroundColor_ = backgroundColor;
			}

			const std::string& getLabel() const { return label_; }

			void setLabel(const std::string& label) {
				label_ = label;
			}

			const std::vector<std::string>& getEquivalentLabels() const { return equivalentLabels_; }

			void addEquivalentLabel(const std::string& label) {
				equivalentLabels_.push_back(label);
			}

		private:
			std::string displayMarking_;
			std::string foregroundColor_;
			std::string backgroundColor_;
			std::string label_;
			std::vector<std::string> equivalentLabels_;
	};
}

#endif