From: masensio Date: Mon, 5 Oct 2015 13:17:39 +0000 (+0200) Subject: Add new attribute to OCFile to know if this file is shared with users/groups X-Git-Tag: oc-android-1.9^2~30^2~64 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/c288f91d875c8a62b5e1de317a2ce24494af6f67?ds=inline Add new attribute to OCFile to know if this file is shared with users/groups --- diff --git a/src/com/owncloud/android/datamodel/OCFile.java b/src/com/owncloud/android/datamodel/OCFile.java index 4b689860..8c7101bb 100644 --- a/src/com/owncloud/android/datamodel/OCFile.java +++ b/src/com/owncloud/android/datamodel/OCFile.java @@ -75,6 +75,7 @@ public class OCFile implements Parcelable, Comparable { private boolean mIsDownloading; private String mEtagInConflict; // Save file etag in the server, when there is a conflict. No conflict = null + private boolean mShareWithUser; @@ -603,4 +604,5 @@ public class OCFile implements Parcelable, Comparable { public void setShareWithUser(boolean shareWithUser) { this.mShareWithUser = shareWithUser; } + }