View Javadoc

1   /***
2    * 
3    */
4   package de.cohesion.bssh;
5   
6   /***
7    * @author schulzs
8    */
9   public interface Command<T> {
10  	
11  	T execute(final Member m) throws Exception;
12  
13  }