*/
public static AbstractTestDelegate getDelegate(Class<?> clazz) throws Exception
{
String property = System.getProperty("jboss.mc.secure", "false");
boolean enableSecurity = Boolean.valueOf(property);
AOPMicrocontainerTestDelegate delegate = new ScopingAOPMicrocontainerTestDelegate(clazz);
delegate.enableSecurity = enableSecurity;
return delegate;
}