package org.gcube.context; import org.gcube.common.scope.api.ScopeProvider; /** * @author Luca Frosini (ISTI - CNR) */ public class ContextUtility { public static String getCurrentContextFullName() { String context = ScopeProvider.instance.get(); return context; } }