]> git.basschouten.com Git - openhab-addons.git/blob
752bcbaa0d2bdd38efb19ffb950b0b34ed6dc07c
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2020 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.teleinfo.internal.dto.common;
14
15 import org.openhab.binding.teleinfo.internal.dto.Frame;
16
17 /**
18  * The {@link FrameAdco} class defines common attributes for CBEMM and CBETM Teleinfo frames.
19  *
20  * @author Nicolas SIBERIL - Initial contribution
21  */
22 public abstract class FrameAdco extends Frame {
23
24     private static final long serialVersionUID = 1384731471611580773L;
25
26     private String adco;
27
28     public FrameAdco() {
29         // default constructor
30     }
31
32     public String getAdco() {
33         return adco;
34     }
35
36     public void setAdco(String adco) {
37         this.adco = adco;
38     }
39 }