Package org.springframework.extensions.webscripts

Examples of org.springframework.extensions.webscripts.WebScriptSession.removeValue()


  @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
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.