]> git.basschouten.com Git - openhab-addons.git/blob
88ffd4ec0be2d40f57681f5230092b5c217a90b4
[openhab-addons.git] /
1 package org.smslib.callback;
2
3 import org.eclipse.jdt.annotation.NonNullByDefault;
4
5 /**
6  * The {@link IDeviceInformationListener} will receive informations
7  * and statistics
8  * Extracted from SMSLib
9  */
10 @NonNullByDefault
11 public interface IDeviceInformationListener {
12
13     void setManufacturer(String manufacturer);
14
15     void setModel(String string);
16
17     void setSwVersion(String swVersion);
18
19     void setSerialNo(String serialNo);
20
21     void setImsi(String imsi);
22
23     void setRssi(String rssi);
24
25     void setMode(String mode);
26
27     public void setTotalSent(String totalSent);
28
29     public void setTotalFailed(String totalFailed);
30
31     public void setTotalReceived(String totalReceived);
32
33     public void setTotalFailures(String totalFailure);
34 }