[jboss-cvs] JBossAS SVN: r68796 - in projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3: stateful and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jan 10 01:49:39 EST 2008


Author: ALRubinger
Date: 2008-01-10 01:49:39 -0500 (Thu, 10 Jan 2008)
New Revision: 68796

Modified:
   projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/Ejb3DescriptorHandler.java
   projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/ProxyFactoryHelper.java
   projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/stateful/StatefulRemoveFactory.java
   projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/tx/TxUtil.java
Log:
Resolved compile errors introduced by the move of Annotation Impls to ejb3-impl

Modified: projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/Ejb3DescriptorHandler.java
===================================================================
--- projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/Ejb3DescriptorHandler.java	2008-01-10 06:45:50 UTC (rev 68795)
+++ projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/Ejb3DescriptorHandler.java	2008-01-10 06:49:39 UTC (rev 68796)
@@ -60,27 +60,6 @@
 import javax.interceptor.Interceptors;
 
 import org.jboss.aop.annotation.AnnotationRepository;
-import org.jboss.ejb.ActivationConfigPropertyImpl;
-import org.jboss.ejb.AroundInvokeImpl;
-import org.jboss.ejb.DeclareRolesImpl;
-import org.jboss.ejb.DenyAllImpl;
-import org.jboss.ejb.InitImpl;
-import org.jboss.ejb.InterceptorsImpl;
-import org.jboss.ejb.LocalImpl;
-import org.jboss.ejb.MessageDrivenImpl;
-import org.jboss.ejb.PermitAllImpl;
-import org.jboss.ejb.PostActivateImpl;
-import org.jboss.ejb.PostConstructImpl;
-import org.jboss.ejb.PreDestroyImpl;
-import org.jboss.ejb.PrePassivateImpl;
-import org.jboss.ejb.RemoteImpl;
-import org.jboss.ejb.RemoveImpl;
-import org.jboss.ejb.ResourceImpl;
-import org.jboss.ejb.RolesAllowedImpl;
-import org.jboss.ejb.RunAsImpl;
-import org.jboss.ejb.StatelessImpl;
-import org.jboss.ejb.TransactionAttributeImpl;
-import org.jboss.ejb.TransactionManagementImpl;
 import org.jboss.ejb3.annotation.Cache;
 import org.jboss.ejb3.annotation.Clustered;
 import org.jboss.ejb3.annotation.Consumer;
@@ -106,34 +85,55 @@
 import org.jboss.ejb3.annotation.Service;
 import org.jboss.ejb3.annotation.TransactionTimeout;
 import org.jboss.ejb3.annotation.defaults.PoolDefaults;
+import org.jboss.ejb3.annotation.impl.ActivationConfigPropertyImpl;
+import org.jboss.ejb3.annotation.impl.AroundInvokeImpl;
 import org.jboss.ejb3.annotation.impl.CacheImpl;
 import org.jboss.ejb3.annotation.impl.ClusteredImpl;
 import org.jboss.ejb3.annotation.impl.ConsumerImpl;
 import org.jboss.ejb3.annotation.impl.CurrentMessageImpl;
+import org.jboss.ejb3.annotation.impl.DeclareRolesImpl;
 import org.jboss.ejb3.annotation.impl.DefaultActivationSpecsImpl;
 import org.jboss.ejb3.annotation.impl.DefaultInterceptorMarkerImpl;
+import org.jboss.ejb3.annotation.impl.DenyAllImpl;
 import org.jboss.ejb3.annotation.impl.DependsImpl;
 import org.jboss.ejb3.annotation.impl.ExcludeClassInterceptorsImpl;
 import org.jboss.ejb3.annotation.impl.ExcludeDefaultInterceptorsImpl;
 import org.jboss.ejb3.annotation.impl.IgnoreDependencyImpl;
+import org.jboss.ejb3.annotation.impl.InitImpl;
+import org.jboss.ejb3.annotation.impl.InterceptorsImpl;
 import org.jboss.ejb3.annotation.impl.LocalBindingImpl;
 import org.jboss.ejb3.annotation.impl.LocalHomeBindingImpl;
 import org.jboss.ejb3.annotation.impl.LocalHomeImpl;
+import org.jboss.ejb3.annotation.impl.LocalImpl;
 import org.jboss.ejb3.annotation.impl.ManagementImpl;
+import org.jboss.ejb3.annotation.impl.MessageDrivenImpl;
 import org.jboss.ejb3.annotation.impl.MessagePropertiesImpl;
+import org.jboss.ejb3.annotation.impl.PermitAllImpl;
 import org.jboss.ejb3.annotation.impl.PersistenceManagerImpl;
 import org.jboss.ejb3.annotation.impl.PoolImpl;
+import org.jboss.ejb3.annotation.impl.PostActivateImpl;
+import org.jboss.ejb3.annotation.impl.PostConstructImpl;
+import org.jboss.ejb3.annotation.impl.PreDestroyImpl;
+import org.jboss.ejb3.annotation.impl.PrePassivateImpl;
 import org.jboss.ejb3.annotation.impl.ProducerImpl;
 import org.jboss.ejb3.annotation.impl.ProducersImpl;
 import org.jboss.ejb3.annotation.impl.RemoteBindingImpl;
 import org.jboss.ejb3.annotation.impl.RemoteBindingsImpl;
 import org.jboss.ejb3.annotation.impl.RemoteHomeBindingImpl;
 import org.jboss.ejb3.annotation.impl.RemoteHomeImpl;
+import org.jboss.ejb3.annotation.impl.RemoteImpl;
+import org.jboss.ejb3.annotation.impl.RemoveImpl;
 import org.jboss.ejb3.annotation.impl.ResourceAdapterImpl;
+import org.jboss.ejb3.annotation.impl.ResourceImpl;
+import org.jboss.ejb3.annotation.impl.RolesAllowedImpl;
+import org.jboss.ejb3.annotation.impl.RunAsImpl;
 import org.jboss.ejb3.annotation.impl.RunAsPrincipalImpl;
 import org.jboss.ejb3.annotation.impl.SecurityDomainImpl;
 import org.jboss.ejb3.annotation.impl.SerializedConcurrentAccessImpl;
 import org.jboss.ejb3.annotation.impl.ServiceImpl;
+import org.jboss.ejb3.annotation.impl.StatelessImpl;
+import org.jboss.ejb3.annotation.impl.TransactionAttributeImpl;
+import org.jboss.ejb3.annotation.impl.TransactionManagementImpl;
 import org.jboss.ejb3.annotation.impl.TransactionTimeoutImpl;
 import org.jboss.ejb3.interceptor.InterceptorInfoRepository;
 import org.jboss.ejb3.lang.ClassHelper;
@@ -141,7 +141,6 @@
 import org.jboss.ejb3.mdb.MDB;
 import org.jboss.ejb3.service.ServiceContainer;
 import org.jboss.ejb3.stateful.StatefulContainer;
-import org.jboss.ha.client.loadbalance.LoadBalancePolicy;
 import org.jboss.logging.Logger;
 import org.jboss.metadata.ejb.jboss.CacheConfigMetaData;
 import org.jboss.metadata.ejb.jboss.ClusterConfigMetaData;

Modified: projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/ProxyFactoryHelper.java
===================================================================
--- projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/ProxyFactoryHelper.java	2008-01-10 06:45:50 UTC (rev 68795)
+++ projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/ProxyFactoryHelper.java	2008-01-10 06:49:39 UTC (rev 68796)
@@ -39,14 +39,14 @@
 import javax.management.ObjectName;
 
 import org.jboss.aop.Advisor;
-import org.jboss.ejb.LocalImpl;
-import org.jboss.ejb.RemoteImpl;
 import org.jboss.ejb3.annotation.JndiBindingPolicy;
 import org.jboss.ejb3.annotation.LocalBinding;
 import org.jboss.ejb3.annotation.LocalHomeBinding;
 import org.jboss.ejb3.annotation.RemoteBinding;
 import org.jboss.ejb3.annotation.RemoteBindings;
 import org.jboss.ejb3.annotation.RemoteHomeBinding;
+import org.jboss.ejb3.annotation.impl.LocalImpl;
+import org.jboss.ejb3.annotation.impl.RemoteImpl;
 import org.jboss.ejb3.jndipolicy.DefaultJndiBindingPolicy;
 import org.jboss.ejb3.jndipolicy.Ejb3DeploymentSummary;
 import org.jboss.ejb3.jndipolicy.impl.PackagingBasedJndiBindingPolicy;

Modified: projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/stateful/StatefulRemoveFactory.java
===================================================================
--- projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/stateful/StatefulRemoveFactory.java	2008-01-10 06:45:50 UTC (rev 68795)
+++ projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/stateful/StatefulRemoveFactory.java	2008-01-10 06:49:39 UTC (rev 68796)
@@ -24,12 +24,13 @@
 import java.lang.reflect.Method;
 
 import javax.ejb.Remove;
+
 import org.jboss.aop.Advisor;
 import org.jboss.aop.InstanceAdvisor;
 import org.jboss.aop.advice.AspectFactory;
 import org.jboss.aop.joinpoint.Joinpoint;
 import org.jboss.aop.joinpoint.MethodJoinpoint;
-import org.jboss.ejb.RemoveImpl;
+import org.jboss.ejb3.annotation.impl.RemoveImpl;
 import org.jboss.logging.Logger;
 
 /**

Modified: projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/tx/TxUtil.java
===================================================================
--- projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/tx/TxUtil.java	2008-01-10 06:45:50 UTC (rev 68795)
+++ projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/tx/TxUtil.java	2008-01-10 06:49:39 UTC (rev 68796)
@@ -31,9 +31,9 @@
 import org.jboss.aop.Advisor;
 import org.jboss.aop.joinpoint.Invocation;
 import org.jboss.aop.joinpoint.MethodInvocation;
-import org.jboss.ejb.ApplicationExceptionImpl;
 import org.jboss.ejb3.EJBContainer;
 import org.jboss.ejb3.InitialContextFactory;
+import org.jboss.ejb3.annotation.impl.ApplicationExceptionImpl;
 import org.jboss.metadata.ejb.jboss.JBossAssemblyDescriptorMetaData;
 import org.jboss.metadata.ejb.spec.ApplicationExceptionMetaData;
 import org.jboss.metadata.ejb.spec.ApplicationExceptionsMetaData;




More information about the jboss-cvs-commits mailing list