*
* @return True if the component is allowed at all, false if it is denied
*/
public boolean allowed(Object component, UserEnvironment ue) throws AuthorizationException
{
Operation o = new DefaultOperation();
o.setOperationCode("*");
o.setService(component);
return allowed(o, ue);
}