/******************************************************************************* * Copyright (c) 2012 VMware, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * VMware, Inc. - initial API and implementation *******************************************************************************/ package org.springframework.ide.eclipse.config.core.schemas; /** * Blueprint schema derived from * <code>http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd</code> * @author Leo Dos Santos * @since STS 2.3.1 * @version OSGi Blueprint 1.0.0 */ public class BlueprintSchemaConstants { // URI public static String URI = "http://www.osgi.org/xmlns/blueprint/v1.0.0"; //$NON-NLS-1$ // Element tags public static String ELEM_ARGUMENT = "argument"; //$NON-NLS-1$ public static String ELEM_ARRAY = "array"; //$NON-NLS-1$ public static String ELEM_BEAN = "bean"; //$NON-NLS-1$ public static String ELEM_BLUEPRINT = "blueprint"; //$NON-NLS-1$ public static String ELEM_DESCRIPTION = "description"; //$NON-NLS-1$ public static String ELEM_ENTRY = "entry"; //$NON-NLS-1$ public static String ELEM_IDREF = "idref"; //$NON-NLS-1$ public static String ELEM_INTERFACES = "interfaces"; //$NON-NLS-1$ public static String ELEM_LIST = "list"; //$NON-NLS-1$ public static String ELEM_MAP = "map"; //$NON-NLS-1$ public static String ELEM_NULL = "null"; //$NON-NLS-1$ public static String ELEM_PROPERTY = "property"; //$NON-NLS-1$ public static String ELEM_PROPS = "props"; //$NON-NLS-1$ public static String ELEM_REF = "ref"; //$NON-NLS-1$ public static String ELEM_REFERENCE = "reference"; //$NON-NLS-1$ public static String ELEM_REFERENCE_LIST = "reference-list"; //$NON-NLS-1$ public static String ELEM_REFERENCE_LISTENER = "reference-listener"; //$NON-NLS-1$ public static String ELEM_REGISTRATION_LISTENER = "registration-listener"; //$NON-NLS-1$ public static String ELEM_SERVICE = "service"; //$NON-NLS-1$ public static String ELEM_SERVICE_PROPERTIES = "service-properties"; //$NON-NLS-1$ public static String ELEM_SET = "set"; //$NON-NLS-1$ public static String ELEM_TYPE_CONVERTERS = "type-converters"; //$NON-NLS-1$ public static String ELEM_VALUE = "value"; //$NON-NLS-1$ // Attribute tags public static String ATTR_ACTIVATION = "activation"; //$NON-NLS-1$ public static String ATTR_AUTO_EXPORT = "auto-export"; //$NON-NLS-1$ public static String ATTR_AVAILABILITY = "availability"; //$NON-NLS-1$ public static String ATTR_BIND_METHOD = "bind-method"; //$NON-NLS-1$ public static String ATTR_CLASS = "class"; //$NON-NLS-1$ public static String ATTR_COMPONENT_ID = "component-id"; //$NON-NLS-1$ public static String ATTR_COMPONENT_NAME = "component-name"; //$NON-NLS-1$ public static String ATTR_DEFAULT_ACTIVATION = "default-activation"; //$NON-NLS-1$ public static String ATTR_DEFAULT_AVAILABILITY = "default-availability"; //$NON-NLS-1$ public static String ATTR_DEFAULT_TIMEOUT = "default-timeout"; //$NON-NLS-1$ public static String ATTR_DEPENDS_ON = "depends-on"; //$NON-NLS-1$ public static String ATTR_DESTROY_METHOD = "destroy-method"; //$NON-NLS-1$ public static String ATTR_FACTORY_METHOD = "factory-method"; //$NON-NLS-1$ public static String ATTR_FACTORY_REF = "factory-ref"; //$NON-NLS-1$ public static String ATTR_FILTER = "filter"; //$NON-NLS-1$ public static String ATTR_ID = "id"; //$NON-NLS-1$ public static String ATTR_INDEX = "index"; //$NON-NLS-1$ public static String ATTR_INIT_METHOD = "init-method"; //$NON-NLS-1$ public static String ATTR_INTERFACE = "interface"; //$NON-NLS-1$ public static String ATTR_KEY = "key"; //$NON-NLS-1$ public static String ATTR_KEY_REF = "key"; //$NON-NLS-1$ public static String ATTR_KEY_TYPE = "key-type"; //$NON-NLS-1$ public static String ATTR_MEMBER_TYPE = "member-type"; //$NON-NLS-1$ public static String ATTR_RANKING = "ranking"; //$NON-NLS-1$ public static String ATTR_REF = "ref"; //$NON-NLS-1$ public static String ATTR_SCOPE = "scope"; //$NON-NLS-1$ public static String ATTR_TIMEOUT = "timeout"; //$NON-NLS-1$ public static String ATTR_TYPE = "type"; //$NON-NLS-1$ public static String ATTR_UNBIND_METHOD = "unbind-method"; //$NON-NLS-1$ public static String ATTR_VALUE = "value"; //$NON-NLS-1$ public static String ATTR_VALUE_REF = "value-ref"; //$NON-NLS-1$ public static String ATTR_VALUE_TYPE = "value-type"; //$NON-NLS-1$ }