00001 /* 00002 * Copyright (C) 2011 Google Inc. 00003 * 00004 * Licensed under the Apache License, Version 2.0 (the "License"); you may not 00005 * use this file except in compliance with the License. You may obtain a copy of 00006 * the License at 00007 * 00008 * http://www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 00012 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 00013 * License for the specific language governing permissions and limitations under 00014 * the License. 00015 */ 00016 00017 package org.ros.internal.node.topic; 00018 00019 import org.ros.internal.transport.ConnectionHeader; 00020 import org.ros.master.client.TopicSystemState; 00021 import org.ros.namespace.GraphName; 00022 00023 import java.util.List; 00024 00030 public abstract class DefaultTopicParticipant implements TopicParticipant { 00031 00032 private final TopicDeclaration topicDeclaration; 00033 00034 public DefaultTopicParticipant(TopicDeclaration topicDeclaration) { 00035 this.topicDeclaration = topicDeclaration; 00036 } 00037 00041 public TopicDeclaration getTopicDeclaration() { 00042 return topicDeclaration; 00043 } 00044 00045 public List<String> getTopicDeclarationAsList() { 00046 return topicDeclaration.toList(); 00047 } 00048 00049 @Override 00050 public GraphName getTopicName() { 00051 return topicDeclaration.getName(); 00052 } 00053 00054 @Override 00055 public String getTopicMessageType() { 00056 return topicDeclaration.getMessageType(); 00057 } 00058 00062 public ConnectionHeader getTopicDeclarationHeader() { 00063 return topicDeclaration.toConnectionHeader(); 00064 } 00065 00069 public abstract void signalOnMasterRegistrationSuccess(); 00070 00074 public abstract void signalOnMasterRegistrationFailure(); 00075 00079 public abstract void signalOnMasterUnregistrationSuccess(); 00080 00084 public abstract void signalOnMasterUnregistrationFailure(); 00085 }