1   /*
2    * Created on May 13, 2004
3    *
4    */
5   package functional.agent;
6   
7   import org.neo.swarm.AppContextBinding;
8   
9   
10  /***
11   * Represents an Agent that interrogates the known ApplicationContexts and 
12   * moves to each one, finishing one having travelled all instances
13   *  @author navery
14   */
15  public interface MobileAgent extends AppContextBinding {
16  	public void execute();
17  }