}
}
public static AbstractTestDelegate getDelegate(Class<?> clazz) throws Exception
{
AbstractTestDelegate delegate = new UclClassPoolTestDelegate(clazz);
String property = System.getProperty("jboss.aop.secure", "true");
boolean enableSecurity = false; //Boolean.valueOf(property).booleanValue(); // TODO this value was true
delegate.enableSecurity = enableSecurity;
return delegate;
}