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 */
10 public class TenantBasedScopeManager implements ScopeManager {
11 @Override
12 public boolean isScopeActive(String scopeKey) {
13 throw new UnsupportedOperationException("Not implemented");
14 }
15 }