1 package com.atlassian.plugin.scope;
2
3 /**
4 * Allows scope checks to be introduced ahead of real Vertigo implementation
5 * so scope checks could be safely baked in platform modules and products
6 *
7 * @since 4.1
8 * @deprecated since 4.1, please use {@link EverythingIsActiveScopeManager}
9 *
10 */
11 public class AlwaysEnabledScopeManager implements ScopeManager {
12
13 @Override
14 public boolean isScopeActive(String scopeKey) {
15 return true;
16 }
17 }