*/
private boolean checkComponentSecurity(Object service, UserEnvironment ue) throws AuthorizationException
{
for (String group : ue.getGroups())
{
ComponentSecurity security = authorizationDAO
.findComponentSecurityById(service.getClass().getName(), group);
if (security != null)
{
if (security.getOperationsAllowed().equals("*"))
{
return true;
}
}
}