001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.gui.io;
003
004public enum UploadOrSaveState {
005    /**
006     * a data layer was successfully saved or upload to the server
007     */
008    OK,
009    /**
010     * uploading or saving a data layer has failed
011     */
012    FAILED,
013    /**
014     * uploading or saving a data layer was canceled
015     */
016    CANCELED
017}