Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.event')
-rw-r--r--plugins/org.eclipse.osee.event/.classpath7
-rw-r--r--plugins/org.eclipse.osee.event/.project28
-rw-r--r--plugins/org.eclipse.osee.event/META-INF/MANIFEST.MF8
-rw-r--r--plugins/org.eclipse.osee.event/build.properties4
-rw-r--r--plugins/org.eclipse.osee.event/pom.xml17
-rw-r--r--plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/Event.java24
-rw-r--r--plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/EventHandler.java20
-rw-r--r--plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/EventService.java32
8 files changed, 0 insertions, 140 deletions
diff --git a/plugins/org.eclipse.osee.event/.classpath b/plugins/org.eclipse.osee.event/.classpath
deleted file mode 100644
index 1fa3e6803d3..00000000000
--- a/plugins/org.eclipse.osee.event/.classpath
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
- <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
- <classpathentry kind="src" path="src"/>
- <classpathentry kind="output" path="bin"/>
-</classpath>
diff --git a/plugins/org.eclipse.osee.event/.project b/plugins/org.eclipse.osee.event/.project
deleted file mode 100644
index 332f05ff83c..00000000000
--- a/plugins/org.eclipse.osee.event/.project
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>org.eclipse.osee.event</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.eclipse.pde.ManifestBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.eclipse.pde.SchemaBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.pde.PluginNature</nature>
- <nature>org.eclipse.jdt.core.javanature</nature>
- </natures>
-</projectDescription>
diff --git a/plugins/org.eclipse.osee.event/META-INF/MANIFEST.MF b/plugins/org.eclipse.osee.event/META-INF/MANIFEST.MF
deleted file mode 100644
index a7578f205d9..00000000000
--- a/plugins/org.eclipse.osee.event/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,8 +0,0 @@
-Manifest-Version: 1.0
-Bundle-ManifestVersion: 2
-Bundle-Name: OSEE Event (Incubation)
-Bundle-SymbolicName: org.eclipse.osee.event
-Bundle-Version: 0.25.4.qualifier
-Bundle-RequiredExecutionEnvironment: JavaSE-1.8
-Export-Package: org.eclipse.osee.event
-Bundle-Vendor: Eclipse Open System Engineering Environment
diff --git a/plugins/org.eclipse.osee.event/build.properties b/plugins/org.eclipse.osee.event/build.properties
deleted file mode 100644
index 34d2e4d2dad..00000000000
--- a/plugins/org.eclipse.osee.event/build.properties
+++ /dev/null
@@ -1,4 +0,0 @@
-source.. = src/
-output.. = bin/
-bin.includes = META-INF/,\
- .
diff --git a/plugins/org.eclipse.osee.event/pom.xml b/plugins/org.eclipse.osee.event/pom.xml
deleted file mode 100644
index 46d91581872..00000000000
--- a/plugins/org.eclipse.osee.event/pom.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.eclipse.osee</groupId>
- <artifactId>org.eclipse.osee.x.core.parent</artifactId>
- <version>0.25.4-SNAPSHOT</version>
- <relativePath>../../plugins/org.eclipse.osee.x.core.parent</relativePath>
- </parent>
-
- <artifactId>org.eclipse.osee.event</artifactId>
- <packaging>eclipse-plugin</packaging>
- <name>OSEE Event - (Incubation)</name>
-
-</project>
diff --git a/plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/Event.java b/plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/Event.java
deleted file mode 100644
index 0ccf2a69401..00000000000
--- a/plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/Event.java
+++ /dev/null
@@ -1,24 +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.event;
-
-/**
- * @author Roberto E. Escobar
- */
-public interface Event {
-
- Object getValue(String name);
-
- String[] getKeys();
-
- String getTopic();
-
-}
diff --git a/plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/EventHandler.java b/plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/EventHandler.java
deleted file mode 100644
index a9f58c316ca..00000000000
--- a/plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/EventHandler.java
+++ /dev/null
@@ -1,20 +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.event;
-
-/**
- * @author Roberto E. Escobar
- */
-public interface EventHandler {
-
- void onEvent(Event event);
-
-}
diff --git a/plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/EventService.java b/plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/EventService.java
deleted file mode 100644
index 78df305e87c..00000000000
--- a/plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/EventService.java
+++ /dev/null
@@ -1,32 +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.event;
-
-import java.util.Map;
-
-/**
- * @author Roberto E. Escobar
- */
-public interface EventService {
-
- /**
- * Initiate asynchronous, ordered delivery of an event. This method returns to the caller before delivery of the
- * event is completed.
- */
- void postEvent(String topic, Map<String, ?> data);
-
- /**
- * Initiate synchronous delivery of an event. This method does not return to the caller until delivery of the event
- * is completed.
- */
- void sendEvent(String topic, Map<String, ?> data);
-
-}

Back to the top