internal.sdmxdl.NoOpCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdmx-dl-api Show documentation
Show all versions of sdmx-dl-api Show documentation
Easily download official statistics - API
/*
* Copyright 2019 National Bank of Belgium
*
* Licensed under the EUPL, Version 1.1 or - as soon they will be approved
* by the European Commission - subsequent versions of the EUPL (the "Licence");
* You may not use this work except in compliance with the Licence.
* You may obtain a copy of the Licence at:
*
* http://ec.europa.eu/idabc/eupl
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the Licence is distributed on an "AS IS" basis,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the Licence for the specific language governing permissions and
* limitations under the Licence.
*/
package internal.sdmxdl;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.checkerframework.checker.nullness.qual.Nullable;
import sdmxdl.ext.SdmxCache;
import sdmxdl.repo.SdmxRepository;
import sdmxdl.web.SdmxWebMonitorReports;
import java.time.Clock;
import java.util.Objects;
/**
* @author Philippe Charles
*/
public enum NoOpCache implements SdmxCache {
INSTANCE;
@Override
public @NonNull Clock getClock() {
return Clock.systemDefaultZone();
}
@Override
public SdmxRepository getRepository(@NonNull String key) {
Objects.requireNonNull(key);
return null;
}
@Override
public void putRepository(@NonNull String key, @NonNull SdmxRepository value) {
Objects.requireNonNull(key);
Objects.requireNonNull(value);
}
@Override
public @Nullable SdmxWebMonitorReports getWebMonitorReports(@NonNull String key) {
Objects.requireNonNull(key);
return null;
}
@Override
public void putWebMonitorReports(@NonNull String key, @NonNull SdmxWebMonitorReports value) {
Objects.requireNonNull(key);
Objects.requireNonNull(value);
}
}