projects
/
pub
/
Android
/
ownCloud.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge branch 'master' of github.com:owncloud/android into setAsWallpaper
[pub/Android/ownCloud.git]
/
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
84c7846
..
fcde054
100644
(file)
--- 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<OCFile> {
private boolean mIsDownloading;
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<OCFile> {
mRemoteId = source.readString();
mNeedsUpdateThumbnail = source.readInt() == 1;
mIsDownloading = source.readInt() == 1;
mRemoteId = source.readString();
mNeedsUpdateThumbnail = source.readInt() == 1;
mIsDownloading = source.readInt() == 1;
- m
InConflict = source.readInt() == 1
;
+ m
EtagInConflict = source.readString()
;
}
}
@@
-145,7
+145,7
@@
public class OCFile implements Parcelable, Comparable<OCFile> {
dest.writeString(mRemoteId);
dest.writeInt(mNeedsUpdateThumbnail ? 1 : 0);
dest.writeInt(mIsDownloading ? 1 : 0);
dest.writeString(mRemoteId);
dest.writeInt(mNeedsUpdateThumbnail ? 1 : 0);
dest.writeInt(mIsDownloading ? 1 : 0);
- dest.write
Int(mInConflict ? 1 : 0
);
+ dest.write
String(mEtagInConflict
);
}
/**
}
/**
@@
-343,7
+343,7
@@
public class OCFile implements Parcelable, Comparable<OCFile> {
mRemoteId = null;
mNeedsUpdateThumbnail = false;
mIsDownloading = false;
mRemoteId = null;
mNeedsUpdateThumbnail = false;
mIsDownloading = false;
- m
InConflict = false
;
+ m
EtagInConflict = null
;
}
/**
}
/**
@@
-584,11
+584,11
@@
public class OCFile implements Parcelable, Comparable<OCFile> {
this.mIsDownloading = isDownloading;
}
this.mIsDownloading = isDownloading;
}
- public
boolean is
InConflict() {
- return mInConflict;
+ public
String getEtag
InConflict() {
+ return m
Etag
InConflict;
}
}
- public void set
InConflict(boolean i
nConflict) {
- m
InConflict = i
nConflict;
+ public void set
EtagInConflict(String etagI
nConflict) {
+ m
EtagInConflict = etagI
nConflict;
}
}
}
}