Examples of DestructionCallbackBindingListener


Examples of org.springframework.web.context.request.DestructionCallbackBindingListener

   * @param callback the callback to be executed for destruction
   */
  protected void registerSessionDestructionCallback(String name, Runnable callback) {
    PortletSession session = getSession(true);
    session.setAttribute(DESTRUCTION_CALLBACK_NAME_PREFIX + name,
        new DestructionCallbackBindingListener(callback));
  }
View Full Code Here

Examples of org.springframework.web.context.request.DestructionCallbackBindingListener

   * @param callback the callback to be executed for destruction
   */
  protected void registerSessionDestructionCallback(String name, Runnable callback) {
    PortletSession session = getSession(true);
    session.setAttribute(DESTRUCTION_CALLBACK_NAME_PREFIX + name,
        new DestructionCallbackBindingListener(callback));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.