io.ebeaninternal.server.deploy.DCacheControlNone Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebeaninternal.server.deploy;
import io.ebeaninternal.api.SpiCacheControl;
/**
* Cache control used when no caching is on the bean type.
*/
class DCacheControlNone implements SpiCacheControl {
static final SpiCacheControl INSTANCE = new DCacheControlNone();
@Override
public boolean isCaching() {
return false;
}
@Override
public boolean isBeanCaching() {
return false;
}
@Override
public boolean isNaturalKeyCaching() {
return false;
}
@Override
public boolean isQueryCaching() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy