001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.plugins.eventbus.gui.preferences.server;
003
004import java.util.EventObject;
005
006/**
007 * Event fired when proxy settings are updated.
008 */
009public class ProxyPreferenceChangedEvent extends EventObject {
010
011    private static final long serialVersionUID = 1L;
012
013    /**
014     * Constructs a new {@code ProxyPreferenceChangedEvent}.
015     * @param source object on which the Event initially occurred
016     */
017    public ProxyPreferenceChangedEvent(Object source) {
018        super(source);
019    }
020}