1 package com.atlassian.seraph.auth;
2
3 /**
4 * This class used to map directly between group names and role names in an OSUser-specific way.
5 * Some applications were extending this and overriding the {@link RoleMapper#hasRole} method, so this class is left
6 * temporarily for backward compatibility.
7 *
8 * @deprecated You should extend {@link SimpleAbstractRoleMapper}, or implement RoleMapper directly. Deprecated since v2.2
9 */
10 public abstract class GroupRoleMapper extends SimpleAbstractRoleMapper implements RoleMapper
11 {
12 // TODO: Delete Me
13 }