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_ADAPTER = "component-adapter"; 021 String COMPONENT_INSTANCE_FACTORY = "component-instance-factory"; 022 String CLASS = "class"; 023 String FACTORY = "factory"; 024 String FILE = "file"; 025 String KEY = "key"; 026 String EMPTY_COLLECTION = "empty-collection"; 027 String COMPONENT_VALUE_TYPE = "component-value-type"; 028 String COMPONENT_KEY_TYPE = "component-key-type"; 029 String PARAMETER = "parameter"; 030 String PARAMETER_ZERO = "parameter-zero"; 031 String URL = "url"; 032 033 String CLASSNAME = "classname"; 034 String CONTEXT = "context"; 035 String VALUE = "value"; 036 String CACHING_ATTRIBUTE = "caching"; 037 String INHERIT_BEHAVIORS_ATTRIBUTE = "inheritBehaviors"; 038 String COMPONENT_MONITOR = "component-monitor"; 039 String COMPONENT_ADAPTER_FACTORY = "component-adapter-factory"; 040 041 }