diff options
author | pedroGitt <pedro.contreiras@amdocs.com> | 2016-10-25 18:18:40 +0200 |
---|---|---|
committer | pedroGitt <pedro.contreiras@amdocs.com> | 2016-10-25 18:18:40 +0200 |
commit | 232de794f2109e468d33225610cc0b6e4e22ed12 (patch) | |
tree | 2c110d00f821f62ee846e7a2186b5f6e944a763c /java | |
parent | eb2052ba057f4e0de58adea6c69eba9062e096b6 (diff) |
Update return code for initOutboundSessionWithAccount() and initInboundSessionWithAccount():
An error code is now returned, no utility to return the object itself (initial implementation matching iOS)
Diffstat (limited to 'java')
-rw-r--r-- | java/android/OlmLibSdk/olm-sdk/src/main/java/org/matrix/olm/OlmSession.java | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/java/android/OlmLibSdk/olm-sdk/src/main/java/org/matrix/olm/OlmSession.java b/java/android/OlmLibSdk/olm-sdk/src/main/java/org/matrix/olm/OlmSession.java index 5877d24..867cef9 100644 --- a/java/android/OlmLibSdk/olm-sdk/src/main/java/org/matrix/olm/OlmSession.java +++ b/java/android/OlmLibSdk/olm-sdk/src/main/java/org/matrix/olm/OlmSession.java @@ -231,20 +231,18 @@ public class OlmSession implements Serializable { * @param aAccount the account to associate with this session * @param aTheirIdentityKey the identity key of the recipient * @param aTheirOneTimeKey the one time key of the recipient - * @return this if operation succeed, null otherwise + * @return 0 if operation succeed, -1 otherwise */ - public OlmSession initOutboundSessionWithAccount(OlmAccount aAccount, String aTheirIdentityKey, String aTheirOneTimeKey) { - OlmSession retObj=null; + public int initOutboundSessionWithAccount(OlmAccount aAccount, String aTheirIdentityKey, String aTheirOneTimeKey) { + int retCode=-1; if((null==aAccount) || TextUtils.isEmpty(aTheirIdentityKey) || TextUtils.isEmpty(aTheirOneTimeKey)){ Log.e(LOG_TAG, "## initOutboundSession(): invalid input parameters"); } else { - if(0 == initOutboundSessionJni(aAccount.getOlmAccountId(), aTheirIdentityKey, aTheirOneTimeKey)) { - retObj = this; - } + retCode = initOutboundSessionJni(aAccount.getOlmAccountId(), aTheirIdentityKey, aTheirOneTimeKey); } - return retObj; + return retCode; } private native int initOutboundSessionJni(long aOlmAccountId, String aTheirIdentityKey, String aTheirOneTimeKey); @@ -252,25 +250,23 @@ public class OlmSession implements Serializable { /** * Create a new in-bound session for sending/receiving messages from an - * incoming PRE_KEY ({@link OlmMessage#MESSAGE_TYPE_PRE_KEY}) message.<br> + * incoming PRE_KEY message ({@link OlmMessage#MESSAGE_TYPE_PRE_KEY}).<br> * Public API for {@link #initInboundSessionJni(long, String)}. * This API may be used to process a "m.room.encrypted" event when type = 1 (PRE_KEY). * @param aAccount the account to associate with this session * @param aPreKeyMsg PRE KEY message - * @return this if operation succeed, null otherwise + * @return 0 if operation succeed, -1 otherwise */ - public OlmSession initInboundSessionWithAccount(OlmAccount aAccount, String aPreKeyMsg) { - OlmSession retObj=null; + public int initInboundSessionWithAccount(OlmAccount aAccount, String aPreKeyMsg) { + int retCode=-1; if((null==aAccount) || TextUtils.isEmpty(aPreKeyMsg)){ Log.e(LOG_TAG, "## initInboundSessionWithAccount(): invalid input parameters"); } else { - if( 0 == initInboundSessionJni(aAccount.getOlmAccountId(), aPreKeyMsg)) { - retObj = this; - } + retCode = initInboundSessionJni(aAccount.getOlmAccountId(), aPreKeyMsg); } - return retObj; + return retCode; } private native int initInboundSessionJni(long aOlmAccountId, String aOneTimeKeyMsg); |