Package org.springframework.extensions.webscripts

Examples of org.springframework.extensions.webscripts.WebScriptSession


    setFlashVariable(Variables.SUCCESS_MESSAGE, successMessage);
  }

  @SuppressWarnings("unchecked")
  public <T> T getFlashVariable(final String name) {
    final WebScriptSession session = request.getRuntime().getSession();
    final T value = (T) session.getValue(name);
    session.removeValue(name);
    return value;
  }
View Full Code Here

TOP

Related Classes of org.springframework.extensions.webscripts.WebScriptSession

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.