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.kodi.internal.model;
16 * Class representing a Kodi UniqueID
18 * @author Meng Yiqi - Initial contribution
20 public class KodiUniqueID {
23 private String imdbtvshow;
24 private String tmdbtvshow;
25 private String tmdbepisode;
26 private String douban;
28 public String getImdb() {
32 public void setImdb(String imdb) {
36 public String getTmdb() {
40 public void setTmdb(String tmdb) {
44 public String getImdbtvshow() {
48 public void setImdbtvshow(String imdbtvshow) {
49 this.imdbtvshow = imdbtvshow;
52 public String getTmdbtvshow() {
56 public void setTmdbtvshow(String tmdbtvshow) {
57 this.tmdbtvshow = tmdbtvshow;
60 public String getTmdbepisode() {
64 public void setTmdbepisode(String tmdbepisode) {
65 this.tmdbtvshow = tmdbepisode;
68 public String getDouban() {
72 public void setDouban(String douban) {