001package jmri.jmrix.dccpp.dccppovertcp;
002
003/**
004 * Implementation of the DCCppOverTcp Server Server Protocol
005 *
006 * @author Alex Shepherd Copyright (C) 2006
007 */
008public interface ServerListner {
009
010    void notifyServerStateChanged(Server s);
011
012    void notifyClientStateChanged(Server s);
013}