| org.zkoss.zk.ui.sys.WebAppCtrl
All known Subclasses: org.zkoss.zk.ui.impl.AbstractWebApp,
WebAppCtrl | public interface WebAppCtrl (Code) | | Additional interface of
org.zkoss.zk.ui.WebApp for implementation.
Note: applications shall never access this interface.
author: tomyeh |
destroy | public void destroy()(Code) | | Destroys this Web applicaiton.
Note; once destroyed, this instance cannot be used anymore.
|
getFailoverManager | public FailoverManager getFailoverManager()(Code) | | Returns the failover manager, or null if not available.
|
getIdGenerator | public IdGenerator getIdGenerator()(Code) | | Returns the ID generator, or null if not available.
since: 2.4.1 |
getUiEngine | public UiEngine getUiEngine()(Code) | | Returns the UI engine for this Web application (never null).
|
getUiFactory | public UiFactory getUiFactory()(Code) | | Returns the UI factory for this Web application (never null).
|
init | public void init(Object context, Configuration config)(Code) | | Initializes this Web application.
Parameters: context - the servlet context, if servlets are used.Currently, ZK supports only servlets. In the future there might bemore to support. Parameters: config - the configuration (never null) |
sessionDidActivate | public void sessionDidActivate(Session sess)(Code) | | Notification that the session has just been activated
(aka., deserialized).
|
sessionWillPassivate | public void sessionWillPassivate(Session sess)(Code) | | Notification that the session is about to be passivated
(aka., serialized).
|
|
|