]> sjero.net Git - linphone/blobdiff - java/impl/org/linphone/core/LinphoneCallImpl.java
add get_remote_contact() api and clean java API.
[linphone] / java / impl / org / linphone / core / LinphoneCallImpl.java
index 6a91438acf4ea8aaf80f3a4849fabae80bc8126d..45c905dbb5b7d3f253c17c9cb17080cf7c43a5f7 100644 (file)
@@ -179,6 +179,11 @@ class LinphoneCallImpl implements LinphoneCall {
        public String getRemoteUserAgent() {
                return getRemoteUserAgent(nativePtr);
        }
+
+       private native String getRemoteContact(long nativePtr);
+       public String getRemoteContact() {
+               return getRemoteContact(nativePtr);
+       }
        
        private native void takeSnapshot(long nativePtr, String path);
        public void takeSnapshot(String path) {