summaryrefslogtreecommitdiffstats
blob: 8134811470c171211c8c7f6e854e1e2c945eafac (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;

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

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

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

	final String getForegroundColor() {
		return foregroundColor;
	}

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

	final String getDisplayMarking() {
		return displayMarking;
	}

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

	final String getBackgroundColor() {
		return backgroundColor;
	}

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

	final String getLabel() {
		return label;
	}

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

}