com.github.bootfastconfig.cache.CacheSimpleConfigBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boot-fast-config-cache Show documentation
Show all versions of boot-fast-config-cache Show documentation
Parent pom providing dependency and plugin management for applications
built with Maven
The newest version!
package com.github.bootfastconfig.cache;
public class CacheSimpleConfigBuilder implements CacheBuilder {
@Override
public String getName() {
return null;
}
@Override
public T get() {
return null;
}
}