/******************************************************************************* * Copyright (c) 2009, 2010 Progress Software Corporation. * 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 ******************************************************************************/ package org.fusesource.tools.message; public interface MessageConstants { public static final String MESSAGE_START_TAG = "message"; public static final String MESSAGE_TYPE_ATTRIBUTE = "type"; public static final String MESSAGE_PROVIDER_ID_ATTRIBUTE = "providerId"; public static final String SUPPORTED_EXTENSION_TYPE_DELIM = ","; public static final String MESSAGE_TYPE = "Message"; public static final String TEXT_MESSAGE_TYPE = "Text"; public static final String DEFAULT_PROVIDER = "Standard"; public static final String DEFAULT_ENCODING = "UTF-8"; }