source: josm/trunk/src/org/openstreetmap/josm/actions/upload/UploadHook.java@ 2168

Last change on this file since 2168 was 2168, checked in by Gubaer, 15 years ago

fixed #3304: Upload failed - Placeholder Relation not found
fixed #2353: Wrong relation upload order results in 512 Precondition Failed
Warning: this is going to break plugins which register Upload Hooks. These plugins will be fixed shortly.

File size: 329 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions.upload;
3
4import org.openstreetmap.josm.data.APIDataSet;
5
6public interface UploadHook {
7 /**
8 * Checks the upload.
9 * @param apiDataSet the data to upload
10 */
11 public boolean checkUpload(APIDataSet apiDataSet);
12}
Note: See TracBrowser for help on using the repository browser.