added getHandler method to manager interface

This commit is contained in:
Sebastian Sdorra
2010-11-05 18:25:34 +01:00
parent fb20f3a26d
commit c0ace49096
2 changed files with 12 additions and 0 deletions

View File

@@ -48,6 +48,17 @@ public interface Manager<T extends TypedObject, E extends Exception>
extends HandlerBase<T, E>
{
/**
* Method description
*
*
* @param type
* @param <H>
*
* @return
*/
public <H extends Handler<T, E>> H getHandler(String type);
/**
* Method description
*

View File

@@ -55,5 +55,6 @@ public interface RepositoryManager
*
* @return
*/
@Override
public RepositoryHandler getHandler(String type);
}