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

Last change on this file since 2641 was 2599, checked in by Gubaer, 14 years ago

fixed #4130: Chunked upload mode counter is wrong
fixed #4118: Upload dialog too complicated
fixed #4129: Hide the new "Upload data in one request/chunks/individually" behind an expanding "Upload method" box
fixed #2075: API 0.6: don't upload more than 50K edits at once
fixed #4044: Huge uploads never end [should be solved with chunked upload mode]
fixed #4110: Upload dialog spacing wrong
fixed #3386: Upload dialog has empty areas when the changeset doesn't include all of add/modify/delete operations
see #3369: bulk import helper [JOSM now supports multi changesets uploads]

See online help for more details.

Completes r2598

File size: 637 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.io;
3
4public enum MaxChangesetSizeExceededPolicy {
5 /**
6 * Abort uploading. Send the user back to map editing.
7 */
8 ABORT,
9 /**
10 * Fill one changeset. If it is full send the user back to the
11 * upload dialog where he can choose another changeset or another
12 * upload strategy if he or she wants to.
13 */
14 FILL_ONE_CHANGESET_AND_RETURN_TO_UPLOAD_DIALOG,
15
16 /**
17 * Automatically open as many new changesets as necessary to upload
18 * the data.
19 */
20 AUTOMATICALLY_OPEN_NEW_CHANGESETS
21}
Note: See TracBrowser for help on using the repository browser.