Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
50d4dbf6
Commit
50d4dbf6
authored
Apr 27, 2010
by
Simon Morlat
Browse files
modify interface
parent
fbcae461
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
10 deletions
+7
-10
java/org/linphone/core/LinphoneAuthInfo.java
java/org/linphone/core/LinphoneAuthInfo.java
+6
-1
java/org/linphone/core/LinphoneCore.java
java/org/linphone/core/LinphoneCore.java
+1
-9
No files found.
java/org/linphone/core/LinphoneAuthInfo.java
View file @
50d4dbf6
...
...
@@ -19,7 +19,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
package
org.linphone.core
;
public
interface
LinphoneAuthInfo
{
String
getUsername
();
String
getPassword
();
String
getRealm
();
void
setUsername
(
String
username
);
void
setPassword
(
String
password
);
void
setRealm
(
String
realm
);
}
java/org/linphone/core/LinphoneCore.java
View file @
50d4dbf6
...
...
@@ -59,14 +59,6 @@ public interface LinphoneCore {
}
/**
* @param identity sip uri sip:jehan@linphone.org
* @param proxy sip uri (sip:linphone.org)
* @param route optionnal sip usi (sip:linphone.org)
* @param register should be initiated
* @return
*/
public
LinphoneProxyConfig
createProxyConfig
(
String
identity
,
String
proxy
,
String
route
,
boolean
enableRegister
)
throws
LinphoneCoreException
;
/**
* clear all added proxy config
*/
...
...
@@ -123,7 +115,7 @@ public interface LinphoneCore {
/**
* @return a list of LinphoneCallLog
*/
public
List
<
LinphoneCallLog
>
getCallLogs
();
public
List
getCallLogs
();
/**
* This method is called by the application to notify the Linphone core library when network is reachable.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment