A C D E G H I N O P R S T U V Z _

A

AfterCompose - Annotation Type in org.zkoss.spring.context.annotation
Deprecated. after release of zkspring 3.1, suggest to use SelectorComposer or GenericForwardComposer Used to specify a method that would be called after the associated ZK component is composed.
afterPropertiesSet() - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
 
ApplicationScope - Class in org.zkoss.spring.web.context.request
ZK WebApp scope; accessible only in ZK event handling request.
ApplicationScope() - Constructor for class org.zkoss.spring.web.context.request.ApplicationScope
 
AppliedTo - Annotation Type in org.zkoss.spring.context.annotation
Deprecated. after release of zkspring 3.1, suggest to use SelectorComposer or GenericForwardComposer Used to specify the associated ZK component for the annotated controller class.
ATT_CONTROLLER - Static variable in class org.zkoss.spring.config.ZkComponentFactoryBeanDefinitionParser
 
ATT_IDS - Static variable in class org.zkoss.spring.config.ZkComponentFactoryBeansDefinitionParser
 
ATT_PATH - Static variable in class org.zkoss.spring.config.ZkComponentFactoryBeanDefinitionParser
 
ATT_SCOPE - Static variable in class org.zkoss.spring.config.ZkComponentFactoryBeanDefinitionParser
 
ATT_SCOPE - Static variable in class org.zkoss.spring.config.ZkComponentFactoryBeansDefinitionParser
 
ATT_TYPE - Static variable in class org.zkoss.spring.config.ZkComponentFactoryBeanDefinitionParser
 

C

clearContextComponent() - Static method in class org.zkoss.spring.util.ZkSpringIntegrationContext
Clears context component from ZK CDI integration context that was set prior to ZK component injection
ComponentScope - Class in org.zkoss.spring.web.context.request
ZK Component scope; accessible only in ZK event handling request.
ComponentScope() - Constructor for class org.zkoss.spring.web.context.request.ComponentScope
 
contextDestroyed(ServletContextEvent) - Method in class org.zkoss.spring.web.context.CoreContextListener
Deprecated.  
contextInitialized(ServletContextEvent) - Method in class org.zkoss.spring.web.context.CoreContextListener
Deprecated.  
CoreContextListener - Class in org.zkoss.spring.web.context
Deprecated. Please use GenericForwardComposer or SelectorComposer. Pre-processes Spring beans for possible auto-wiring of ZK components.
If initial parameter 'use-urlclassloader' is true, it uses URLClassLoader to find classpath. Otherwise, it searches them by resource containing MANIFEST.MF.
CoreContextListener() - Constructor for class org.zkoss.spring.web.context.CoreContextListener
Deprecated.  
CoreVariableResolver - Class in org.zkoss.spring.init
VariableResolver for the ZK Spring Core module.
CoreVariableResolver() - Constructor for class org.zkoss.spring.init.CoreVariableResolver
 
CoreWebAppInit - Class in org.zkoss.spring.init
Automatically disable ZK event thread mechanism, install a ZK Spring UiFactory, and register spring core related variable resolver..
CoreWebAppInit() - Constructor for class org.zkoss.spring.init.CoreWebAppInit
 
createScanner(XmlReaderContext, boolean) - Method in class org.zkoss.spring.context.annotation.ZkComponentScanBeanDefinitionParser
Deprecated.  

D

DelegatingVariableResolver - Class in org.zkoss.spring
DelegatingVariableResolver for resolving Spring beans, Spring Security variables and Spring Webflow variables.
DelegatingVariableResolver() - Constructor for class org.zkoss.spring.DelegatingVariableResolver
 
DESKTOP_REUSE - Static variable in class org.zkoss.spring.bean.ZkSpringUiFactory
 
DESKTOP_URL - Static variable in class org.zkoss.spring.bean.ZkSpringUiFactory
 
DesktopScope - Class in org.zkoss.spring.web.context.request
ZK Desktop scope; accessible only in ZK event handling request.
DesktopScope() - Constructor for class org.zkoss.spring.web.context.request.DesktopScope
 
doAfterCompose(Component) - Method in class org.zkoss.spring.config.ZkSpringBeanBindingComposer
 
doAfterCompose(Component) - Method in class org.zkoss.spring.util.GenericSpringComposer
Deprecated. Auto-wires ZK Components in controllers and registers event handlers for
doBeforeCompose(Page, Component, ComponentInfo) - Method in class org.zkoss.spring.util.GenericSpringComposer
Deprecated.  
doBeforeComposeChildren(Component) - Method in class org.zkoss.spring.util.GenericSpringComposer
Deprecated.  
doCatch(Throwable) - Method in class org.zkoss.spring.util.GenericSpringComposer
Deprecated.  
doFinally() - Method in class org.zkoss.spring.util.GenericSpringComposer
Deprecated.  
doParse(Element, ParserContext, BeanDefinitionBuilder) - Method in class org.zkoss.spring.config.ZkComponentFactoryBeanDefinitionParser
 

E

equals(Object) - Method in class org.zkoss.spring.DelegatingVariableResolver
 
equals(Object) - Method in class org.zkoss.spring.init.CoreVariableResolver
 
EventHandler - Annotation Type in org.zkoss.spring.context.annotation
Deprecated. after release of zkspring 3.1, suggest to use SelectorComposer or GenericForwardComposer Used to annotate method as an event listener of the specified target ZK component and event name in the form of "abc.onXyz".
ExecutionScope - Class in org.zkoss.spring.web.context.request
ZK Execution scope; accessible only in one ZK execution(e.g.
ExecutionScope() - Constructor for class org.zkoss.spring.web.context.request.ExecutionScope
 

G

GenericSpringComposer - Class in org.zkoss.spring.util
Deprecated. after release of zkspring 3.1, suggest to use GenericForwardComposer or SelectorComposer.

An abstract composer that you can extend and write intuitive @EventHandler("myComponent.onXXX") event handler methods and auto-wired components in a ZK ZUML page. This class will add forward condition to myComponent and forward source onXXX event received by teh source myComponent to the target component method annotated with (@link EventHandler) annotation.

Notice that since this composer kept references to the components, single instance object cannot be shared by multiple components.

The following is an example. The onClick event received by Button will be forwarded to target Window myWin and the Textbox component with id name and Button component with id greetBtn are injected into name and greetBtn fields respectively (so you can use name and greetBtn variables directly in showGreeting without problem)


 GreetingCtrl.java
 @org.springframework.stereotype.Component ("greetingCtrl")
 @Scope ("desktop")
 public class GreetingCtrl extends GenericSpringComposer {

                @Autowired private Textbox name;
                @Autowired private Button greetBtn;
        
        @EventHandler("greetBtn.onClick")
                public void showGreeting(Event evt) throws WrongValueException, InterruptedException {
                        Messagebox.show("Hello " + name.getValue() + "!");
                }
 }
 
 test.zul
 
 <?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
 <window id="myWin" apply="${greetingCtrl}">
                <textbox id="name" />
                <button id="greetBtn" label="Greet!" />
 </window>

 
GenericSpringComposer() - Constructor for class org.zkoss.spring.util.GenericSpringComposer
Deprecated.  
get(String, ObjectFactory) - Method in class org.zkoss.spring.web.context.request.ApplicationScope
 
get(String, ObjectFactory<?>) - Method in class org.zkoss.spring.web.context.request.ComponentScope
 
get(String, ObjectFactory<?>) - Method in class org.zkoss.spring.web.context.request.DesktopScope
 
get(String, ObjectFactory<?>) - Method in class org.zkoss.spring.web.context.request.ExecutionScope
 
get(String, ObjectFactory<?>) - Method in class org.zkoss.spring.web.context.request.IdSpaceScope
 
get(String, ObjectFactory<?>) - Method in class org.zkoss.spring.web.context.request.PageScope
 
getAfterCompose(String) - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
 
getApplicationContext() - Method in class org.zkoss.spring.init.CoreVariableResolver
Get the spring application context.
getApplicationContext() - Static method in class org.zkoss.spring.SpringUtil
Get the spring application context.
getBean(String) - Static method in class org.zkoss.spring.SpringUtil
Get the spring bean by the specified name.
getBean(String, Class) - Static method in class org.zkoss.spring.SpringUtil
Get the spring bean by the specified name and class.
getBeanClass(Element) - Method in class org.zkoss.spring.config.ZkComponentFactoryBeanDefinitionParser
 
getBeanName() - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
 
getContextComponent() - Static method in class org.zkoss.spring.util.ZkSpringIntegrationContext
returns current thread's context component
getController() - Method in class org.zkoss.spring.util.GenericSpringComposer
Deprecated.  
getControllerId() - Method in class org.zkoss.spring.bean.ZkMethodEventListener
Deprecated.  
getControllerIds() - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
 
getConversationId() - Method in class org.zkoss.spring.web.context.request.ApplicationScope
 
getConversationId() - Method in class org.zkoss.spring.web.context.request.ComponentScope
 
getConversationId() - Method in class org.zkoss.spring.web.context.request.DesktopScope
 
getConversationId() - Method in class org.zkoss.spring.web.context.request.ExecutionScope
 
getConversationId() - Method in class org.zkoss.spring.web.context.request.IdSpaceScope
 
getConversationId() - Method in class org.zkoss.spring.web.context.request.PageScope
 
getEventListeners() - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
 
getObject() - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
 
getObjectType() - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
 
getPageDefinition(RequestInfo, String) - Method in class org.zkoss.spring.bean.ZkSpringUiFactory
 
getPageDefinitionDirectly(RequestInfo, String, String) - Method in class org.zkoss.spring.bean.ZkSpringUiFactory
 
getPageDefinitionDirectly(RequestInfo, Document, String) - Method in class org.zkoss.spring.bean.ZkSpringUiFactory
 
getPageDefinitionDirectly(RequestInfo, Reader, String) - Method in class org.zkoss.spring.bean.ZkSpringUiFactory
 
getPath() - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
Return the ZK component path to look up.
getProxy() - Static method in class org.zkoss.spring.impl.ZKProxy
Reeturns the ZK Proxy used to access version-dependent features.
getSelf(ExecutionCtrl) - Method in interface org.zkoss.spring.impl.ZKProxy.Proxy
Returns self of current context.
getSelfContextComponent() - Static method in class org.zkoss.spring.util.ZkSpringIntegrationContext
Returns current self context component
getType() - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
Return the component class that the found ZK component is supposed to be assignable to, if any.

H

hashCode() - Method in class org.zkoss.spring.DelegatingVariableResolver
 
hashCode() - Method in class org.zkoss.spring.init.CoreVariableResolver
 

I

IdSpaceScope - Class in org.zkoss.spring.web.context.request
ZK IdSpace scope; accessible only in ZK event handling request.
IdSpaceScope() - Constructor for class org.zkoss.spring.web.context.request.IdSpaceScope
 
init() - Method in class org.zkoss.spring.config.ZkSpringAnnotationNamespaceHandler
 
init() - Method in class org.zkoss.spring.config.ZkSpringNamespaceHandler
 
init(WebApp) - Method in class org.zkoss.spring.init.CoreWebAppInit
 
isApplied() - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
 
isSingleton() - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
 

N

newDesktop(RequestInfo, String, String) - Method in class org.zkoss.spring.bean.ZkSpringUiFactory
 
newPage(RequestInfo, PageDefinition, String) - Method in class org.zkoss.spring.bean.ZkSpringUiFactory
 
newPage(RequestInfo, Richlet, String) - Method in class org.zkoss.spring.bean.ZkSpringUiFactory
 

O

onEvent(Event) - Method in class org.zkoss.spring.bean.ZkMethodEventListener
Deprecated.  
onEvent(Event) - Method in class org.zkoss.spring.util.GenericSpringComposer
Deprecated.  
org.zkoss.spring - package org.zkoss.spring
This package contains interface and classes to support integrating ZK and Spring core and Spring Security.
org.zkoss.spring.bean - package org.zkoss.spring.bean
This package contains interfaces and classes for manipulating Java beans.
org.zkoss.spring.config - package org.zkoss.spring.config
This package contains classes for ZK Spring core namespace support
org.zkoss.spring.context.annotation - package org.zkoss.spring.context.annotation
This package contains interfaces and classes for ZK Spring core supported annotations
org.zkoss.spring.impl - package org.zkoss.spring.impl
This package contains classes to support ZK fuctions across different ZK versions.
org.zkoss.spring.init - package org.zkoss.spring.init
This package contains classes that support ZK Spring core initialization during deployment.
org.zkoss.spring.security.config - package org.zkoss.spring.security.config
This package contains classe that hold global bean ids for ZK Spring core and security beans
org.zkoss.spring.util - package org.zkoss.spring.util
This package contains interface and utility classes to support integrating ZK and Spring core
org.zkoss.spring.web.context - package org.zkoss.spring.web.context
This package contains interfaces and classes for pre-processing spring beans.
org.zkoss.spring.web.context.request - package org.zkoss.spring.web.context.request
This package contains classes to supports ZK Spring core scopes

P

PageScope - Class in org.zkoss.spring.web.context.request
ZK Page scope; accessible only in ZK event handling request.
PageScope() - Constructor for class org.zkoss.spring.web.context.request.PageScope
 
parse(Element, ParserContext) - Method in class org.zkoss.spring.config.ZkComponentFactoryBeansDefinitionParser
 
parse(Element, ParserContext) - Method in class org.zkoss.spring.config.ZkConfigDefinitionParser
 
postProcessBeanDefinition(AbstractBeanDefinition, String) - Method in class org.zkoss.spring.context.annotation.ZkClassPathBeanDefinitionScanner
Deprecated. Apply further settings to the given bean definition, beyond the contents retrieved from scanning the component class.

R

registerDestructionCallback(String, Runnable) - Method in class org.zkoss.spring.web.context.request.ApplicationScope
 
registerDestructionCallback(String, Runnable) - Method in class org.zkoss.spring.web.context.request.ComponentScope
 
registerDestructionCallback(String, Runnable) - Method in class org.zkoss.spring.web.context.request.DesktopScope
 
registerDestructionCallback(String, Runnable) - Method in class org.zkoss.spring.web.context.request.ExecutionScope
 
registerDestructionCallback(String, Runnable) - Method in class org.zkoss.spring.web.context.request.IdSpaceScope
 
registerDestructionCallback(String, Runnable) - Method in class org.zkoss.spring.web.context.request.PageScope
 
remove(String) - Method in class org.zkoss.spring.web.context.request.ApplicationScope
 
remove(String) - Method in class org.zkoss.spring.web.context.request.ComponentScope
 
remove(String) - Method in class org.zkoss.spring.web.context.request.DesktopScope
 
remove(String) - Method in class org.zkoss.spring.web.context.request.ExecutionScope
 
remove(String) - Method in class org.zkoss.spring.web.context.request.IdSpaceScope
 
remove(String) - Method in class org.zkoss.spring.web.context.request.PageScope
 
removeAttribute(Execution, String) - Method in interface org.zkoss.spring.impl.ZKProxy.Proxy
Removes an execution attribute.
removeAttribute(Session, String) - Method in interface org.zkoss.spring.impl.ZKProxy.Proxy
Removes an session attribute.
resolveContextualObject(String) - Method in class org.zkoss.spring.web.context.request.ApplicationScope
 
resolveContextualObject(String) - Method in class org.zkoss.spring.web.context.request.ComponentScope
 
resolveContextualObject(String) - Method in class org.zkoss.spring.web.context.request.DesktopScope
 
resolveContextualObject(String) - Method in class org.zkoss.spring.web.context.request.ExecutionScope
 
resolveContextualObject(String) - Method in class org.zkoss.spring.web.context.request.IdSpaceScope
 
resolveContextualObject(String) - Method in class org.zkoss.spring.web.context.request.PageScope
 
RESOLVER_CLASS - Static variable in class org.zkoss.spring.DelegatingVariableResolver
 
resolveVariable(String) - Method in class org.zkoss.spring.DelegatingVariableResolver
Resolves variable name by name.
resolveVariable(String) - Method in class org.zkoss.spring.init.CoreVariableResolver
Get the spring bean by the specified name.
responseSent(DesktopCtrl, String, String, Object) - Method in interface org.zkoss.spring.impl.ZKProxy.Proxy
Called when ZK Update Engine has sent a response to the client.

S

setAfterCompose(EventListener) - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
 
setAsText(String) - Method in class org.zkoss.spring.bean.TypePropertyEditor
 
setAttribute(Execution, String, Object) - Method in interface org.zkoss.spring.impl.ZKProxy.Proxy
Sets an execution attribute.
setAttribute(Session, String, Object) - Method in interface org.zkoss.spring.impl.ZKProxy.Proxy
Sets an session attribute.
setBeanName(String) - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
 
setContextComponent(Component) - Static method in class org.zkoss.spring.util.ZkSpringIntegrationContext
Sets context component which is later required for ZK component injection
setControllerIds(Set) - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
 
setEventListeners(Map) - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
 
setPath(String) - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
Specify the ZK component path to look up.
setSelfContextComponent(Component) - Static method in class org.zkoss.spring.util.ZkSpringIntegrationContext
Sets self context component which is later required for ZK event processing using CDI event notificatio model
setType(Class) - Method in class org.zkoss.spring.bean.ZkComponentFactoryBean
Specify the component class that the found ZK component is supposed to be assignable to, if any.
SpringUtil - Class in org.zkoss.spring
SpringUtil, a Spring utility.
SpringUtil() - Constructor for class org.zkoss.spring.SpringUtil
 

T

TypePropertyEditor - Class in org.zkoss.spring.bean
PropertyEditor for 'type' property of ZkComponentFactoryBean.
TypePropertyEditor() - Constructor for class org.zkoss.spring.bean.TypePropertyEditor
 

U

UID - Static variable in class org.zkoss.spring.Version
Returns the version UID.

V

Version - Class in org.zkoss.spring
The version of ZK Spring Integration library.
Version() - Constructor for class org.zkoss.spring.Version
 

Z

ZK_ACCESS_DENIED_HANDLER - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_AJAX_HANDLER - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_AUTHENTICATION_ENTRY_POINT - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_BINDING_COMPOSER - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_CONVERSION_SERVICE - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_DESKTOP_REUSE_FILTER - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_DISABLE_SESSION_INVALIDATE_FILTER - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_ENABLE_SESSION_INVALIDATE_FILTER - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_ERROR_403_FILTER - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_EVENT_PROCESS_INTERCEPTOR - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_EXCEPTION_TRANSLATION_FILTER - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_EXPRESSION_PARSER - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_FLOW_HANDLER_ADAPTER - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_FLOW_RESOURCE_VIEW_RESOLVER - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_FLOW_URL_HANDLER - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_FLOW_VIEW_FACTORY_CREATOR - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_LOGIN_OK_FILTER - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_SCOPE_CONFIG - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZK_TYPE_PROPERTY_EDITOR - Static variable in class org.zkoss.spring.security.config.ZkBeanIds
 
ZkBeanIds - Class in org.zkoss.spring.security.config
Contains all the default Bean IDs created by the namespace support in ZK Spring Security 2.
ZkBeanIds() - Constructor for class org.zkoss.spring.security.config.ZkBeanIds
 
ZkClassPathBeanDefinitionScanner - Class in org.zkoss.spring.context.annotation
Deprecated. after release of zkspring 3.1, suggest to use SelectorComposer or GenericForwardComposer An enhanced ClassPathBeanDefinitionScanner which not only detects bean candidates on the classpath but also those ZK component fields (with @Resource annotation) defined in such candidate beans annotated as @Controller and with a @AppliedTo associated ZK component. annotation.
ZkClassPathBeanDefinitionScanner(BeanDefinitionRegistry, boolean) - Constructor for class org.zkoss.spring.context.annotation.ZkClassPathBeanDefinitionScanner
Deprecated.  
ZkClassPathBeanDefinitionScanner(BeanDefinitionRegistry) - Constructor for class org.zkoss.spring.context.annotation.ZkClassPathBeanDefinitionScanner
Deprecated.  
ZkComponentFactoryBean - Class in org.zkoss.spring.bean
BeanFactory that looks up a ZK component object.
ZkComponentFactoryBean() - Constructor for class org.zkoss.spring.bean.ZkComponentFactoryBean
 
ZkComponentFactoryBean(boolean) - Constructor for class org.zkoss.spring.bean.ZkComponentFactoryBean
 
ZkComponentFactoryBeanDefinitionParser - Class in org.zkoss.spring.config
Allows for convenient creation of a ZkComponentFactoryBean bean for bijection of ZK component and Spring bean.
ZkComponentFactoryBeanDefinitionParser() - Constructor for class org.zkoss.spring.config.ZkComponentFactoryBeanDefinitionParser
 
ZkComponentFactoryBeansDefinitionParser - Class in org.zkoss.spring.config
Allows for mass convenient creation of ZkComponentFactoryBean beans for bijection of ZK component and Spring bean.
ZkComponentFactoryBeansDefinitionParser() - Constructor for class org.zkoss.spring.config.ZkComponentFactoryBeansDefinitionParser
 
ZkComponentScanBeanDefinitionParser - Class in org.zkoss.spring.context.annotation
Deprecated. after release of zkspring 3.1, suggest to use SelectorComposer or GenericForwardComposer Enhanced version to handle annotation based ZK component Spring bean definition.
ZkComponentScanBeanDefinitionParser() - Constructor for class org.zkoss.spring.context.annotation.ZkComponentScanBeanDefinitionParser
Deprecated.  
ZkConfigDefinitionParser - Class in org.zkoss.spring.config
Register zk specific scopes, Spring bean binding composer, implicit objects definition, and 'type' to class PropertyEditor.
ZkConfigDefinitionParser() - Constructor for class org.zkoss.spring.config.ZkConfigDefinitionParser
 
ZkMethodEventListener - Class in org.zkoss.spring.bean
Deprecated. after release of zkspring 3.1, suggest to use SelectorComposer or GenericForwardComposer ZKMethodEventListener initialize as late as when first event handled.
ZkMethodEventListener(String, String) - Constructor for class org.zkoss.spring.bean.ZkMethodEventListener
Deprecated.  
ZKProxy - Class in org.zkoss.spring.impl
A proxy used to access ZK functions that depends on ZK versions.
ZKProxy() - Constructor for class org.zkoss.spring.impl.ZKProxy
 
ZKProxy.Proxy - Interface in org.zkoss.spring.impl
Interface to access version-dependent features of ZK.
ZkSpringAnnotationNamespaceHandler - Class in org.zkoss.spring.config
Registers the bean definition parsers for the ZK + Spring with Annotation namespace.
ZkSpringAnnotationNamespaceHandler() - Constructor for class org.zkoss.spring.config.ZkSpringAnnotationNamespaceHandler
 
ZkSpringBeanBindingComposer - Class in org.zkoss.spring.config
Composer to bind ZK bean as Spring bean.
ZkSpringBeanBindingComposer() - Constructor for class org.zkoss.spring.config.ZkSpringBeanBindingComposer
 
ZkSpringIntegrationContext - Class in org.zkoss.spring.util
This class provides ThreadLocal storage of context components.
ZkSpringIntegrationContext() - Constructor for class org.zkoss.spring.util.ZkSpringIntegrationContext
 
ZkSpringNamespaceHandler - Class in org.zkoss.spring.config
Registers the bean definition parsers for the ZK + Spring namespace.
ZkSpringNamespaceHandler() - Constructor for class org.zkoss.spring.config.ZkSpringNamespaceHandler
 
ZkSpringUiFactory - Class in org.zkoss.spring.bean
Handle new page creation issue when reuse desktop when changing page from http to https in Spring security.
ZkSpringUiFactory() - Constructor for class org.zkoss.spring.bean.ZkSpringUiFactory
 

_

_ctx - Variable in class org.zkoss.spring.init.CoreVariableResolver
 
_variableResolvers - Variable in class org.zkoss.spring.DelegatingVariableResolver
Holds list of variable resolvers for Spring core (3.0 and later), Spring security(3.0 and later)

A C D E G H I N O P R S T U V Z _

Copyright © 2012. All Rights Reserved.