summaryrefslogtreecommitdiffstats
blob: d20d52960172ace9ce19aee64adbf968aa7fe6c5 (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
/*
 * Copyright (c) 2010-2015, Isode Limited, London, England.
 * All rights reserved.
 */
package com.isode.stroke.elements;

import java.util.ArrayList;
import java.util.Collection;

public class SecurityLabel extends Payload {

	private Collection<String> equivalentLabels = new ArrayList<String>();
	private String foregroundColor = "";
	private String displayMarking = "";
	private String backgroundColor = "";
	private String label = "";

	public final Collection<String> getEquivalentLabels() {
		return equivalentLabels;
	}

	public void setEquivalentLabels(final Collection<String> value) {
		this.equivalentLabels = value;
	}

	public void addEquivalentLabel(final String value) {
		this.equivalentLabels.add(value);
	}

	public final String getForegroundColor() {
		return foregroundColor;
	}

	public void setForegroundColor(final String value) {
		this.foregroundColor = value;
	}

	public final String getDisplayMarking() {
		return displayMarking;
	}

	public void setDisplayMarking(final String value) {
		this.displayMarking = value;
	}

	public final String getBackgroundColor() {
		return backgroundColor;
	}

	public void setBackgroundColor(final String value) {
		this.backgroundColor = value;
	}

	public final String getLabel() {
		return label;
	}

	public void setLabel(final String value) {
		this.label = value;
	}

}