Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/core/IMessageSubscription.java')
-rw-r--r--plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/core/IMessageSubscription.java59
1 files changed, 0 insertions, 59 deletions
diff --git a/plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/core/IMessageSubscription.java b/plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/core/IMessageSubscription.java
deleted file mode 100644
index cfd34421a8d..00000000000
--- a/plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/core/IMessageSubscription.java
+++ /dev/null
@@ -1,59 +0,0 @@
-/*******************************************************************************
- * 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.client.msg.core;
-
-import java.util.List;
-import java.util.Set;
-
-import org.eclipse.osee.ote.message.Message;
-import org.eclipse.osee.ote.message.enums.DataType;
-import org.eclipse.osee.ote.message.tool.MessageMode;
-
-/**
- * @author Ken J. Aguilar
- */
-public interface IMessageSubscription {
- Message getMessage();
-
- void cancel();
-
- String getMessageClassName();
-
- MessageMode getMessageMode();
-
- DataType getMemType();
-
- /**
- * returns whether or not the subscription has been activated. A subscription is considered activated if and only if
- * a proper connection to a test server has been established and a successful registration of the subscription is
- * made. A subscription is not bound to any instance of a test server. A subscription is honored even when switching
- * between different test servers.
- */
- boolean isActive();
-
- boolean isResolved();
-
- void changeMemType(DataType type);
-
- void send() throws Exception;
-
- void setElementValue(List<Object> path, String value) throws Exception;
- void setElementValueNoSend(List<Object> path, String value) throws Exception;
- void zeroize(List<Object> path) throws Exception;
-
- void changeMessageMode(MessageMode mode);
-
- Set<DataType> getAvailableTypes();
-
- boolean addSubscriptionListener(ISubscriptionListener listener);
-
- boolean removeSubscriptionListener(ISubscriptionListener listener);
-}

Back to the top