1 package com.atlassian.plugin.scope;
2
3 /**
4 * Yet to be implemented.
5 * <p>
6 * This service will be backed up by TCS and will do scope checks for implicitly derived user/tenant
7 *
8 * @since 4.1
9 * @deprecated in 5.0 for removal in 6.0 when {@link ScopeManager} is removed completely
10 */
11 @Deprecated
12 public class TenantBasedScopeManager implements ScopeManager {
13 @Override
14 public boolean isScopeActive(String scopeKey) {
15 throw new UnsupportedOperationException("Not implemented");
16 }
17 }