/*
 * Copyright 2002 Tryllian BV and Otto Moerbeek
 * http://www.tryllian.com
 * otto@tryllian.com
 */

package net.drijf.javaone;

/**
 * This interface defines how to map a name to a role.
 *
 * @author Otto Moerbeek
 */
public interface RoleMapping {
    /** Return the role associated with a name. */
    Role getRole(String alias);
}
