View Javadoc

1   /***
2    * 
3    */
4   package de.cohesion.bssh.impl;
5   
6   /***
7    * @author schulzs
8    *
9    */
10  public interface Factory<U,V> {
11  
12  	V create(final U u) throws InstantiationException ;
13  	
14  	void destroy(final V v);
15  	
16  }