1   /*
2    * Created on May 13, 2004
3    *
4    */
5   package functional.agent;
6   
7   
8   /***
9    * Represents the Agent born into the Node1 classpath
10   *  @author navery
11   */
12  public interface SimpleAgent {
13  	
14  	public void setName(String name);
15  	public String getName();
16  	public void startUnitOfWork(Integer amountOfWork);
17  	public Boolean isFinished();
18  
19  }