Project

General

Profile

Download (837 Bytes) Statistics
| Branch: | Revision:
1
/**
2
* Copyright (C) 2009 EDIT
3
* European Distributed Institute of Taxonomy 
4
* http://www.e-taxonomy.eu
5
* 
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.cdm.app.common;
10

    
11
import org.apache.log4j.Logger;
12
import org.springframework.context.ApplicationEvent;
13
import org.springframework.context.ApplicationListener;
14

    
15
/**
16
 * @author a.mueller
17
 * @since 28.09.2011
18
 *
19
 */
20
public class AppImportApplicationListener implements ApplicationListener<ApplicationEvent> {
21
	private static final Logger logger = Logger.getLogger(AppImportApplicationListener.class);
22

    
23
	@Override
24
	public void onApplicationEvent(ApplicationEvent event) {
25
		if (logger.isDebugEnabled())logger.debug(event);
26
	}
27

    
28
}
(1-1/5)