Uses of Interface
org.thymeleaf.cache.ICacheEntryValidity
-
Packages that use ICacheEntryValidity Package Description org.thymeleaf.cache org.thymeleaf.engine org.thymeleaf.templateresolver -
-
Uses of ICacheEntryValidity in org.thymeleaf.cache
Classes in org.thymeleaf.cache that implement ICacheEntryValidity Modifier and Type Class Description class
AlwaysValidCacheEntryValidity
Simple implementation ofICacheEntryValidity
that considers the template resolution to be always cacheable and always valid.class
NonCacheableCacheEntryValidity
Simple implementation ofICacheEntryValidity
that considers the template resolution to be non-cacheable.class
TTLCacheEntryValidity
Simple implementation ofICacheEntryValidity
that uses a TTL (time-to-live) expressed in milliseconds to compute the validity of template cache entries. -
Uses of ICacheEntryValidity in org.thymeleaf.engine
Methods in org.thymeleaf.engine that return ICacheEntryValidity Modifier and Type Method Description ICacheEntryValidity
TemplateData. getValidity()
Returns the template resolution validity. -
Uses of ICacheEntryValidity in org.thymeleaf.templateresolver
Methods in org.thymeleaf.templateresolver that return ICacheEntryValidity Modifier and Type Method Description protected ICacheEntryValidity
AbstractConfigurableTemplateResolver. computeValidity(IEngineConfiguration configuration, String ownerTemplate, String template, Map<String,Object> templateResolutionAttributes)
protected abstract ICacheEntryValidity
AbstractTemplateResolver. computeValidity(IEngineConfiguration configuration, String ownerTemplate, String template, Map<String,Object> templateResolutionAttributes)
Computes the validity to be applied to the template resolution.protected ICacheEntryValidity
DefaultTemplateResolver. computeValidity(IEngineConfiguration configuration, String ownerTemplate, String template, Map<String,Object> templateResolutionAttributes)
protected ICacheEntryValidity
StringTemplateResolver. computeValidity(IEngineConfiguration configuration, String ownerTemplate, String template, Map<String,Object> templateResolutionAttributes)
protected ICacheEntryValidity
UrlTemplateResolver. computeValidity(IEngineConfiguration configuration, String ownerTemplate, String template, Map<String,Object> templateResolutionAttributes)
ICacheEntryValidity
TemplateResolution. getValidity()
Returns the template resolution validity.Constructors in org.thymeleaf.templateresolver with parameters of type ICacheEntryValidity Constructor Description TemplateResolution(ITemplateResource templateResource, boolean templateResourceExistenceVerified, TemplateMode templateMode, boolean useDecoupledLogic, ICacheEntryValidity validity)
TemplateResolution(ITemplateResource templateResource, TemplateMode templateMode, ICacheEntryValidity validity)
-