Changed visibility of lists to allow subclasses to acces them (#770)

Signed-off-by: Christoph Weitkamp <github@christophweitkamp.de>
This commit is contained in:
Christoph Weitkamp 2019-04-29 19:10:07 +02:00 committed by Kai Kreuzer
parent 1bbf250d1f
commit 76387f2b79

View File

@ -49,8 +49,8 @@ public abstract class BaseDynamicStateDescriptionProvider implements DynamicStat
private @NonNullByDefault({}) BundleContext bundleContext;
protected @NonNullByDefault({}) ChannelTypeI18nLocalizationService channelTypeI18nLocalizationService;
private final Map<ChannelUID, @Nullable String> channelPatternMap = new ConcurrentHashMap<>();
private final Map<ChannelUID, @Nullable List<StateOption>> channelOptionsMap = new ConcurrentHashMap<>();
protected final Map<ChannelUID, @Nullable String> channelPatternMap = new ConcurrentHashMap<>();
protected final Map<ChannelUID, @Nullable List<StateOption>> channelOptionsMap = new ConcurrentHashMap<>();
/**
* For a given channel UID, set a pattern that should be used for the channel, instead of the one defined statically