View Javadoc
1   package com.atlassian.plugin.scope;
2   
3   /**
4    * Allows scope checks to be introduced ahead of TCS based implementation
5    *
6    * @since 4.1
7    * @deprecated in 5.0 for removal in 6.0 when {@link ScopeManager} is removed completely.
8    */
9   @Deprecated
10  public class EverythingIsActiveScopeManager implements ScopeManager {
11  
12      @Override
13      public boolean isScopeActive(String scopeKey) {
14          return true;
15      }
16  }