source: josm/trunk/src/org/openstreetmap/josm/io/MaxChangesetSizeExceededPolicy.java@ 12711

Last change on this file since 12711 was 12687, checked in by Don-vip, 7 years ago

see #15182 - move UploadStrategySpecification and required enums from gui.io to io

  • Property svn:eol-style set to native
File size: 756 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io;
3
4/**
5 * This determines what to do when the max changeset size was exceeded by a upload.
6 * @since 12687 (moved from {@code gui.io} package)
7 */
8public enum MaxChangesetSizeExceededPolicy {
9 /**
10 * Abort uploading. Send the user back to map editing.
11 */
12 ABORT,
13 /**
14 * Fill one changeset. If it is full send the user back to the
15 * upload dialog where he can choose another changeset or another
16 * upload strategy if he or she wants to.
17 */
18 FILL_ONE_CHANGESET_AND_RETURN_TO_UPLOAD_DIALOG,
19
20 /**
21 * Automatically open as many new changesets as necessary to upload
22 * the data.
23 */
24 AUTOMATICALLY_OPEN_NEW_CHANGESETS
25}
Note: See TracBrowser for help on using the repository browser.