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

package fi.insomnia.bortal.beans;

import fi.insomnia.bortal.model.Role;
import java.util.List;

import javax.ejb.Local;

/**
 *
 * @author tuukka
 */
@Local
public interface RoleBeanLocal {

    public List<Role> listRoles();

    public Role mergeChanges(Role role);

    public Role create(Role role);

    public List<Role> getPossibleParents(Role role);
    
}