* component is currently not cacheable.
*/
public CacheValidity generateValidity() {
if (this.inputSource.getLastModified() != 0) {
return new CompositeCacheValidity(
new TimeStampCacheValidity(page),
new TimeStampCacheValidity(this.inputSource.getLastModified())
);
} else {
return null;
}
}