Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.executor.admin.test/src/org/eclipse/osee/executor/admin/mock/MockEventService.java')
-rw-r--r--plugins/org.eclipse.osee.executor.admin.test/src/org/eclipse/osee/executor/admin/mock/MockEventService.java62
1 files changed, 62 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.executor.admin.test/src/org/eclipse/osee/executor/admin/mock/MockEventService.java b/plugins/org.eclipse.osee.executor.admin.test/src/org/eclipse/osee/executor/admin/mock/MockEventService.java
new file mode 100644
index 00000000000..edb8fa8b69b
--- /dev/null
+++ b/plugins/org.eclipse.osee.executor.admin.test/src/org/eclipse/osee/executor/admin/mock/MockEventService.java
@@ -0,0 +1,62 @@
+/*******************************************************************************
+ * 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.executor.admin.mock;
+
+import java.util.Map;
+import org.eclipse.osee.event.EventService;
+
+/**
+ * @author Roberto E. Escobar
+ */
+public class MockEventService implements EventService {
+
+ private String topic;
+ private Map<String, ?> data;
+ private int postEvent;
+ private int sendEvent;
+
+ @Override
+ public void postEvent(String topic, Map<String, ?> data) {
+ this.topic = topic;
+ this.data = data;
+ postEvent++;
+ }
+
+ @Override
+ public void sendEvent(String topic, Map<String, ?> data) {
+ this.topic = topic;
+ this.data = data;
+ sendEvent++;
+ }
+
+ public void reset() {
+ this.topic = null;
+ this.data = null;
+ postEvent = 0;
+ sendEvent = 0;
+ }
+
+ public String getTopic() {
+ return topic;
+ }
+
+ public Map<String, ?> getData() {
+ return data;
+ }
+
+ public int getPostEventCount() {
+ return postEvent;
+ }
+
+ public int getSendEventCount() {
+ return sendEvent;
+ }
+}

Back to the top