KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jdon > container > finder > ComponentKeys


1 /*
2  * Copyright 2003-2006 the original author or authors.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  *
15  */

16 package com.jdon.container.finder;
17
18 /**
19  * the important keys in container.xml
20  *
21  * @author <a HREF="mailto:banqiao@jdon.com">banq</a>
22  *
23  */

24 public interface ComponentKeys {
25     
26     
27     String JavaDoc WEBSERVICE = "webService";
28     
29     String JavaDoc WEBSERVICE_FACTORY = "webServiceFactory";
30     
31     String JavaDoc VISITOR_FACTORY = "visitorFactory";
32     
33     String JavaDoc SESSIONCONTEXT_SETUP = "sessionContextSetup";
34     
35     String JavaDoc INTERCEPTOR_CHAIN = "interceptorsChain";
36     
37     String JavaDoc INSTANCE_CACHE = "instanceCache";
38     
39     
40     
41     
42     
43     
44     
45     /**
46      * the SERVICE_METALOADER_NAME value must be the
47      * value of container.xml
48      *
49      */

50     String JavaDoc SERVICE_METALOADER_NAME = "targetMetaDefLoader";
51     
52     /**
53      * the AOP_CLIENT value must be the value of container.xml
54      *
55      */

56     String JavaDoc AOP_CLIENT = "aopClient";
57     
58     String JavaDoc MODEL_MANAGER = "modelManager";
59             
60     String JavaDoc PROXYINSTANCE_FACTORY = "proxyInstanceFactoryVisitable";
61
62     String JavaDoc TARGETSERVICE_FACTORY = "targetServiceFactoryVisitable";
63     
64     String JavaDoc SESSIONCONTEXT_FACTORY = "sessionContextFactoryVisitable";
65
66 }
67
Popular Tags