Ignore:
Timestamp:
2013-01-27T19:11:23+01:00 (11 years ago)
Author:
Don-vip
Message:

fix #8148 - Improve remote control handlers (requests validation, display of confirmation messages, robustness, javadoc)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/remotecontrol/handler/OpenFileHandler.java

    r5085 r5680  
    77import static org.openstreetmap.josm.tools.I18n.tr;
    88
     9/**
     10 * Opens a local file
     11 */
    912public class OpenFileHandler extends RequestHandler {
    1013
     14    /**
     15     * The remote control command name used to open a local file.
     16     */
    1117    public static final String command = "open_file";
    1218
     
    3036        return tr("Remote Control has been asked to open a local file.");
    3137    }
     38
     39    @Override
     40    protected void validateRequest() throws RequestHandlerBadRequestException {
     41        // Nothing to do
     42    }
    3243}
Note: See TracChangeset for help on using the changeset viewer.