mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-02-04 08:03:53 +01:00
Changed visibility of lists to allow subclasses to acces them (#770)
Signed-off-by: Christoph Weitkamp <github@christophweitkamp.de>
This commit is contained in:
parent
1bbf250d1f
commit
76387f2b79
@ -49,8 +49,8 @@ public abstract class BaseDynamicStateDescriptionProvider implements DynamicStat
|
|||||||
private @NonNullByDefault({}) BundleContext bundleContext;
|
private @NonNullByDefault({}) BundleContext bundleContext;
|
||||||
protected @NonNullByDefault({}) ChannelTypeI18nLocalizationService channelTypeI18nLocalizationService;
|
protected @NonNullByDefault({}) ChannelTypeI18nLocalizationService channelTypeI18nLocalizationService;
|
||||||
|
|
||||||
private final Map<ChannelUID, @Nullable String> channelPatternMap = new ConcurrentHashMap<>();
|
protected final Map<ChannelUID, @Nullable String> channelPatternMap = new ConcurrentHashMap<>();
|
||||||
private final Map<ChannelUID, @Nullable List<StateOption>> channelOptionsMap = 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
|
* For a given channel UID, set a pattern that should be used for the channel, instead of the one defined statically
|
||||||
|
Loading…
Reference in New Issue
Block a user