Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 39427 invoked from network); 6 Jul 2009 23:12:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 6 Jul 2009 23:12:38 -0000 Received: (qmail 72118 invoked by uid 500); 6 Jul 2009 23:12:49 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 72058 invoked by uid 500); 6 Jul 2009 23:12:48 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 72049 invoked by uid 99); 6 Jul 2009 23:12:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 23:12:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 23:12:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C326B23888D0; Mon, 6 Jul 2009 23:12:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r791653 - in /geronimo/specs/trunk/geronimo-ejb_3.1_spec/src/main/java/javax/interceptor: ./ AroundTimeout.java Date: Mon, 06 Jul 2009 23:12:26 -0000 To: scm@geronimo.apache.org From: dblevins@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090706231226.C326B23888D0@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 { +}