[jboss-cvs] JBossAS SVN: r67057 - in trunk: ejb3 and 10 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Nov 13 23:02:03 EST 2007


Author: ALRubinger
Date: 2007-11-13 23:02:03 -0500 (Tue, 13 Nov 2007)
New Revision: 67057

Removed:
   trunk/ejb3/src/main/org/jboss/annotation/IgnoreDependency.java
   trunk/ejb3/src/main/org/jboss/annotation/JndiInject.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/AcknowledgementMode.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/AspectDomain.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/Consumer.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/CurrentMessage.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/DefaultActivationSpecs.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/DeliveryMode.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/Depends.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/Durability.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/IIOP.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/JndiBindingPolicy.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/Local.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/LocalBinding.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/LocalHomeBinding.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/Management.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/MessageProperties.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/Pool.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/Producer.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/Producers.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/RemoteBinding.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/RemoteBindings.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/RemoteHomeBinding.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/ResourceAdapter.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/SerializedConcurrentAccess.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/Service.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/TransactionTimeout.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/cache/Cache.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/cache/CacheConfig.java
   trunk/ejb3/src/main/org/jboss/annotation/ejb/cache/simple/PersistenceManager.java
   trunk/ejb3/src/main/org/jboss/annotation/internal/DefaultInterceptorMarker.java
   trunk/ejb3/src/main/org/jboss/annotation/security/RunAsPrincipal.java
   trunk/ejb3/src/main/org/jboss/annotation/security/SecurityDomain.java
Modified:
   trunk/build/build-thirdparty.xml
   trunk/ejb3/.classpath
   trunk/ejb3/build.xml
   trunk/embedded/.classpath
   trunk/embedded/build.xml
   trunk/testsuite/.classpath
   trunk/testsuite/build.xml
   trunk/testsuite/src/main/org/jboss/test/classloader/leak/ejb3/ThreadLocalPoolEjb3StatelessSessionBean.java
   trunk/webservices/.classpath
   trunk/webservices/build.xml
Log:
[EJBTHREE-1099] Moved EJB3 External API to projects/ejb3, removed references in JBoss AS EJB3 Core

Modified: trunk/build/build-thirdparty.xml
===================================================================
--- trunk/build/build-thirdparty.xml	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/build/build-thirdparty.xml	2007-11-14 04:02:03 UTC (rev 67057)
@@ -92,6 +92,7 @@
     <componentref name="jboss/integration" version="5.0.0.Beta4"/>
     <componentref name="jboss/jaxr" version="1.2.0.GA"/>
     <componentref name="jboss/jboss-ejb3-cache" version="0.11-SNAPSHOT"/>
+  	<componentref name="jboss/jboss-ejb3-ext-api" version="0.1-SNAPSHOT"/>
     <componentref name="jboss/jboss-jaspi-api" version="1.0-BETA1"/>
     <componentref name="jboss/jboss-javaee" version="5.0.0.Beta3"/>
     <componentref name="jboss/jboss-security-spi" version="2.0.1.GA"/>

Modified: trunk/ejb3/.classpath
===================================================================
--- trunk/ejb3/.classpath	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/.classpath	2007-11-14 04:02:03 UTC (rev 67057)
@@ -67,5 +67,6 @@
 			<accessrule kind="discouraged" pattern="org/jboss/metamodel/**"/>
 		</accessrules>
 	</classpathentry>
+	<classpathentry kind="lib" path="/thirdparty/jboss/jboss-ejb3-ext-api/lib/jboss-ejb3-ext-api.jar"/>
 	<classpathentry kind="output" path="output/eclipse-classes"/>
 </classpath>

Modified: trunk/ejb3/build.xml
===================================================================
--- trunk/ejb3/build.xml	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/build.xml	2007-11-14 04:02:03 UTC (rev 67057)
@@ -111,6 +111,7 @@
          <path refid="cglib.classpath"/>
          <path refid="jboss.integration.classpath"/>
          <path refid="jboss.jboss.ejb3.cache.classpath"/>
+         <path refid="jboss.jboss.ejb3.ext.api.classpath" />
       </path>
 
       <!-- ======= -->

Deleted: trunk/ejb3/src/main/org/jboss/annotation/IgnoreDependency.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/IgnoreDependency.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/IgnoreDependency.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,38 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation;
-
-import java.lang.annotation.Target;
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-
-/**
- * Ignore the dependency created by an injection annotation applied
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Target({ElementType.METHOD, ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME)
-public @interface IgnoreDependency
-{
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/JndiInject.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/JndiInject.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/JndiInject.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,39 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Inject directly from Global JNDI
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER}) @Retention(RetentionPolicy.RUNTIME)
-public @interface JndiInject
-{
-   String jndiName() default "";
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/AcknowledgementMode.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/AcknowledgementMode.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/AcknowledgementMode.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,36 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-/**
- * Enumeration for the behavior for the ackowledgement of JMS messages
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
-public enum AcknowledgementMode
-{
-   SESSION_TRANSACTED,
-   AUTO_ACKNOWLEDGE,
-   DUPS_OK,
-   CLIENT_ACKOWLEDGE
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/AspectDomain.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/AspectDomain.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/AspectDomain.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,41 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Annotation for specifying the aspect domain for a bean. The aspect domain contains the interceptor
- * stack and bindings
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Target(ElementType.TYPE)
- at Retention(RetentionPolicy.RUNTIME)
-public @interface AspectDomain
-{
-   String value();
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/Consumer.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/Consumer.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/Consumer.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,43 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-import javax.ejb.ActivationConfigProperty;
-
-/**
- * Annotation for specifying a class as a Consumer EJB.  COnsumer EJBs
- * are MDB's with a published typed interface.
- * 
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME)
-public @interface Consumer
-{
-   String name() default "";
-   
-   ActivationConfigProperty[] activationConfig() default {};
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/CurrentMessage.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/CurrentMessage.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/CurrentMessage.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,39 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Inject the current message of a @Consumer invocation
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Target({ElementType.METHOD, ElementType.FIELD})
- at Retention(RetentionPolicy.RUNTIME)
-public @interface CurrentMessage
-{
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/DefaultActivationSpecs.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/DefaultActivationSpecs.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/DefaultActivationSpecs.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,40 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import javax.ejb.ActivationConfigProperty;
-import java.lang.annotation.Target;
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-
-/**
- * Comment
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME)
-public @interface DefaultActivationSpecs
-{
-   ActivationConfigProperty[] value();
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/DeliveryMode.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/DeliveryMode.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/DeliveryMode.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,33 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-/**
- * Enumeration for specifying the persistence of a JMS message
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- */
-public enum DeliveryMode
-{
-   NON_PERSISTENT,
-   PERSISTENT
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/Depends.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/Depends.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/Depends.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,40 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.Target;
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-
-/**
- * Annotation for specifying a deployment dependency for a bean.  If placed on a setter method or field
- * an MBean proxy will be injected as well.
- * 
- * @author <a href="mailto:kabir.khan at jboss.org">Kabir Khan</a>
- * @version $Revision$
- */
- at Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME)
-public @interface Depends
-{
-   String[] value();
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/Durability.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/Durability.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/Durability.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,33 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-/**
- * Enumeration for the durability of a JMS Topic Subscriber
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
-public enum Durability
-{
-   DURABLE, NON_DURABLE
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/IIOP.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/IIOP.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/IIOP.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,47 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * This annotation binds a bean into Corba.
- *
- * @author <a href="mailto:carlo.dewolf at jboss.com">Carlo de Wolf</a>
- * @version $Revision$
- */
- at Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE})
- at Retention(RetentionPolicy.RUNTIME)
-public @interface IIOP {
-   final String POA_SHARED = "shared";
-   final String POA_PER_SERVANT = "per-servant";
-   
-   boolean interfaceRepositorySupported() default false;
-   
-   /**
-    * per-servant or shared portable object adapter
-    */
-   String poa() default POA_PER_SERVANT;
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/JndiBindingPolicy.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/JndiBindingPolicy.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/JndiBindingPolicy.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,52 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2007, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-import org.jboss.ejb3.jndipolicy.DefaultJndiBindingPolicy;
-
-/**
- * Annotation for specifying that an EJB should use a 
- * specified JNDI Binding Policy when determining default 
- * JNDI names.  This policy may be overridden through optional 
- * use of @RemoteBinding, @RemoteBindings, @RemoteHomeBinding, 
- * @LocalBinding, @LocalBindings, @LocalHomeBinding
- * 
- * @author <a href="mailto:andrew.rubinger at redhat.com">ALR</a>
- * @version $Revision: $
- */
- at Target(ElementType.TYPE)
- at Retention(RetentionPolicy.RUNTIME)
-public @interface JndiBindingPolicy {
-
-   /**
-    * The JNDI Binding Policy that will be used 
-    * 
-    * @return
-    */
-   Class<? extends DefaultJndiBindingPolicy> policy();
-   
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/Local.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/Local.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/Local.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,39 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Annotation for specifying that a Producer will be invoked on locally only.
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Target({ElementType.METHOD, ElementType.TYPE, ElementType.FIELD, ElementType.PARAMETER})
-        @Retention(RetentionPolicy.RUNTIME)
-        public @interface Local
-{
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/LocalBinding.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/LocalBinding.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/LocalBinding.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,39 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Annotation for specifying the local jndi binding for an EJB local interface
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME)
-public @interface LocalBinding
-{
-   String jndiBinding();
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/LocalHomeBinding.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/LocalHomeBinding.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/LocalHomeBinding.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,38 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Annotation for specifying the local home jndi binding for an EJB local interface
- *
- * @author <a href="mailto:bdecoste at jboss.com">William DeCoste</a>
- */
- at Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME)
-public @interface LocalHomeBinding
-{
-   String jndiBinding();
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/Management.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/Management.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/Management.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,39 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.Target;
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-
-/**
- * Annotation for specifying the management interface for a @Service EJB
- * 
- * @author <a href="mailto:kabir.khan at jboss.org">Kabir Khan</a>
- * @version $Revision$
- */
- at Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME)
-public @interface Management
-{
-   Class value() default Object.class;
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/MessageProperties.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/MessageProperties.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/MessageProperties.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,44 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-
-/**
- * Annotation for specifying the message properties for a Consumer bean.  It is placed
- * on the Producer interfaces.
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- */
- at Target({ElementType.METHOD, ElementType.TYPE})
- at Retention(RetentionPolicy.RUNTIME)
-public @interface MessageProperties
-{
-   DeliveryMode delivery() default DeliveryMode.PERSISTENT;
-   int timeToLive() default 0;
-   int priority() default 4;
-   Class getInterface() default MessageProperties.class;
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/Pool.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/Pool.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/Pool.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,42 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Annotation for specifying the pool class to manage thread pooling for a bean
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Retention(RetentionPolicy.RUNTIME)
- at Target({ElementType.TYPE})
-public @interface Pool
-{
-   String value();
-   int maxSize() default 30;
-   long timeout()default Long.MAX_VALUE;
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/Producer.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/Producer.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/Producer.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,43 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Annotation for specifying the interface and/or properties for a Producer.  @Consumer beans
- * public @Producer interfaces.
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME)
-public @interface Producer
-{
-   Class producer() default Producer.class;
-   String connectionFactory() default "";
-   boolean transacted() default false;
-   int acknowledgeMode() default 1; // autoacknowledge
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/Producers.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/Producers.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/Producers.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,40 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Used in conjunction with the @Consumer EJB type, it lists the
- * producer interfaces that are published by the consumer.
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME)
-public @interface Producers
-{
-   Producer[] value();
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/RemoteBinding.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/RemoteBinding.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/RemoteBinding.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,51 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-import org.jboss.ejb3.remoting.RemoteProxyFactory;
-
-/**
- * Annotation for specifying the remote jndi binding for a bean as well
- * as the client interceptor stack, which is a stack-ref in JBoss AOP
- * THe clientBindUrl is the JBoss Remoting URL that clients will try and
- * bind to.  Factory is if you are plugging in a custom proxy factory.
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE})
- at Retention(RetentionPolicy.RUNTIME)
-public @interface RemoteBinding
-{
-   String jndiBinding() default "";
-
-   String interceptorStack() default "";
-
-   String clientBindUrl() default "";
-
-   Class<? extends RemoteProxyFactory> factory() default RemoteProxyFactory.class;
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/RemoteBindings.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/RemoteBindings.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/RemoteBindings.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,40 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-import org.jboss.annotation.ejb.RemoteBinding;
-
-/**
- * Annotation for specifying the remote jndi bindings for a bean
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME)
-public @interface RemoteBindings
-{
-   RemoteBinding[] value();
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/RemoteHomeBinding.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/RemoteHomeBinding.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/RemoteHomeBinding.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,39 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Annotation for specifying the remote home jndi binding for a bean 
- *
- * @author <a href="mailto:bdecoste at jboss.com">William DeCoste</a>
- */
- at Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE})
- at Retention(RetentionPolicy.RUNTIME)
-public @interface RemoteHomeBinding
-{
-   String jndiBinding() default "";
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/ResourceAdapter.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/ResourceAdapter.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/ResourceAdapter.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,42 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.Target;
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-
-/**
- * Identifies RAR you want to use for the MDB.  This is message inflow.
- * The RAR is identified by the basename of the jar file it resides in,
- * for example @ResourceAdapter("jms-ra.rar").
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Target(ElementType.TYPE)
- at Retention(RetentionPolicy.RUNTIME)
-public @interface ResourceAdapter
-{
-   String value();
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/SerializedConcurrentAccess.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/SerializedConcurrentAccess.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/SerializedConcurrentAccess.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,40 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Set on a stateful bean.  Instead of throwing an exception on concurrent access to the stateful bean,
- * block/serialize access.
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Target(ElementType.TYPE)
- at Retention(RetentionPolicy.RUNTIME)
-public @interface SerializedConcurrentAccess
-{
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/Service.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/Service.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/Service.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,42 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Annotation for specifying the new JBoss Specific EJB extension, a singleton service
- * It is a single instance that can have a remote/local/MBean management interface
- * 
- * @author <a href="mailto:kabir.khan at jboss.org">Kabir Khan</a>
- * @version $Revision$
- */
- at Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME)
-public @interface Service
-{
-   String objectName() default "";
-   String name() default "";
-   String xmbean() default "";
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/TransactionTimeout.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/TransactionTimeout.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/TransactionTimeout.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,40 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Annotation for specifying the transaction timeout of an EJB business method
- * 
- * @author <a href="mailto:bill.decoste at jboss.org">William DeCoste</a>
- * @version $Revision$
- */
- at Target({ElementType.METHOD, ElementType.TYPE})
- at Retention(RetentionPolicy.RUNTIME)
-public @interface TransactionTimeout
-{
-   int value() default 0;   
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/cache/Cache.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/cache/Cache.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/cache/Cache.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,42 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2007, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb.cache;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Cache
- * 
- * Annotation used to specify Cache implementation
- * 
- * @author <a href="mailto:andrew.rubinger at redhat.com">ALR</a>
- * @version $Revision$
- */
- at Retention(RetentionPolicy.RUNTIME)
- at Target({ElementType.TYPE})
-public @interface Cache
-{
-   String value();
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/cache/CacheConfig.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/cache/CacheConfig.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/cache/CacheConfig.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,65 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2007, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb.cache;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Annotation to define the caching configuration for a SFSB
- * 
- * @author <a href="mailto:andrew.rubinger at redhat.com">ALR</a>
- * @version $Revision: $
- */
- at Retention(RetentionPolicy.RUNTIME)
- at Target(
-{ElementType.TYPE})
-public @interface CacheConfig {
-
-   // Class Members
-   
-   public static final String DEFAULT_CLUSTERED_OBJECT_NAME = "jboss.cache:service=EJB3SFSBClusteredCache";
-
-   public static final int DEFAULT_NONCLUSTERED_MAX_SIZE = 100000;
-
-   public static final int DEFAULT_CLUSTERED_MAX_SIZE = 10000;
-
-   public static final long DEFAULT_IDLE_TIMEOUT_SECONDS = 300;
-
-   public static final long DEFAULT_REMOVAL_TIMEOUT_SECONDS = 0;
-
-   public static final boolean DEFAULT_REPL_IS_PASV = true;
-   
-   // Instance Members
-   
-   String name() default "";
-
-   int maxSize() default CacheConfig.DEFAULT_NONCLUSTERED_MAX_SIZE;
-
-   long idleTimeoutSeconds() default CacheConfig.DEFAULT_IDLE_TIMEOUT_SECONDS;
-
-   boolean replicationIsPassivation() default CacheConfig.DEFAULT_REPL_IS_PASV;
-
-   long removalTimeoutSeconds() default CacheConfig.DEFAULT_REMOVAL_TIMEOUT_SECONDS;
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/ejb/cache/simple/PersistenceManager.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/ejb/cache/simple/PersistenceManager.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/ejb/cache/simple/PersistenceManager.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,40 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.ejb.cache.simple;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Annotation for specifying the class used to provide the persistence mechanism for a bean 
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- */
- at Retention(RetentionPolicy.RUNTIME)
- at Target({ElementType.TYPE})
-public @interface PersistenceManager
-{
-   Class value();
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/internal/DefaultInterceptorMarker.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/internal/DefaultInterceptorMarker.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/internal/DefaultInterceptorMarker.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,36 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */ 
-package org.jboss.annotation.internal;
-
-/**
- * Annotation for internal use. We need an annotation to match for in ejb3-interceptors-aop.xml to trigger
- * the EJB3InterceptorsFactory, in case an ejb only has default interceptors. Users should not use this 
- * annotation directly, it is used internally by JBoss EJB3.
- * 
- * 
- * 
- * @author <a href="kabir.khan at jboss.com">Kabir Khan</a>
- * @version $Revision$
- */
-public @interface DefaultInterceptorMarker {
-
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/security/RunAsPrincipal.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/security/RunAsPrincipal.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/security/RunAsPrincipal.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,40 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.security;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Annotation for specifying the additional security Principal for which this bean executes
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- *
- **/
- at Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME)
-public @interface RunAsPrincipal
-{
-   String value();
-}

Deleted: trunk/ejb3/src/main/org/jboss/annotation/security/SecurityDomain.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/annotation/security/SecurityDomain.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/ejb3/src/main/org/jboss/annotation/security/SecurityDomain.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -1,45 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.annotation.security;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Annotation for specifying the JBoss security domain for an EJB
- * DO NOT USE THE JNDI NAME:
- *   - "java:/jaas/MyDomain" ILLEGAL
- *   - "MyDomain"  GOOD
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- *
- **/
- at Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME)
-public @interface SecurityDomain
-{
-   String value();
-   
-   String unauthenticatedPrincipal() default "";
-}

Modified: trunk/embedded/.classpath
===================================================================
--- trunk/embedded/.classpath	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/embedded/.classpath	2007-11-14 04:02:03 UTC (rev 67057)
@@ -34,5 +34,6 @@
 	<classpathentry kind="lib" path="/thirdparty/junit/lib/junit.jar"/>
 	<classpathentry combineaccessrules="false" kind="src" path="/main"/>
 	<classpathentry combineaccessrules="false" kind="src" path="/bootstrap"/>
+	<classpathentry kind="lib" path="/thirdparty/jboss/jboss-ejb3-ext-api/lib/jboss-ejb3-ext-api.jar"/>
 	<classpathentry kind="output" path="output/classes"/>
 </classpath>

Modified: trunk/embedded/build.xml
===================================================================
--- trunk/embedded/build.xml	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/embedded/build.xml	2007-11-14 04:02:03 UTC (rev 67057)
@@ -98,7 +98,8 @@
          <path refid="jacorb.jacorb.classpath"/>
          <!-- FIXME: temporary for EJBTHREE-485 -->
          <path refid="cglib.classpath"/>
-         <path refid="jboss.integration.classpath"/>
+         <path refid="jboss.integration.classpath"/>
+         <path refid="jboss.jboss.ejb3.ext.api.classpath"/>
       </path>
 
       <!-- ======= -->

Modified: trunk/testsuite/.classpath
===================================================================
--- trunk/testsuite/.classpath	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/testsuite/.classpath	2007-11-14 04:02:03 UTC (rev 67057)
@@ -92,5 +92,6 @@
 	<classpathentry kind="lib" path="/thirdparty/jboss/jbosssx/lib/jbosssx.jar" sourcepath="/thirdparty/jboss/security/lib/jbosssx-sources.jar"/>
 	<classpathentry combineaccessrules="false" kind="src" path="/main"/>
 	<classpathentry kind="lib" path="/thirdparty/jboss/metadata/lib/jboss-metadata.jar" sourcepath="/thirdparty/jboss/metadata/lib/jboss-metadata-sources.jar"/>
+	<classpathentry kind="lib" path="/thirdparty/jboss/jboss-ejb3-ext-api/lib/jboss-ejb3-ext-api.jar"/>
 	<classpathentry kind="output" path="output/eclipse-classes"/>
 </classpath>

Modified: trunk/testsuite/build.xml
===================================================================
--- trunk/testsuite/build.xml	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/testsuite/build.xml	2007-11-14 04:02:03 UTC (rev 67057)
@@ -125,6 +125,7 @@
       <path refid="jboss.jaxr.classpath"/>
       <path refid="jboss.remoting.classpath"/>
       <path refid="jboss.serialization.classpath"/>
+      <path refid="jboss.jboss.ejb3.ext.api.classpath" />
       <path refid="jboss.jbossws.classpath"/>
       <path refid="jboss.jbossxb.classpath"/>
       <path refid="jboss.metadata.classpath"/>

Modified: trunk/testsuite/src/main/org/jboss/test/classloader/leak/ejb3/ThreadLocalPoolEjb3StatelessSessionBean.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/classloader/leak/ejb3/ThreadLocalPoolEjb3StatelessSessionBean.java	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/testsuite/src/main/org/jboss/test/classloader/leak/ejb3/ThreadLocalPoolEjb3StatelessSessionBean.java	2007-11-14 04:02:03 UTC (rev 67057)
@@ -36,8 +36,7 @@
  * @author Brian Stansberry
  */
 @Stateless(name="ThreadLocalPoolEjb3StatelessSession")
-// TODO: value should be index into configured pool names
- at Pool(value="org.jboss.ejb3.ThreadlocalPool")
+ at Pool(value="ThreadlocalPool")
 @RemoteBinding(jndiBinding="ThreadLocalPoolEjb3StatelessSession/remote")
 @TransactionAttribute(value=TransactionAttributeType.REQUIRED)
 public class ThreadLocalPoolEjb3StatelessSessionBean implements Ejb3StatelessSession

Modified: trunk/webservices/.classpath
===================================================================
--- trunk/webservices/.classpath	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/webservices/.classpath	2007-11-14 04:02:03 UTC (rev 67057)
@@ -38,5 +38,6 @@
 	<classpathentry kind="lib" path="/thirdparty/jboss/metadata/lib/jboss-metadata.jar" sourcepath="/thirdparty/jboss/metadata/lib/jboss-metadata-sources.jar"/>
 	<classpathentry kind="lib" path="/thirdparty/sun-jaxb/lib/jaxb-api.jar"/>
 	<classpathentry kind="lib" path="/thirdparty/jboss/jbossws-framework/lib/jbossws-framework.jar" sourcepath="/thirdparty/jboss/jbossws-framework/lib/jbossws-framework-src.zip"/>
+	<classpathentry kind="lib" path="/thirdparty/jboss/jboss-ejb3-ext-api/lib/jboss-ejb3-ext-api.jar"/>
 	<classpathentry kind="output" path="output/eclipse-classes"/>
 </classpath>

Modified: trunk/webservices/build.xml
===================================================================
--- trunk/webservices/build.xml	2007-11-14 03:54:09 UTC (rev 67056)
+++ trunk/webservices/build.xml	2007-11-14 04:02:03 UTC (rev 67057)
@@ -72,6 +72,7 @@
       <path refid="jboss.aop.classpath"/>
       <path refid="jboss.common.core.classpath"/>
       <path refid="jboss.common.logging.spi.classpath"/>
+      <path refid="jboss.jboss.ejb3.ext.api.classpath" />   
       <path refid="jboss.jboss.javaee.classpath"/>
       <path refid="jboss.jboss.security.spi.classpath"/>
       <path refid="jboss.jboss.vfs.classpath"/>




More information about the jboss-cvs-commits mailing list