Implemented a listener/observable that fires after any database access. Possibly...
[cdmlib.git] / cdmlib-persistence / src / main / java / eu / etaxonomy / cdm / persistence / hibernate / ICdmPostCrudObserver.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.cdm.persistence.hibernate;
12
13 import java.util.Observer;
14
15
16 /**
17 * Objects implementing this will be updated when the CdmPostCrudListener fires
18 *
19 *
20 * @author n.hoffmann
21 * @created 17.03.2009
22 * @version 1.0
23 */
24 public interface ICdmPostCrudObserver {
25
26 /**
27 * gets called when the observable objects notifies its observers
28 */
29 public void update(CdmCrudEvent event);
30 }