-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
- Loading branch information
1 parent
c10e8eb
commit c3d71f8
Showing
3 changed files
with
63 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 9 additions & 7 deletions
16
...ary/src/main/java/com/owncloud/android/lib/resources/files/model/ServerFileInterface.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
package com.owncloud.android.lib.resources.files.model; | ||
|
||
public interface ServerFileInterface { | ||
|
||
String getFileName(); | ||
|
||
String getMimeType(); | ||
|
||
String getRemotePath(); | ||
|
||
String getImageKey(); | ||
|
||
|
||
long getLocalId(); | ||
|
||
String getRemoteId(); | ||
|
||
boolean isFavorite(); | ||
|
||
boolean isFolder(); | ||
|
||
long getFileLength(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters