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