diff --git a/bundles/org.openhab.binding.visualcrossing/src/main/java/org/openhab/binding/visualcrossing/internal/WeatherCrossingActions.java b/bundles/org.openhab.binding.visualcrossing/src/main/java/org/openhab/binding/visualcrossing/internal/WeatherCrossingActions.java index 471ed061e9c98..b901b7f2bd164 100644 --- a/bundles/org.openhab.binding.visualcrossing/src/main/java/org/openhab/binding/visualcrossing/internal/WeatherCrossingActions.java +++ b/bundles/org.openhab.binding.visualcrossing/src/main/java/org/openhab/binding/visualcrossing/internal/WeatherCrossingActions.java @@ -23,6 +23,7 @@ import org.openhab.binding.visualcrossing.internal.api.VisualCrossingRateException; import org.openhab.binding.visualcrossing.internal.api.dto.WeatherResponse; import org.openhab.core.automation.annotation.ActionInput; +import org.openhab.core.automation.annotation.ActionOutput; import org.openhab.core.automation.annotation.RuleAction; import org.openhab.core.thing.binding.ThingActions; import org.openhab.core.thing.binding.ThingActionsScope; @@ -48,7 +49,7 @@ public void setThingHandler(ThingHandler thingHandler) { @RuleAction(label = "@text/action.timeline.label", description = "@text/action.timeline.description") @Nullable - public WeatherResponse timeline( + public @ActionOutput(label = "Result", type = "org.openhab.binding.visualcrossing.internal.api.dto.WeatherResponse") WeatherResponse timeline( @ActionInput(name = "location", label = "@text/action.label.location", description = "@text/action.description.location") @Nullable String location, @ActionInput(name = "unitGroup", label = "@text/action.label.unitGroup", description = "@text/action.description.unitGroup") @Nullable UnitGroup unitGroup, @ActionInput(name = "lang", label = "@text/action.label.lang", description = "@text/action.description.lang") @Nullable String lang, @@ -62,21 +63,23 @@ public WeatherResponse timeline( return localHandler.timeline(location, unitGroup, lang, dateFrom, dateTo); } - public static void timeline(@Nullable ThingActions actions, @Nullable String location, + @Nullable + public static WeatherResponse timeline(@Nullable ThingActions actions, @Nullable String location, @Nullable UnitGroup unitGroup, @Nullable String lang, @Nullable String dateFrom, @Nullable String dateTo) throws VisualCrossingAuthException, VisualCrossingApiException, VisualCrossingRateException { - ((VisualCrossingHandler) requireNonNull(actions)).timeline(location, unitGroup, lang, dateFrom, dateTo); + return ((VisualCrossingHandler) requireNonNull(actions)).timeline(location, unitGroup, lang, dateFrom, dateTo); } @RuleAction(label = "@text/action.timeline.label", description = "@text/action.timeline.description") @Nullable - public WeatherResponse timeline() + public @ActionOutput(label = "Result", type = "org.openhab.binding.visualcrossing.internal.api.dto.WeatherResponse") WeatherResponse timeline() throws VisualCrossingAuthException, VisualCrossingApiException, VisualCrossingRateException { return timeline(null, null, null, null, null); } - public static void timeline(@Nullable ThingActions actions) + @Nullable + public static WeatherResponse timeline(@Nullable ThingActions actions) throws VisualCrossingAuthException, VisualCrossingApiException, VisualCrossingRateException { - ((VisualCrossingHandler) requireNonNull(actions)).timeline(null, null, null, null, null); + return ((VisualCrossingHandler) requireNonNull(actions)).timeline(null, null, null, null, null); } }