/******************************************************************************* * Copyright (c) 2014 Pivotal Software, 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: * Pivotal Software, Inc. - initial API and implementation *******************************************************************************/ package org.springframework.ide.eclipse.config.core.schemas; /** * Schema constants for Spring Integration Kafka extension. * * @author Alex Boyko * */ public class IntKafkaSchemaConstants { // URI public static final String URI = "http://www.springframework.org/schema/integration/kafka"; //$NON-NLS-1$ // Element tags public static final String ELEM_INBOUND_CHANNEL_ADAPTER = "inbound-channel-adapter"; //$NON-NLS-1$ public static final String ELEM_OUTBOUND_CHANNEL_ADAPTER = "outbound-channel-adapter"; //$NON-NLS-1$ public static final String ELEM_MESSAGE_DRIVEN_CHANNEL_ADAPTER = "message-driven-channel-adapter"; //$NON-NLS-1$ public static final String ELEM_ZOOKEEPER_CONNECT = "zookeeper-connect"; //$NON-NLS-1$ public static final String ELEM_PRODUCER_CONTEXT = "producer-context"; //$NON-NLS-1$ }