001 /*****************************************************************************
002 * Copyright (C) PicoContainer Organization. All rights reserved. *
003 * ------------------------------------------------------------------------- *
004 * The software in this package is published under the terms of the BSD *
005 * style license a copy of which has been included with this distribution in *
006 * the LICENSE.txt file. *
007 * *
008 * Original code by *
009 *****************************************************************************/
010 package org.picocontainer.script.xml;
011
012 public interface XMLConstants {
013 String CONTAINER = "container";
014 String CLASSPATH = "classpath";
015 String CLASSLOADER = "classloader";
016 String CLASS_NAME_KEY = "class-name-key";
017 String COMPONENT = "component";
018 String COMPONENT_IMPLEMENTATION = "component-implementation";
019 String COMPONENT_INSTANCE = "component-instance";
020 String COMPONENT_FROM_JNDI = "component-from-jndi";
021 String COMPONENT_ADAPTER = "component-adapter";
022 String COMPONENT_INSTANCE_FACTORY = "component-instance-factory";
023 String CLASS = "class";
024 String JNDI_NAME = "jndi-name";
025 String FACTORY = "factory";
026 String FILE = "file";
027 String KEY = "key";
028 String EMPTY_COLLECTION = "empty-collection";
029 String COMPONENT_VALUE_TYPE = "component-value-type";
030 String COMPONENT_KEY_TYPE = "component-key-type";
031 String PARAMETER = "parameter";
032 String PARAMETER_ZERO = "parameter-zero";
033 String URL = "url";
034
035 String CLASSNAME = "classname";
036 String CONTEXT = "context";
037 String VALUE = "value";
038 String CACHING_ATTRIBUTE = "caching";
039 String INHERIT_BEHAVIORS_ATTRIBUTE = "inheritBehaviors";
040 String COMPONENT_MONITOR = "component-monitor";
041 String COMPONENT_ADAPTER_FACTORY = "component-adapter-factory";
042
043 }