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

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

There is a newer version: 5.3.1
Show 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 - 2024 Weber Informatics LLC | Privacy Policy