]> sjero.net Git - linphone/blobdiff - java/common/org/linphone/core/LinphoneAuthInfo.java
full LinphoneAuthInfo impl for Android
[linphone] / java / common / org / linphone / core / LinphoneAuthInfo.java
index 6590dafebbf4f827504082768ce62542df604113..ed8a8401769b3208c49840926cafa0001d474861 100644 (file)
@@ -63,6 +63,26 @@ public interface LinphoneAuthInfo {
         * @param realm
         */
        void setRealm(String realm);
+       /**
+        * get auth userid has used in authentication header. If null, username is taken for authentication
+        * @return auth userid
+        */
+       String getUserId();
+       /**
+        * set auth userid has used in authentication header. If null, username is taken for authentication
+        * 
+        */
+       void setUserId(String userid);
+       /**
+        * get ha1
+        * @return ha1
+        */
+       String getHa1();
+       /**
+        * set ha1
+        */
+       void setHa1(String ha1);
+       
 }