View Javadoc

1   package com.atlassian.user.impl.delegation;
2   
3   import com.atlassian.user.GroupManager;
4   
5   import java.util.List;
6   
7   /**
8    * Group manager with a delegation order of a simple list, where the group managers are
9    * tried in the iteration order of the list.
10   * 
11   * @deprecated since 2.27 use {@link DelegatingGroupManager}
12   * @see DelegatingGroupManager
13   */
14  @SuppressWarnings({"unchecked"})
15  public class DelegatingListGroupManager extends DelegatingGroupManager
16  {
17      public DelegatingListGroupManager(List groupManagers)
18      {
19          super(groupManagers);
20      }
21  }