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

nl.vpro.javax.cache.managment.CacheWrapper Maven / Gradle / Ivy

The newest version!
package nl.vpro.javax.cache.managment;

import javax.cache.Cache;

public class CacheWrapper implements CacheWrapperMXBean {


    final Cache cache;

    public CacheWrapper(Cache cache) {
        this.cache = cache;
    }

    @Override
    public String removeAll() {
        cache.removeAll();
        return "Cleared " + cache;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy