summaryrefslogtreecommitdiffstats
path: root/sandbox/event
diff options
context:
space:
mode:
authoredwardsmj <edwardsmj@13f79535-47bb-0310-9956-ffa450edef68>2008-10-29 10:56:37 +0000
committeredwardsmj <edwardsmj@13f79535-47bb-0310-9956-ffa450edef68>2008-10-29 10:56:37 +0000
commit7388cfbd9adf981eaf900bc51a3cfa47aaa2a351 (patch)
tree04ec16487a1d20c55b2e7478e09283123a0bfec8 /sandbox/event
parent0d8d686b0185f5d8f16ceb85d3605c2b88c648f8 (diff)
EventTypes annotation created
EventType annotation comments updated git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@708870 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/event')
-rw-r--r--sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventType.java2
-rw-r--r--sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventTypes.java43
2 files changed, 44 insertions, 1 deletions
diff --git a/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventType.java b/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventType.java
index f783e7cb24..5f0f9bbc8c 100644
--- a/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventType.java
+++ b/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventType.java
@@ -14,7 +14,7 @@ import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
- * Annotation used to indicate the service interfaces exposed by a Java class.
+ * Annotation used to indicate the event type represented by a Java class.
*
* @version $$
*/
diff --git a/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventTypes.java b/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventTypes.java
new file mode 100644
index 0000000000..0d7d2a8c78
--- /dev/null
+++ b/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventTypes.java
@@ -0,0 +1,43 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.osoa.sca.annotations;
+
+import static java.lang.annotation.ElementType.METHOD;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+
+import java.lang.annotation.Retention;
+import java.lang.annotation.Target;
+
+/**
+ * Annotation used to indicate the set of Event Types relating to a consumer or producer method on a Java class.
+ *
+ * The annotation contains a string which is a list of (fully qualified) class names of the event types
+ * supported by the consumer/producer method
+ *
+ * Mike Edwards 27/10/2008
+ *
+ * @version $$
+ */
+@Target({METHOD})
+@Retention(RUNTIME)
+public @interface EventTypes {
+
+ String value() default "";
+
+}