Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 9040 invoked from network); 1 Mar 2007 09:49:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Mar 2007 09:49:19 -0000 Received: (qmail 31900 invoked by uid 500); 1 Mar 2007 09:49:22 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 31847 invoked by uid 500); 1 Mar 2007 09:49:21 -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 31814 invoked by uid 99); 1 Mar 2007 09:49:21 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Mar 2007 01:49:21 -0800 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Mar 2007 01:49:12 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 5B7FE1A981D; Thu, 1 Mar 2007 01:48:52 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r513246 - in /geronimo/specs/trunk/geronimo-annotation_1.0_spec: ./ src/main/java/javax/annotation/security/ Date: Thu, 01 Mar 2007 09:48:52 -0000 To: scm@geronimo.apache.org From: djencks@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070301094852.5B7FE1A981D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: djencks Date: Thu Mar 1 01:48:51 2007 New Revision: 513246 URL: http://svn.apache.org/viewvc?view=rev&rev=513246 Log: GERONIMO-2910 annotations missing in security package Added: geronimo/specs/trunk/geronimo-annotation_1.0_spec/ - copied from r500316, geronimo/specs/tags/geronimo-annotation_1.0_spec-1.0/ Modified: geronimo/specs/trunk/geronimo-annotation_1.0_spec/pom.xml geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/DeclareRoles.java geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/DenyAll.java geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/PermitAll.java geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/RolesAllowed.java geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/RunAs.java Modified: geronimo/specs/trunk/geronimo-annotation_1.0_spec/pom.xml URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-annotation_1.0_spec/pom.xml?view=diff&rev=513246&r1=500316&r2=513246 ============================================================================== --- geronimo/specs/trunk/geronimo-annotation_1.0_spec/pom.xml (original) +++ geronimo/specs/trunk/geronimo-annotation_1.0_spec/pom.xml Thu Mar 1 01:48:51 2007 @@ -33,7 +33,7 @@ geronimo-annotation_1.0_spec Annotation 1.0 - 1.0 + 1.1.SNAPSHOT Modified: geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/DeclareRoles.java URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/DeclareRoles.java?view=diff&rev=513246&r1=500316&r2=513246 ============================================================================== --- geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/DeclareRoles.java (original) +++ geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/DeclareRoles.java Thu Mar 1 01:48:51 2007 @@ -28,10 +28,13 @@ import java.lang.annotation.Retention; import java.lang.annotation.ElementType; import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Documented; /** * @version $Rev$ $Date$ */ + +@Documented @Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) public @interface DeclareRoles { Modified: geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/DenyAll.java URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/DenyAll.java?view=diff&rev=513246&r1=500316&r2=513246 ============================================================================== --- geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/DenyAll.java (original) +++ geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/DenyAll.java Thu Mar 1 01:48:51 2007 @@ -28,10 +28,13 @@ import java.lang.annotation.Retention; import java.lang.annotation.ElementType; import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Documented; /** * @version $Rev$ $Date$ */ + +@Documented @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface DenyAll { Modified: geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/PermitAll.java URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/PermitAll.java?view=diff&rev=513246&r1=500316&r2=513246 ============================================================================== --- geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/PermitAll.java (original) +++ geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/PermitAll.java Thu Mar 1 01:48:51 2007 @@ -28,10 +28,13 @@ import java.lang.annotation.Retention; import java.lang.annotation.ElementType; import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Documented; /** * @version $Rev$ $Date$ */ + +@Documented @Target({ElementType.TYPE, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) public @interface PermitAll { Modified: geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/RolesAllowed.java URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/RolesAllowed.java?view=diff&rev=513246&r1=500316&r2=513246 ============================================================================== --- geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/RolesAllowed.java (original) +++ geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/RolesAllowed.java Thu Mar 1 01:48:51 2007 @@ -28,10 +28,13 @@ import java.lang.annotation.Retention; import java.lang.annotation.ElementType; import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Documented; /** * @version $Rev$ $Date$ */ + +@Documented @Target({ElementType.TYPE, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) public @interface RolesAllowed { Modified: geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/RunAs.java URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/RunAs.java?view=diff&rev=513246&r1=500316&r2=513246 ============================================================================== --- geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/RunAs.java (original) +++ geronimo/specs/trunk/geronimo-annotation_1.0_spec/src/main/java/javax/annotation/security/RunAs.java Thu Mar 1 01:48:51 2007 @@ -28,10 +28,13 @@ import java.lang.annotation.Retention; import java.lang.annotation.ElementType; import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Documented; /** * @version $Rev$ $Date$ */ + +@Documented @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface RunAs {