You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by ed...@apache.org on 2008/10/29 11:56:37 UTC

svn commit: r708870 - in /tuscany/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations: EventType.java EventTypes.java

Author: edwardsmj
Date: Wed Oct 29 03:56:37 2008
New Revision: 708870

URL: http://svn.apache.org/viewvc?rev=708870&view=rev
Log:
EventTypes annotation created
EventType annotation comments updated

Added:
    tuscany/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventTypes.java
Modified:
    tuscany/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventType.java

Modified: tuscany/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventType.java
URL: http://svn.apache.org/viewvc/tuscany/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventType.java?rev=708870&r1=708869&r2=708870&view=diff
==============================================================================
--- tuscany/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventType.java (original)
+++ tuscany/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventType.java Wed Oct 29 03:56:37 2008
@@ -14,7 +14,7 @@
 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 $$
  */

Added: tuscany/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventTypes.java
URL: http://svn.apache.org/viewvc/tuscany/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventTypes.java?rev=708870&view=auto
==============================================================================
--- tuscany/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventTypes.java (added)
+++ tuscany/sandbox/event/modules/sca-api/src/main/java/org/osoa/sca/annotations/EventTypes.java Wed Oct 29 03:56:37 2008
@@ -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 "";
+	
+}