KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > petals > util > InterfaceNamesHelper


1 /**
2  * PETALS - PETALS Services Platform.
3  * Copyright (c) 2005 Fossil E-Commerce, http://www.fossilec.com/
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * -------------------------------------------------------------------------
19  * $Id: InterfaceNamesHelper.java 605 2006-06-14 11:28:46Z ddesjardins $
20  * -------------------------------------------------------------------------
21  */

22 package org.objectweb.petals.util;
23
24 /**
25  * @version $Rev: 605 $ $Date: 2006-06-14 13:28:46 +0200 (mer., 14 juin 2006) $
26  * @since Petals 1.0
27  * @author <a HREF="mailto:rmarins@fossilec.com">Rafael Marins</a>
28  */

29 public final class InterfaceNamesHelper {
30
31     /**
32      * Platform Component :: Repository Service
33      */

34     public static final String JavaDoc PLATFORM_REPOSITORY_NAME = "repository";
35
36     /**
37      * Global Component :: monolog Logger
38      */

39     public static final String JavaDoc LOGGER_NAME = "logger";
40
41     /**
42      * Global Component :: monolog factory
43      */

44     public static final String JavaDoc MONOLOG_FACTORY_NAME = "monolog-factory";
45
46     /**
47      * Platform Component :: Loader Service
48      */

49     public static final String JavaDoc PLATFORM_CLASSLOADING_NAME = "classloader";
50     
51     /**
52      * Kernel Component :: Distributed JMX Server Manager
53      */

54     public static final String JavaDoc KERNEL_DISTJMXSERVER_NAME = "dist-jmx-server";
55
56     /**
57      * JBI Container :: Component Framework
58      */

59     public static final String JavaDoc JBI_FRAMEWORK_NAME = "framework";
60
61     /**
62      * JBI Container :: JMX Agent Admin
63      */

64     public static final String JavaDoc JBI_LIFECYCLEMANAGER_NAME = "lifecyclemanager";
65
66     /**
67      * JMX Agent :: MBean Server Admin
68      */

69     public static final String JavaDoc JMXAGENT_MBEANSERVER_NAME = "mbean-server";
70
71     /**
72      * JBI Container :: Messaging Framework
73      */

74     public static final String JavaDoc JBI_MESSAGING_NAME = "messaging";
75
76     /**
77      * JBI Container :: Registry Framework
78      */

79     public static final String JavaDoc JBI_REGISTRY_NAME = "registry";
80
81     /**
82      * JBI Container :: Endpoint Service Framework
83      */

84     public static final String JavaDoc JBI_ENDPOINTSERVICE_NAME = "endpoint-service";
85     
86     /**
87      * JBI Container :: Router
88      */

89     public static final String JavaDoc JBI_ROUTER_NAME = "router";
90
91     /**
92      * JBI Container :: Address Resolver
93      */

94     public static final String JavaDoc JBI_ADDRESSRESOLVER_NAME = "addressResolver";
95
96     /**
97      * JBI Container :: Connection Manager
98      */

99     public static final String JavaDoc JBI_CONNECTION_NAME = "connection";
100
101     /**
102      * JBI Container :: Transporter
103      */

104     public static final String JavaDoc JBI_TRANSPORTER_NAME = "transporter";
105
106     /**
107      * JBI Container :: Installation
108      */

109     public static final String JavaDoc JBI_INSTALLATION_NAME = "installation";
110
111     /**
112      * JBI Container :: Deployment
113      */

114     public static final String JavaDoc JBI_DEPLOYMENT_NAME = "deployment";
115
116     /**
117      * JBI Container :: Recovery
118      */

119     public static final String JavaDoc JBI_SYSTEMSTATE_NAME = "systemstate";
120
121     /**
122      * JBI Container :: Admin
123      */

124     public static final String JavaDoc JBI_ADMIN_NAME = "admin";
125
126     /**
127      * No constructor for this class.
128      */

129     private InterfaceNamesHelper() {
130         super();
131     }
132
133 }
134
Popular Tags