View Javadoc

1   package org.springframework.samples.petclinic.jdbc;
2   
3   /**
4    * Interface that defines a cache refresh operation.
5    * To be exposed for management via JMX.
6    * 
7    * @author Rob Harrop
8    * @author Juergen Hoeller
9    * @see SimpleJdbcClinic
10   */
11  public interface SimpleJdbcClinicMBean {
12  
13  	/**
14  	 * Refresh the cache of Vets that the Clinic is holding.
15  	 * @see org.springframework.samples.petclinic.Clinic#getVets()
16  	 * @see SimpleJdbcClinic#refreshVetsCache()
17  	 */
18  	void refreshVetsCache();
19  
20  }