params.setMixins(new AOPProxyFactoryMixin[] {
new AOPProxyFactoryMixin(OtherMixin.class, new Class[] {OtherMixinInterface.class, OtherMixinInterface2.class}, "20")
});
params.setTarget(new SerializablePOJO());
AOPProxyFactory factory = new GeneratedAOPProxyFactory();
SomeInterface si = (SomeInterface)factory.createAdvisedProxy(params);
TestAspect.invoked = false;
TestAspect2.invoked = false;
TestAspect3.invoked = false;
TestAspect4.invoked = false;