Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.messaging/src/org/eclipse/osee/framework/messaging/MessageID.java')
-rw-r--r--plugins/org.eclipse.osee.framework.messaging/src/org/eclipse/osee/framework/messaging/MessageID.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/plugins/org.eclipse.osee.framework.messaging/src/org/eclipse/osee/framework/messaging/MessageID.java b/plugins/org.eclipse.osee.framework.messaging/src/org/eclipse/osee/framework/messaging/MessageID.java
index f6807a089a0..372326e6717 100644
--- a/plugins/org.eclipse.osee.framework.messaging/src/org/eclipse/osee/framework/messaging/MessageID.java
+++ b/plugins/org.eclipse.osee.framework.messaging/src/org/eclipse/osee/framework/messaging/MessageID.java
@@ -14,11 +14,13 @@ import org.eclipse.osee.framework.core.data.Named;
/**
* @author Andrew M. Finkbeiner
- *
*/
public interface MessageID extends Named {
- Class<?> getSerializationClass();
- boolean isReplyRequired();
- boolean isTopic();
- String getId();
+ Class<?> getSerializationClass();
+
+ boolean isReplyRequired();
+
+ boolean isTopic();
+
+ String getId();
}

Back to the top