
com.undefinedlabs.scope.settings.remote.ScopeRemoteSettingsResolver Maven / Gradle / Ivy
package com.undefinedlabs.scope.settings.remote;
import com.undefinedlabs.scope.settings.ScopeSettings;
public enum ScopeRemoteSettingsResolver {
INSTANCE;
private static ScopeRemoteSettings SCOPE_REMOTE_SETTINGS;
public ScopeRemoteSettings get(final ScopeSettings settings) {
if (SCOPE_REMOTE_SETTINGS == null) {
SCOPE_REMOTE_SETTINGS = ScopeRemoteSettingsInvoker.INSTANCE.invoke(settings);
}
return SCOPE_REMOTE_SETTINGS;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy