ee.pri.rl.blog.web.page.auth.BlogAuthorizationStrategy.java Source code

Java tutorial

Introduction

Here is the source code for ee.pri.rl.blog.web.page.auth.BlogAuthorizationStrategy.java

Source

/**
 * Copyright (C) 2009 Raivo Laanemets <rl@starline.ee>
 *
 * This file is part of rl-blog.
 *
 * Foobar is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Foobar is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with rl-blog.  If not, see <http://www.gnu.org/licenses/>.
 */
package ee.pri.rl.blog.web.page.auth;

import org.apache.wicket.authorization.strategies.page.SimplePageAuthorizationStrategy;

import ee.pri.rl.blog.web.BlogApplication;
import ee.pri.rl.blog.web.BlogSession;

/**
 * Authorization strategy for the blog application.
 * 
 * @see SimplePageAuthorizationStrategy
 * @see BlogApplication
 * 
 * @author Raivo Laanemets
 */
public class BlogAuthorizationStrategy extends SimplePageAuthorizationStrategy {

    public BlogAuthorizationStrategy() {
        super(AuthPageMarker.class, LoginPage.class);
    }

    @Override
    protected boolean isAuthorized() {
        return BlogSession.get().isAuthenticated();
    }

}