Authenticated Pages

Authenticated pages display options and information about applications.

A consumer registration page is an authenticated page, and is a separate application type. However, to access consumer registration pages, you need have only a standard access role that is granted to all users upon entry to the login page. Consumer registration pages have the same structure as other application pages, without a specific authenticated user Web session.

The hierarchy of an authenticated page replicates how all Wicket pages are formed.

Structure of Authenticated Page
Authenticated Page Structure
The base page for all Wicket Web UI applications is defined by the MobiliserBasePage class. The BaseApplicationPage class extends MobiliserBasePage and provides:
The classes that define authenticated application pages extend BaseApplicationPage, and set the basic structure for the application-specific content:
Application pages allow you to apply specific layouts to their innermost pages:
Note: Typically, Web applications have maintained the concept of a left content column, which is enforced by application-specific pages. If you write a new application that does not require this layout, the BaseApplicationPage class need not enforce this design. The hierarchy of Wicket applications allows application pages to define their own content layout within the application content container.
Structure of Page with Application Content Container
Application Page Structure