01: /*
02: * $Id$
03: * $Revision$
04: * $Date$
05: *
06: * ==============================================================================
07: * Licensed under the Apache License, Version 2.0 (the "License"); you may not
08: * use this file except in compliance with the License. You may obtain a copy of
09: * the License at
10: *
11: * http://www.apache.org/licenses/LICENSE-2.0
12: *
13: * Unless required by applicable law or agreed to in writing, software
14: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
16: * License for the specific language governing permissions and limitations under
17: * the License.
18: */
19: package wicket.markup.html.basic;
20:
21: import wicket.markup.html.WebPage;
22:
23: /**
24: * @author jcompagner
25: */
26: public class HomePageClassRedirect extends WebPage {
27: private static final long serialVersionUID = 1L;
28:
29: /**
30: * Construct.
31: */
32: public HomePageClassRedirect() {
33: setResponsePage(RedirectPage.class);
34: }
35: }
|