01: package org.andromda.core.server;
02:
03: import org.andromda.core.configuration.Configuration;
04:
05: /**
06: * The AndroMDA server instance. The server
07: * is configured from an AndroMDA {@link Configuration}
08: * instance.
09: *
10: * @see Client
11: * @author Chad Brandon
12: */
13: public interface Server {
14: /**
15: * Starts the server instance listening for requests with the given
16: * configuration.
17: */
18: public void start(final Configuration configuration);
19: }
|