View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   
6   package cz.cuni.amis.pogamut.base.server;
7   
8   import java.net.URI;
9   
10  import cz.cuni.amis.pogamut.base.agent.IAgent;
11  
12  /**
13   * Interface for servers representing remote worlds.
14   * @author ik
15   */
16  public interface IWorldServer<A extends IAgent> extends IWorldAgentsObserver<A>, IAgent {
17  	
18      /**
19       * Address of the world. eg. gb04://localhost:3000
20       * @return
21       */
22      URI getWorldAddress();
23  
24  
25  }