X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/b9ef747a0be9e50d50b709474daf9dca47d60f5f..c54d7e35d0efb3d1352ff6d1330cac185bef0a21:/src/com/owncloud/android/datamodel/OCFile.java diff --git a/src/com/owncloud/android/datamodel/OCFile.java b/src/com/owncloud/android/datamodel/OCFile.java index 84c7846d..fcde054a 100644 --- a/src/com/owncloud/android/datamodel/OCFile.java +++ b/src/com/owncloud/android/datamodel/OCFile.java @@ -74,7 +74,7 @@ public class OCFile implements Parcelable, Comparable { private boolean mIsDownloading; - private boolean mInConflict; + private String mEtagInConflict; // Save file etag in the server, when there is a conflict. No conflict = null /** @@ -119,7 +119,7 @@ public class OCFile implements Parcelable, Comparable { mRemoteId = source.readString(); mNeedsUpdateThumbnail = source.readInt() == 1; mIsDownloading = source.readInt() == 1; - mInConflict = source.readInt() == 1; + mEtagInConflict = source.readString(); } @@ -145,7 +145,7 @@ public class OCFile implements Parcelable, Comparable { dest.writeString(mRemoteId); dest.writeInt(mNeedsUpdateThumbnail ? 1 : 0); dest.writeInt(mIsDownloading ? 1 : 0); - dest.writeInt(mInConflict ? 1 : 0); + dest.writeString(mEtagInConflict); } /** @@ -343,7 +343,7 @@ public class OCFile implements Parcelable, Comparable { mRemoteId = null; mNeedsUpdateThumbnail = false; mIsDownloading = false; - mInConflict = false; + mEtagInConflict = null; } /** @@ -584,11 +584,11 @@ public class OCFile implements Parcelable, Comparable { this.mIsDownloading = isDownloading; } - public boolean isInConflict() { - return mInConflict; + public String getEtagInConflict() { + return mEtagInConflict; } - public void setInConflict(boolean inConflict) { - mInConflict = inConflict; + public void setEtagInConflict(String etagInConflict) { + mEtagInConflict = etagInConflict; } }