1 /*
2 * Copyright 2010 Fraunhofer Gesellschaft, Munich, Germany,
3 * for its Fraunhofer Institute for Computer Architecture and Software
4 * Technology (FIRST), Berlin, Germany. All rights reserved.
5 * http://www.first.fraunhofer.de/
6 */
7
8 /**
9 *
10 * @author Andreas Hoheisel
11 * (<a href="http://www.andreas-hoheisel.de">www.andreas-hoheisel.de</a>)
12 * @version $Id: ActivityLogger.java 1419 2010-11-01 14:12:17Z hoheisel $
13 */
14 package net.kwfgrid.gwes.monitor;
15
16 public class ActivityLogger {
17 private static ActivityLogger ourInstance = new ActivityLogger();
18
19 public static ActivityLogger getInstance() {
20 return ourInstance;
21 }
22
23 private ActivityLogger() {
24 }
25
26 }