Package org.apache.wicket.util.tester.cookies

Examples of org.apache.wicket.util.tester.cookies.SetCookiePage


   * start a page which set a cookie in response
   * @param cookie cookie
   */
  private void setCookieInResponse(Cookie cookie)
  {
    tester.startPage(new SetCookiePage(cookie));
  }
View Full Code Here


   * start a page which set a cookie in response and then redirect to different page
   * @param cookie cookie
   */
  private void setCookieInResponseAndRedirect(Cookie cookie)
  {
    tester.startPage(new SetCookiePage(cookie,EndPage.class));
  }
View Full Code Here

TOP

Related Classes of org.apache.wicket.util.tester.cookies.SetCookiePage

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.