1 package org.smslib.callback;
3 import org.eclipse.jdt.annotation.NonNullByDefault;
6 * The {@link IDeviceInformationListener} will receive informations
8 * Extracted from SMSLib
11 public interface IDeviceInformationListener {
13 void setManufacturer(String manufacturer);
15 void setModel(String string);
17 void setSwVersion(String swVersion);
19 void setSerialNo(String serialNo);
21 void setImsi(String imsi);
23 void setRssi(String rssi);
25 void setMode(String mode);
27 public void setTotalSent(String totalSent);
29 public void setTotalFailed(String totalFailed);
31 public void setTotalReceived(String totalReceived);
33 public void setTotalFailures(String totalFailure);