Skip to content

Commit dbe3bc8

Browse files
committed
fix: correct javadoc warnings
1 parent 76db0f5 commit dbe3bc8

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

src/main/java/cz/smarteon/loxone/Loxone.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,9 @@ private void sendCommand(final ControlCommand<?> controlCommand, final boolean s
282282

283283
/**
284284
* Sends command built by {@link UserCommand} using http.
285+
* @param <V> type of the value returned by the command
285286
* @param userCommand user command
287+
* @return response message
286288
*/
287289
public <V extends LoxoneValue> LoxoneMessage<V> sendUserCommandHttp(final @NotNull UserCommand<V> userCommand) {
288290
return loxoneHttp.get(userCommand, loxoneAuth);

src/main/java/cz/smarteon/loxone/calendar/CalEntryBase.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ public abstract class CalEntryBase {
6060
* 2 - One day
6161
* 3 - Period
6262
* 4 - Period every year
63-
* 5 - A day in a week */
63+
* 5 - A day in a week
64+
* </pre>
65+
*/
6466
protected int calMode;
6567

6668
@JsonCreator

src/main/java/cz/smarteon/loxone/calendar/CalendarCommand.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ public static CalendarCommand<CalEntryListValue> getEntries() {
3737
* Command deletes a calendar entry with the corresponding lox UUID.
3838
*
3939
* @param entryUuid - Lox UUID of a calendar entry
40+
* @return delete calendar entry command
4041
*/
4142
@NotNull
4243
public static CalendarCommand<EmptyValue> deleteEntry(LoxoneUuid entryUuid) {

src/main/java/cz/smarteon/loxone/user/UserCommand.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ public static UserCommand<UserGroupListValue> getUserGroups() {
110110
*
111111
* @param user User object
112112
* @return add or edit user command
113+
* @throws IOException in case user can't be serialized
113114
*/
114115
@NotNull
115116
public static UserCommand<UserValue> addOrEditUser(final @NotNull User user) throws IOException {

0 commit comments

Comments
 (0)