1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-07 16:06:08 +00:00

Order CreateRemoteShareOperation and make it possible to get sharing errors with new arch

This commit is contained in:
davigonz 2019-02-28 15:28:00 +01:00
parent c2d8e68ecc
commit cbb15c3626
2 changed files with 5 additions and 1 deletions

View File

@ -526,6 +526,10 @@ public class RemoteOperationResult<T extends Object>
mData = data; mData = data;
} }
public void setHttpPhrase(String httpPhrase) {
mHttpPhrase = httpPhrase;
}
public enum ResultCode { public enum ResultCode {
OK, OK,
OK_SSL, OK_SSL,

View File

@ -27,4 +27,4 @@ package com.owncloud.android.lib.resources.shares
import java.util.ArrayList import java.util.ArrayList
class ShareParserResult(val shares: ArrayList<RemoteShare>, val parserMessage: String) class ShareParserResult(val shares: ArrayList<RemoteShare>, val parserMessage: String)