]> git.basschouten.com Git - openhab-addons.git/blob
aea02a226e07ea61b89370e3be79f4370d53e3e2
[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.cbemm.evoicc;
14
15 import org.openhab.binding.teleinfo.internal.dto.cbemm.FrameCbemm;
16
17 /**
18  * The {@link FrameCbemmEvolutionIcc} class defines CBEMM Evolution ICC Teleinfo frames.
19  *
20  * @author Nicolas SIBERIL - Initial contribution
21  */
22 public abstract class FrameCbemmEvolutionIcc extends FrameCbemm {
23
24     private static final long serialVersionUID = 5532008316299149750L;
25
26     private int papp; // Volt.ampères
27
28     public FrameCbemmEvolutionIcc() {
29         // default constructor
30     }
31
32     public int getPapp() {
33         return papp;
34     }
35
36     public void setPapp(int papp) {
37         this.papp = papp;
38     }
39 }