]> git.basschouten.com Git - openhab-addons.git/blob
1c21cd6fa17696091a97a5479e60fb36c27064eb
[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.hue.internal.api.dto.clip2;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.eclipse.jdt.annotation.Nullable;
17 import org.openhab.binding.hue.internal.api.dto.clip2.enums.Archetype;
18
19 import com.google.gson.annotations.SerializedName;
20
21 /**
22  * DTO for CLIP 2 product metadata.
23  *
24  * @author Andrew Fiddian-Green - Initial contribution
25  */
26 @NonNullByDefault
27 public class MetaData {
28     private @Nullable String archetype;
29     private @Nullable String name;
30     private @Nullable @SerializedName("control_id") Integer controlId;
31
32     public Archetype getArchetype() {
33         return Archetype.of(archetype);
34     }
35
36     public @Nullable String getName() {
37         return name;
38     }
39
40     public int getControlId() {
41         Integer controlId = this.controlId;
42         return controlId != null ? controlId.intValue() : 0;
43     }
44 }