blob: c384c66230fc07b613dc12d9978bc4d8255e8599 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.message;
import java.io.IOException;
import java.io.InputStream;
/**
* @author Andrew M. Finkbeiner
*
*/
public interface MessageDefinitionProvider {
/**
* This function returns an ID that is intended to be unique to the running system. The system should not
* allow more than one active instance of a service with the same singletonId.
*
* @return String
*/
String singletonId();
String majorVersion();
String minorVersion();
InputStream getMetaInfo(String id) throws IOException;
}