When I use getTagConfigsAsync, all non-default value of property are null for tag inside UDT
the flag recursive
- set to true to return all TagEditModels under a TagPath. Useful for returning edit models for child tags under a UDT.
has no effect ??
Did I miss anything ?
Or is there another way to read all resulting properties of a tag which is inside an UDT ???
CompletableFuture<List<TagConfigurationModel>> liste = gatewayContext.getTagManager().getTagProvider("default").getTagConfigsAsync(readTags1,true,false);
List<TagConfigurationModel> tagConfigs = liste.get();
for (TagConfigurationModel tagConfig : tagConfigs){
logger.info("getName={}",tagConfig.getName());
logger.info("Tooltip={}",tagConfig.get(WellKnownTagProps.Tooltip));
logger.info("HistoryEnabled={}",tagConfig.get(WellKnownTagProps.HistoryEnabled));
logger.info("EngUnit={}",tagConfig.get(WellKnownTagProps.EngUnit));
logger.info("EngLow={}",tagConfig.get(WellKnownTagProps.EngLow));
logger.info("EngHigh={}",tagConfig.get(WellKnownTagProps.EngHigh));
if (tagConfig.get(WellKnownTagProps.Path) != null){
logger.info("toStringFull={}",tagConfig.get(WellKnownTagProps.Path).toStringFull());
}
``