2 * Copyright (c) 2010-2020 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.teleinfo.internal.dto.cbemm;
15 import org.openhab.binding.teleinfo.internal.dto.common.FrameAdco;
16 import org.openhab.binding.teleinfo.internal.dto.common.Ptec;
19 * The {@link FrameCbemm} class defines common attributes for CBEMM Teleinfo frames.
21 * @author Nicolas SIBERIL - Initial contribution
23 public abstract class FrameCbemm extends FrameAdco {
25 private static final long serialVersionUID = -8500010131430582841L;
28 private int iinst; // ampères
29 private Integer adps; // ampères
30 private Integer imax; // ampères
32 private String motdetat;
35 // default constructor
38 public int getIsousc() {
42 public void setIsousc(int isousc) {
46 public int getIinst() {
50 public void setIinst(int iinst) {
54 public Integer getAdps() {
58 public void setAdps(Integer adps) {
62 public Integer getImax() {
66 public void setImax(Integer imax) {
70 public Ptec getPtec() {
74 public void setPtec(Ptec ptec) {
78 public String getMotdetat() {
82 public void setMotdetat(String motdetat) {
83 this.motdetat = motdetat;