2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.hyperion.internal.protocol.ng;
15 import java.util.List;
17 import org.openhab.binding.hyperion.internal.protocol.v1.Effect;
19 import com.google.gson.annotations.SerializedName;
22 * The {@link NgInfo} is a POJO for information in the Hyperion.ng server.
24 * @author Daniel Walters - Initial contribution
28 @SerializedName("components")
29 private List<Component> components = null;
31 @SerializedName("adjustment")
32 private List<Adjustment> adjustment = null;
34 @SerializedName("priorities")
35 private List<Priority> priorities = null;
37 @SerializedName("hyperion")
38 private Hyperion hyperion = null;
40 @SerializedName("effects")
41 private List<Effect> effects = null;
43 public List<Component> getComponents() {
47 public List<Adjustment> getAdjustment() {
51 public List<Priority> getPriorities() {
55 public Hyperion getHyperion() {
59 public void setComponents(List<Component> components) {
60 this.components = components;
63 public void setAdjustment(List<Adjustment> adjustment) {
64 this.adjustment = adjustment;
67 public void setPriorities(List<Priority> priorities) {
68 this.priorities = priorities;
71 public void setHyperion(Hyperion hyperion) {
72 this.hyperion = hyperion;
75 public List<Effect> getEffects() {