| uk.org.ponder.mapping.BeanInvalidationModel
All known Subclasses: uk.org.ponder.mapping.ListBeanInvalidationModel,
BeanInvalidationModel | public interface BeanInvalidationModel (Code) | | An interface to a generalised "Bean Invalidation Model" which will track
modifications applied via EL expressions, and match them against a
supplied specification.
author: Antranig Basman (antranig@caret.cam.ac.uk) |
Method Summary | |
public void | clear() | public String | invalidPathMatch(String spec) Returns a concrete path which was written to invalidate the specification.
Will be as long as the specification with wildcards replaced by their matches.
Parameters: spec - An EL path specification, which may contain wildcards forpath components, e.g. | public void | invalidate(String path) |
clear | public void clear()(Code) | | |
invalidPathMatch | public String invalidPathMatch(String spec)(Code) | | Returns a concrete path which was written to invalidate the specification.
Will be as long as the specification with wildcards replaced by their matches.
Parameters: spec - An EL path specification, which may contain wildcards forpath components, e.g. entity.*.property . The actual match for an invalidated path, null if no match. |
|
|