blob: defaf4298f75b95fcb1fd743240ec09291cb8191 [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.messaging.dds.service;
import org.eclipse.osee.ote.messaging.dds.entity.DomainParticipant;
/**
* Provides a description of all topic classes. Any class that is a topic of some sort should implement this interface.
*
* @author Robert A. Fisher
* @author David Diepenbrock
*/
public interface TopicDescription {
/**
* The method which will supply the name used to create the topic.
*
* @return A string representation of the topic name.
*/
public String getName();
/**
* The method which will return a reference to the <code>DomainParticipant</code> which created the topic.
*
* @return The <code>DomainParticipant</code> that created this topic.
*/
public DomainParticipant getParticipant();
/**
* The method which will supply the type name used to create the topic.
*
* @return A string representation of the type name.
*/
public String getTypeName();
public String getNamespace();
}