diff options
Diffstat (limited to 'sandbox/event/modules/sca-api')
-rw-r--r-- | sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventType.java | 2 | ||||
-rw-r--r-- | sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventTypes.java | 43 |
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 "";
+
+}
|