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

fish.focus.uvms.plugins.ais.service.FishingVesselCache Maven / Gradle / Ivy

The newest version!
package fish.focus.uvms.plugins.ais.service;

import fish.focus.uvms.asset.client.model.AssetDTO;
import fish.focus.uvms.commons.cache.HavCache;

public class FishingVesselCache {

    private HavCache vesselCache;

    public AssetDTO get(String key, AssetDTO defaultValue) {
        return vesselCache.get(key, defaultValue);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy