]> git.basschouten.com Git - openhab-addons.git/blob
96a68bf9bc83676430ac27464426df6bf3efca5e
[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.binding.hyperion.internal.protocol.ng;
14
15 /**
16  * The {@link ComponentState} is a POJO for a component state in the Hyperion.ng server.
17  *
18  * @author Daniel Walters - Initial contribution
19  */
20 public class ComponentState {
21
22     private String component;
23     private boolean state;
24
25     public void setComponent(String component) {
26         this.component = component;
27     }
28
29     public void setState(boolean state) {
30         this.state = state;
31     }
32
33     public String getComponent() {
34         return component;
35     }
36
37     public boolean getState() {
38         return state;
39     }
40 }