no.tornado.inject.CacheKeyGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of inject Show documentation
Show all versions of inject Show documentation
Dependency Injection and Module framework
package no.tornado.inject;
import java.lang.reflect.Method;
public interface CacheKeyGenerator {
public String generate(String bean, Method method, Object[] args);
}