]> git.basschouten.com Git - openhab-addons.git/blob
cc0118ee88dbd539c8bf91858616509c85e3869a
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.io.hueemulation.internal.dto.changerequest;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.eclipse.jdt.annotation.Nullable;
17
18 /**
19  * Multiple endpoints support PUT changes, for example:
20  * <ul>
21  * <li>Config: Allows to change the bridge name, dhcp, portalservices, linkbutton
22  * <li>Light: Allows to change the name
23  * <li>Group: Allows to change the name
24  * <li>Sensor: Allows to change the name
25  * </ul>
26  *
27  * @author David Graeff - Initial contribution
28  */
29 @NonNullByDefault
30 public class HueChangeRequest {
31     public @Nullable String devicename;
32     public @Nullable String name;
33     public @Nullable Boolean dhcp;
34     public @Nullable Boolean linkbutton;
35     public @Nullable Boolean portalservices;
36 }