| 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 1342 2010-01-22 16:43:16Z andreas.hoheisel@first.fraunhofer.de $ |
| 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 | } |