From 7e88fe597cb01fa8827564de93c31b5fdf4152fe Mon Sep 17 00:00:00 2001 From: Alexey Zinchenko Date: Sun, 1 May 2022 18:23:17 +0300 Subject: [PATCH] Updated javadocs. --- .../prominence/openweathermap/api/OpenWeatherMapClient.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/com/github/prominence/openweathermap/api/OpenWeatherMapClient.java b/src/main/java/com/github/prominence/openweathermap/api/OpenWeatherMapClient.java index 7698d4a..15c2649 100644 --- a/src/main/java/com/github/prominence/openweathermap/api/OpenWeatherMapClient.java +++ b/src/main/java/com/github/prominence/openweathermap/api/OpenWeatherMapClient.java @@ -107,6 +107,10 @@ public class OpenWeatherMapClient { return new ClimaticForecastRequester(new RequestSettings(apiKey, timeoutSettings)); } + /** + * Solar Radiation API. + * @return requester for retrieving solar radiation information. + */ @SubscriptionAvailability(plans = SPECIAL) public SolarRadiationRequester solarRadiation() { return new SolarRadiationRequester(new RequestSettings(apiKey, timeoutSettings));