View Javadoc

1   package org.codehaus.xfire.server;
2   
3   /***
4    * Common interface for all kind of XFire servers.
5    * 
6    * @see org.codehaus.xfire.server.http.XFireHttpServer
7    * 
8    * @version $Id$
9    */
10  public interface XFireServer
11  {
12  
13      public void start() throws Exception;
14  
15      public void stop() throws Exception;
16  
17      public boolean isStarted();
18  
19  }