(Config config)
| 55 | } |
| 56 | |
| 57 | public void delete(Config config) throws Exception { |
| 58 | dao.delete(config); |
| 59 | cache.clear(); |
| 60 | firePropertyChange(CONFIGS.toString(), null, null); |
| 61 | } |
| 62 | |
| 63 | public Config query(String key) throws Exception { |
| 64 | List<Config> ret = cache.query("query", key); |
no test coverage detected