KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > config > plugins > property > PropertyConfigurationConstants


1 /*
2 * JBoss, Home of Professional Open Source
3 * Copyright 2005, JBoss Inc., and individual contributors as indicated
4 * by the @authors tag. See the copyright.txt in the distribution for a
5 * full listing of individual contributors.
6 *
7 * This is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU Lesser General Public License as
9 * published by the Free Software Foundation; either version 2.1 of
10 * the License, or (at your option) any later version.
11 *
12 * This software is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this software; if not, write to the Free
19 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21 */

22 package org.jboss.config.plugins.property;
23
24 import org.jboss.beans.info.spi.BeanInfoFactory;
25 import org.jboss.classadapter.spi.ClassAdapterFactory;
26 import org.jboss.classadapter.spi.DependencyBuilder;
27 import org.jboss.joinpoint.spi.JoinpointFactoryBuilder;
28 import org.jboss.reflect.spi.TypeInfoFactory;
29 import org.jboss.repository.spi.MetaDataContextFactory;
30
31 /**
32  * Constants.
33  *
34  * @author <a HREF="adrian@jboss.com">Adrian Brock</a>
35  * @version $Revision: 44529 $
36  */

37 public interface PropertyConfigurationConstants
38 {
39    /** The BeanInfoFactory property name */
40    static final String JavaDoc BEAN_INFO_FACTORY_NAME = BeanInfoFactory.class.getName();
41    
42    /** The BeanInfoFactory default value */
43    static final String JavaDoc BEAN_INFO_FACTORY_DEFAULT="org.jboss.beans.info.plugins.AbstractBeanInfoFactory";
44
45    /** The ClassAdapterFactory property name */
46    static final String JavaDoc CLASS_ADAPTER_FACTORY_NAME = ClassAdapterFactory.class.getName();
47    
48    /** The ClassAdapterFactory default value */
49    static final String JavaDoc CLASS_ADAPTER_FACTORY_DEFAULT="org.jboss.classadapter.plugins.BasicClassAdapterFactory";
50
51    /** The DependencyBuilder property name */
52    static final String JavaDoc DEPENDENCY_BUILDER_NAME = DependencyBuilder.class.getName();
53    
54    /** The DependencyBuilder default value */
55    static final String JavaDoc DEPENDENCY_BUILDER_DEFAULT="org.jboss.aop.microcontainer.integration.AOPDependencyBuilder:org.jboss.classadapter.plugins.dependency.AbstractDependencyBuilder";
56
57    /** The JoinpointFactoryBuilder property name */
58    static final String JavaDoc JOIN_POINT_FACTORY_BUILDER_NAME = JoinpointFactoryBuilder.class.getName();
59    
60    /** The JoinpointFactoryBuiylder default value */
61    static final String JavaDoc JOIN_POINT_FACTORY_BUILDER_DEFAULT="org.jboss.aop.microcontainer.integration.AOPJoinpointFactoryBuilder:org.jboss.joinpoint.plugins.BasicJoinpointFactoryBuilder";
62
63    /** The MetaDataContextFactory property name */
64    static final String JavaDoc META_DATA_CONTEXT_FACTORY_BUILDER_NAME = MetaDataContextFactory.class.getName();
65    
66    /** The MetaDataContextFactory default value */
67    static final String JavaDoc META_DATA_CONTEXT_FACTORY_BUILDER_DEFAULT="org.jboss.aop.microcontainer.integration.AOPMetaDataContextFactory:org.jboss.repository.plugins.basic.BasicMetaDataContextFactory";
68
69    /** The TypeInfoFactory property name */
70    static final String JavaDoc TYPE_INFO_FACTORY_NAME = TypeInfoFactory.class.getName();
71    
72    /** The TypeInfoFactory default value */
73    static final String JavaDoc TYPE_INFO_FACTORY_DEFAULT="org.jboss.reflect.plugins.introspection.IntrospectionTypeInfoFactory";
74 }
75
Popular Tags