You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by db...@apache.org on 2009/07/07 01:12:26 UTC

svn commit: r791653 - in /geronimo/specs/trunk/geronimo-ejb_3.1_spec/src/main/java/javax/interceptor: ./ AroundTimeout.java

Author: dblevins
Date: Mon Jul  6 23:12:26 2009
New Revision: 791653

URL: http://svn.apache.org/viewvc?rev=791653&view=rev
Log:
Added temporarily to avoid the need for a new interceptor module.. not sure what the version of that would be just yet.

Added:
    geronimo/specs/trunk/geronimo-ejb_3.1_spec/src/main/java/javax/interceptor/
    geronimo/specs/trunk/geronimo-ejb_3.1_spec/src/main/java/javax/interceptor/AroundTimeout.java

Added: geronimo/specs/trunk/geronimo-ejb_3.1_spec/src/main/java/javax/interceptor/AroundTimeout.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-ejb_3.1_spec/src/main/java/javax/interceptor/AroundTimeout.java?rev=791653&view=auto
==============================================================================
--- geronimo/specs/trunk/geronimo-ejb_3.1_spec/src/main/java/javax/interceptor/AroundTimeout.java (added)
+++ geronimo/specs/trunk/geronimo-ejb_3.1_spec/src/main/java/javax/interceptor/AroundTimeout.java Mon Jul  6 23:12:26 2009
@@ -0,0 +1,38 @@
+/*
+ * 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.
+ */
+
+//
+// This source code implements specifications defined by the Java
+// Community Process. In order to remain compliant with the specification
+// DO NOT add / change / or delete method signatures!
+//
+package javax.interceptor;
+
+import static java.lang.annotation.ElementType.METHOD;
+import java.lang.annotation.Retention;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+import java.lang.annotation.Target;
+
+/**
+ * @version $Revision$ $Date$
+ */
+@Target(value = {METHOD})
+@Retention(value = RUNTIME)
+public @interface AroundTimeout {
+}