* @see org.nextime.ion.framework.event.WcmListener#objectModified(WcmEvent)
*/
public void objectModified(WcmEvent event) {
Object o = event.getSource();
if( o instanceof Publication ) {
Publication p = (Publication)o;
Vector v = p.listSections();
for( int i=0; i<v.size(); i++ ) {
Section s = (Section)v.get(i);
new File(cachePath,"section$"+s.getId()+".html").delete();
}
new File(cachePath,"publication$"+p.getId()+".html").delete();
}
if( o instanceof Section ) {
cleanCache();
}
}