* component is currently not cacheable.
*/
public SourceValidity getValidity() {
if (this.inputSource.getLastModified() != 0) {
AggregatedValidity validity = new AggregatedValidity();
validity.add(new TimeStampValidity(page));
validity.add(this.inputSource.getValidity());
return validity;
} else {
return null;
}