Improve javadoc for all addons (#15667)

Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
This commit is contained in:
Holger Friedrich
2023-09-30 21:49:12 +02:00
committed by GitHub
parent 0039e391cd
commit cbf4411034
618 changed files with 1106 additions and 1110 deletions

View File

@@ -22,9 +22,12 @@ import org.openhab.core.config.core.Configuration;
public class KonnectedConfiguration extends Configuration {
/**
* @param blink identifies whether the Konnected Alarm Panel LED will blink on transmission of Wifi Commands
* @param discovery identifies whether the Konnected Alarm Panel will be discoverable via UPnP
* blink identifies whether the Konnected Alarm Panel LED will blink on transmission of Wifi Commands.
*/
public boolean blink;
/**
* discovery identifies whether the Konnected Alarm Panel will be discoverable via UPnP.
*/
public boolean discovery;
}

View File

@@ -96,7 +96,7 @@ public class KonnectedHTTPUtils {
*
* @param urlAddress the address to send the request
* @param payload the json payload you want to send as part of the request, may be null.
* @param retry the number of retries before throwing the IOexpcetion back to the handler
* @param retryCount the number of retries before throwing the IOexpcetion back to the handler
*/
public synchronized String doGet(String urlAddress, String payload, int retryCount)
throws KonnectedHttpRetryExceeded {
@@ -126,7 +126,7 @@ public class KonnectedHTTPUtils {
*
* @param urlAddress the address to send the request
* @param payload the json payload you want to send as part of the request
* @param retry the number of retries before throwing the IOexpcetion back to the handler
* @param retryCount the number of retries before throwing the IOexpcetion back to the handler
*/
public synchronized String doPut(String urlAddress, String payload, int retryCount)
throws KonnectedHttpRetryExceeded {

View File

@@ -18,7 +18,7 @@ import org.eclipse.jdt.annotation.Nullable;
/**
* The {@link ZoneConfiguration} class contains the configuration parameters for the zone.
*
* @author Haavar Valeur
* @author Haavar Valeur - Initial contribution
*/
@NonNullByDefault
public class ZoneConfiguration {

View File

@@ -65,10 +65,7 @@ public class KonnectedHandler extends BaseThingHandler {
* This is the constructor of the Konnected Handler.
*
* @param thing the instance of the Konnected thing
* @param webHookServlet the instance of the callback servlet that is running for communication with the Konnected
* Module
* @param hostAddress the webaddress of the openHAB server instance obtained by the runtime
* @param port the port on which the openHAB instance is running that was obtained by the runtime.
* @param callbackUrl the webaddress of the openHAB server instance obtained by the runtime
*/
public KonnectedHandler(Thing thing, String callbackUrl) {
super(thing);