Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/main/java/cz/smarteon/loxone/Loxone.java
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,9 @@ private void sendCommand(final ControlCommand<?> controlCommand, final boolean s

/**
* Sends command built by {@link UserCommand} using http.
* @param <V> type of the value returned by the command
* @param userCommand user command
* @return response message
*/
public <V extends LoxoneValue> LoxoneMessage<V> sendUserCommandHttp(final @NotNull UserCommand<V> userCommand) {
return loxoneHttp.get(userCommand, loxoneAuth);
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/cz/smarteon/loxone/calendar/CalEntryBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ public abstract class CalEntryBase {
* 2 - One day
* 3 - Period
* 4 - Period every year
* 5 - A day in a week */
* 5 - A day in a week
* </pre>
*/
protected int calMode;

@JsonCreator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public static CalendarCommand<CalEntryListValue> getEntries() {
* Command deletes a calendar entry with the corresponding lox UUID.
*
* @param entryUuid - Lox UUID of a calendar entry
* @return delete calendar entry command
*/
@NotNull
public static CalendarCommand<EmptyValue> deleteEntry(LoxoneUuid entryUuid) {
Expand Down
1 change: 1 addition & 0 deletions src/main/java/cz/smarteon/loxone/user/UserCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ public static UserCommand<UserGroupListValue> getUserGroups() {
*
* @param user User object
* @return add or edit user command
* @throws IOException in case user can't be serialized
*/
@NotNull
public static UserCommand<UserValue> addOrEditUser(final @NotNull User user) throws IOException {
Expand Down
Loading