SimpleJdbcClinicMBean.java
上传用户:dezhong
上传日期:2022-08-10
资源大小:167k
文件大小:0k
源码类别:

Java编程

开发平台:

Java

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