Package org.apache.wicket.request.mapper.parameter

Examples of org.apache.wicket.request.mapper.parameter.UrlPathPageParametersEncoder


    mountPage("/the/homepage/path", Home.class);
    mountPage("/a/nice/path/to/the/first/page", Page1.class);
    mountPage("/path/to/page2", Page2.class);
    mountPage("/path/to/page2pp/#{param1}/#{param2}", Page2PP.class);
    mount(new MountedMapper("/path/to/page2up", Page2UP.class,
      new UrlPathPageParametersEncoder()));

    // mount a whole package at once (all bookmarkable pages,
    // the relative class name will be part of the url

    // for package mounting it makes sense to use one of
View Full Code Here


  @Override
  public void init()
  {
    super.init();
   
    mount(new MountedMapper("/mountedPath", MountedPage.class, new
                UrlPathPageParametersEncoder()));
  }
View Full Code Here

TOP

Related Classes of org.apache.wicket.request.mapper.parameter.UrlPathPageParametersEncoder

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.