initialize method in interface

git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1448468 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2013-02-20 23:14:48 +00:00
parent 307235f416
commit c38e94efb2
2 changed files with 6 additions and 2 deletions

View File

@ -97,7 +97,6 @@ public class DefaultRoleManager
private RBACManager rbacManager;
@SuppressWarnings("unchecked")
public void loadRoleModel( URL resource )
throws RoleManagerException
{
@ -139,7 +138,6 @@ public class DefaultRoleManager
}
}
@SuppressWarnings("unchecked")
public void loadRoleModel( RedbackRoleModel roleModel )
throws RoleManagerException
{

View File

@ -171,4 +171,10 @@ public interface RoleManager
*/
void verifyTemplatedRole( String templateID, String resource )
throws RoleManagerException;
/**
* intialize the role manager
* @since 2.1
*/
void initialize();
}