/* * 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 equivalentLabels = new ArrayList(); private String foregroundColor; private String displayMarking; private String backgroundColor; private String label; final Collection getEquivalentLabels() { return equivalentLabels; } void setEquivalentLabels(final Collection 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 ; } }