]> sjero.net Git - linphone/blob - LinphoneAuthInfoImpl.java
Fix armv6 loadling liblinphone issue
[linphone] / LinphoneAuthInfoImpl.java
1 /*
2 LinphoneAuthInfoImpl.java
3 Copyright (C) 2010  Belledonne Communications, Grenoble, France
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18 */
19 package org.linphone.core;
20
21 class LinphoneAuthInfoImpl implements LinphoneAuthInfo {
22         protected final long nativePtr;
23         private native long newLinphoneAuthInfo(String username, String userid, String passwd, String ha1,String realm);
24         private native void  delete(long ptr);
25         protected LinphoneAuthInfoImpl(String username,String password, String realm)  {
26                 nativePtr = newLinphoneAuthInfo(username,null,password,null,realm);
27         }
28         protected void finalize() throws Throwable {
29                 delete(nativePtr);
30         }
31         public String getPassword() {
32                 // TODO Auto-generated method stub
33                 throw new RuntimeException("not implemeneted yet");
34         }
35         public String getRealm() {
36                 // TODO Auto-generated method stub
37                 throw new RuntimeException("not implemeneted yet");
38         }
39         public String getUsername() {
40                 // TODO Auto-generated method stub
41                 throw new RuntimeException("not implemeneted yet");
42         }
43         public void setPassword(String password) {
44                 // TODO Auto-generated method stub
45                 throw new RuntimeException("not implemeneted yet");
46                 
47         }
48         public void setRealm(String realm) {
49                 // TODO Auto-generated method stub
50                 throw new RuntimeException("not implemeneted yet");
51         }
52         public void setUsername(String username) {
53                 // TODO Auto-generated method stub
54                 throw new RuntimeException("not implemeneted yet");
55         }
56 }