KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > webman > util > registry > RegistryConstants


1 package de.webman.util.registry;
2
3
4 /**
5  * abstract class used for collection names (manager ids) of managers.
6  *
7  * @author <a HREF="mailto:gregor@webman.de">Gregor Klinke</a>
8  * @version $Revision: 1.2 $
9  **/

10 public abstract class RegistryConstants
11 {
12     /* $Id: RegistryConstants.java,v 1.2 2002/04/12 12:30:24 gregor Exp $ */
13     
14     /**
15      * id of the log4j manager
16      **/

17     public static final String JavaDoc LOG4J_MANAGER = "log4j-manager";
18     
19     /**
20      * id of the Synchronization manager
21      **/

22     public static final String JavaDoc SYNC_MANAGER = "sync-manager";
23     
24     /**
25      * id of the config manager
26      **/

27     public static final String JavaDoc CONFIG_MANAGER = "config-manager";
28
29     /**
30      * id of the scheduler manager
31      **/

32     public static final String JavaDoc SCHEDULER_MANAGER = "scheduler-manager";
33
34 }
35
Popular Tags