use of com.opensymphony.xwork2.ProxyObjectFactory in project struts by apache.
the class ScopedModelDrivenInterceptorTest method setUp.
/**
* Set up instance variables required by this test case.
*/
@Override
public void setUp() throws Exception {
super.setUp();
inter = new ScopedModelDrivenInterceptor();
ProxyObjectFactory factory = new ProxyObjectFactory();
factory.setContainer(container);
inter.setObjectFactory(factory);
}
Aggregations