/******************************************************************************* * 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; /** * Integration Scripting adapter schema derived from * <code>http://www.springframework.org/schema/integration/scripting/spring-integration-scripting-2.1.xsd</code> * @author Leo Dos Santos * @since STS 2.9.0 * @version Spring Integration 2.1 */ public class IntScriptingSchemaConstants { // URI public static String URI = "http://www.springframework.org/schema/integration/scripting"; //$NON-NLS-1$ // Element tags public static String ELEM_SCRIPT = "script"; //$NON-NLS-1$ // Attribute tags public static String ATTR_TYPE = "type"; //$NON-NLS-1$ }