]> git.basschouten.com Git - openhab-addons.git/blob
e932887f381b20caa0fa210c5e6742ea21d691b5
[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.cbemm.evoicc;
14
15 import org.openhab.binding.teleinfo.internal.dto.common.FrameEjpOption;
16
17 /**
18  * The {@link FrameCbemmEvolutionIccEjpOption} class defines a CBEMM Evolution ICC Teleinfo frame with EJP option.
19  *
20  * @author Nicolas SIBERIL - Initial contribution
21  */
22 public class FrameCbemmEvolutionIccEjpOption extends FrameCbemmEvolutionIcc implements FrameEjpOption {
23
24     private static final long serialVersionUID = -5053572570767309239L;
25
26     private int ejphpm;
27     private int ejphn;
28     private Integer pejp;
29
30     public FrameCbemmEvolutionIccEjpOption() {
31         // default constructor
32     }
33
34     @Override
35     public int getEjphpm() {
36         return ejphpm;
37     }
38
39     @Override
40     public int getEjphn() {
41         return ejphn;
42     }
43
44     @Override
45     public Integer getPejp() {
46         return pejp;
47     }
48
49     @Override
50     public void setEjphpm(int ejphpm) {
51         this.ejphpm = ejphpm;
52     }
53
54     @Override
55     public void setEjphn(int ejphn) {
56         this.ejphn = ejphn;
57     }
58
59     @Override
60     public void setPejp(Integer pejp) {
61         this.pejp = pejp;
62     }
63 }