i'm having trouble with the getValidity() method. i'd like to invalidate the cached response under certain condition :
public SourceValidity getValidity() {
if (externalCondition) {
return null;
} else {
return new NOPValidity();
}
}however, once NOPValidity is returned, the validity of the cached response
is never checked again (unless the new and the cached keys differ). So, how
can i have the validiy checked everytime the component is used?
thnx in advance
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
