summaryrefslogtreecommitdiff
path: root/same/src/main/java/com/orbekk/same/UrlReceiver.java
blob: 31a0276a452525c7c34f782dbb6897c68c7c503b (plain)
1
2
3
4
5
6
7
8
9
10
package com.orbekk.same;

/**
 * An interface to get notified of the URL to this computer.
 *
 * This interface is used to reliably obtain the URL of this host.
 */
public interface UrlReceiver {
    void setUrl(String url);
}