]> sjero.net Git - linphone/blobdiff - java/common/org/linphone/core/LinphoneCoreListener.java
add notifyReceived + refreshRegisters to java api
[linphone] / java / common / org / linphone / core / LinphoneCoreListener.java
index cfe43895ef82ac45e897d6d1df90decb16c065c9..400e942c3f960b6699b890ffeca897803711fef3 100644 (file)
@@ -103,5 +103,14 @@ public interface LinphoneCoreListener {
         * @param data
         */
        void ecCalibrationStatus(LinphoneCore lc,LinphoneCore.EcCalibratorStatus status, int delay_ms, Object data);
+       /**
+        *  Report Notified message received for this identity.
+        *  @param lc LinphoneCore
+        *  @param call LinphoneCall in case the notify is part of a dialog, may be null
+        *  @param from LinphoneAddress the message comes from
+        *  @param event String the raw body of the notify event.
+        *  
+        */
+       void notifyReceived(LinphoneCore lc, LinphoneCall call, LinphoneAddress from, byte[] event);
 }