Package org.zkoss.spring.web.context.request

Examples of org.zkoss.spring.web.context.request.PageScope


        final BeanDefinitionBuilder builder =
          BeanDefinitionBuilder.rootBeanDefinition(CustomScopeConfigurer.class);
    final Map scopes = new HashMap();
    scopes.put("application", new ApplicationScope());
    scopes.put("desktop", new DesktopScope());
    scopes.put("page", new PageScope());
    scopes.put("idspace", new IdSpaceScope());
    scopes.put("execution", new ExecutionScope());
    builder.addPropertyValue("scopes", scopes);
        reg.registerBeanDefinition(ZkBeanIds.ZK_SCOPE_CONFIG, builder.getBeanDefinition());
       
View Full Code Here

TOP

Related Classes of org.zkoss.spring.web.context.request.PageScope

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.