Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SyncResultStatus.java « model « shared « notes « owncloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41ba850abc6a0521f4b3dca86854a115ca4b542f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package it.niedermann.owncloud.notes.shared.model;

public class SyncResultStatus {
    public boolean pullSuccessful = true;
    public boolean pushSuccessful = true;

    public static final SyncResultStatus FAILED = new SyncResultStatus();

    static {
        FAILED.pullSuccessful = false;
        FAILED.pushSuccessful = false;
    }
}