All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gravitee.gateway.services.apikeyscache.ApiKeyRepositoryWrapper Maven / Gradle / Ivy

There is a newer version: 3.3.4
Show newest version
/**
 * Copyright (C) 2015 The Gravitee team (http://gravitee.io)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.gravitee.gateway.services.apikeyscache;

import io.gravitee.repository.exceptions.TechnicalException;
import io.gravitee.repository.management.api.ApiKeyRepository;
import io.gravitee.repository.management.api.search.ApiKeyCriteria;
import io.gravitee.repository.management.model.ApiKey;
import net.sf.ehcache.Ehcache;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.List;
import java.util.Optional;
import java.util.Set;

/**
 * @author David BRASSELY (david.brassely at graviteesource.com)
 * @author GraviteeSource Team
 */
public class ApiKeyRepositoryWrapper implements ApiKeyRepository {

    private static final Logger logger = LoggerFactory.getLogger(ApiKeyRepositoryWrapper.class);

    private final ApiKeyRepository wrapped;
    private final Ehcache cache;

    ApiKeyRepositoryWrapper(ApiKeyRepository wrapped, Ehcache cache) {
        this.wrapped = wrapped;
        this.cache = cache;
    }

    @Override
    public Optional findById(String apiKey) throws TechnicalException {
        return Optional
                .ofNullable(cache.get(apiKey))
                .map(element -> (ApiKey) element.getObjectValue());
    }

    @Override
    public ApiKey create(ApiKey apiKey) throws TechnicalException {
        throw new IllegalStateException();
    }

    @Override
    public Set findBySubscription(String subscription) throws TechnicalException {
        throw new IllegalStateException();
    }

    @Override
    public Set findByPlan(String plan) throws TechnicalException {
        throw new IllegalStateException();
    }

    @Override
    public List findByCriteria(ApiKeyCriteria filter) throws TechnicalException {
        return wrapped.findByCriteria(filter);
    }

    @Override
    public ApiKey update(ApiKey apiKey) throws TechnicalException {
        throw new IllegalStateException();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy