]> git.basschouten.com Git - openhab-addons.git/blob
8f7f30ddc6b8127e483681753ca526903ca8f792
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2021 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.cbetm;
14
15 import org.openhab.binding.teleinfo.internal.dto.common.FrameAdco;
16
17 /**
18  * The {@link FrameCbetm} class defines common attributes for CBETM Teleinfo frames.
19  *
20  * @author Nicolas SIBERIL - Initial contribution
21  */
22 public abstract class FrameCbetm extends FrameAdco {
23
24     private static final long serialVersionUID = 2083723009359732507L;
25
26     private int iinst1; // ampères
27     private int iinst2; // ampères
28     private int iinst3; // ampères
29
30     public FrameCbetm() {
31         // default constructor
32     }
33
34     public int getIinst1() {
35         return iinst1;
36     }
37
38     public void setIinst1(int iinst1) {
39         this.iinst1 = iinst1;
40     }
41
42     public int getIinst2() {
43         return iinst2;
44     }
45
46     public void setIinst2(int iinst2) {
47         this.iinst2 = iinst2;
48     }
49
50     public int getIinst3() {
51         return iinst3;
52     }
53
54     public void setIinst3(int iinst3) {
55         this.iinst3 = iinst3;
56     }
57 }