SessionHandler.java 555 Bytes
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package fi.insomnia.bortal.handler;

import javax.enterprise.context.SessionScoped;
import javax.faces.bean.ManagedBean;

/**
 *
 * @author tuukka
 */
@ManagedBean(name="SessionHandler")
@SessionScoped
public class SessionHandler {

    /** Creates a new instance of SessionHandler */
    public SessionHandler() {
    }

    private boolean hasPermission(String target) {
        throw new UnsupportedOperationException("Not yet implemented");
    }

}