(no commit message)
[utils] / wicket / components / src / main / java / org / wamblee / wicket / behavior / WebApplicationBasePage.java
1 /*
2  * Copyright 2005-2010 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.wicket.behavior;
17
18 import org.apache.wicket.IPageMap;
19 import org.apache.wicket.PageParameters;
20 import org.apache.wicket.markup.html.WebPage;
21 import org.apache.wicket.model.IModel;
22
23 /**
24  * Base page for wicket applications that allows customization of various bahaviors of the 
25  * page. This page has no associated markup. 
26  * 
27  * @author Erik Brakkee
28  *
29  */
30 public class WebApplicationBasePage extends WebPage {
31     
32     protected WebApplicationBasePage() { 
33         super();
34     }
35     
36     protected WebApplicationBasePage(final IModel<?> model)
37     {
38         super(model);
39     }
40
41     protected WebApplicationBasePage(final IPageMap pageMap)
42     {
43         super(pageMap);
44     }
45     
46     protected WebApplicationBasePage(final IPageMap pageMap, final IModel<?> model)
47     {
48         super(pageMap, model);
49     }
50
51     protected WebApplicationBasePage(final PageParameters parameters)
52     {
53         super(parameters);
54     }
55
56     protected WebApplicationBasePage(final IPageMap pageMap, final PageParameters parameters)
57     {
58         super(pageMap, parameters);
59     }
60 }