[jboss-cvs] JBossAS SVN: r66145 - in trunk/ejb3: src/test/org/jboss/ejb3/test/ejbthree1058 and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Oct 15 20:27:03 EDT 2007


Author: ALRubinger
Date: 2007-10-15 20:27:03 -0400 (Mon, 15 Oct 2007)
New Revision: 66145

Removed:
   trunk/ejb3/src/test/org/jboss/ejb3/test/ejbthree1058/StatefulRemote.java
   trunk/ejb3/src/test/org/jboss/ejb3/test/ejbthree1058/StatefulRemoteBean.java
   trunk/ejb3/src/test/org/jboss/ejb3/test/ejbthree1058/unit/
Modified:
   trunk/ejb3/build-test.xml
Log:
EJBTHREE-1058: Removed Unit Tests as this issue is resolved as "Rejected"

Modified: trunk/ejb3/build-test.xml
===================================================================
--- trunk/ejb3/build-test.xml	2007-10-15 22:48:29 UTC (rev 66144)
+++ trunk/ejb3/build-test.xml	2007-10-16 00:27:03 UTC (rev 66145)
@@ -2147,10 +2147,6 @@
       depends="compile-classes">	      
       <build-simple-jar name="ejbthree1040"/>
    </target>
-	
-   <target name="ejbthree1058" depends="compile-classes">
-      <build-simple-jar name="ejbthree1058"/>
-   </target>
    
    <target name="ejbthree1060" depends="compile-classes">
       <build-simple-jar name="ejbthree1060"/>
@@ -3694,7 +3690,7 @@
       ejbthree832, ejbthree921, ejbthree936,
       ejbthree939,
       ejbthree953, ejbthree957, ejbthree959, ejbthree963, ejbthree967, ejbthree971, ejbthree973, ejbthree985, ejbthree986,
-      ejbthree989, ejbthree1020, ejbthree1023, ejbthree1025, ejbthree1040, ejbthree1058,
+      ejbthree989, ejbthree1020, ejbthree1023, ejbthree1025, ejbthree1040,
       ejbthree1060,
       ejbthree1062,
       ejbthree1066,
@@ -4648,9 +4644,6 @@
          <param name="test" value="ejbthree1040"/>
       </antcall>
       <antcall target="test" inheritRefs="true">
-         <param name="test" value="ejbthree1058"/>
-      </antcall>
-      <antcall target="test" inheritRefs="true">
          <param name="test" value="ejbthree1060"/>
       </antcall>
       <antcall target="test" inheritRefs="true">

Deleted: trunk/ejb3/src/test/org/jboss/ejb3/test/ejbthree1058/StatefulRemote.java
===================================================================
--- trunk/ejb3/src/test/org/jboss/ejb3/test/ejbthree1058/StatefulRemote.java	2007-10-15 22:48:29 UTC (rev 66144)
+++ trunk/ejb3/src/test/org/jboss/ejb3/test/ejbthree1058/StatefulRemote.java	2007-10-16 00:27:03 UTC (rev 66145)
@@ -1,24 +0,0 @@
-/*
- * JBoss, the OpenSource J2EE webOS
- * 
- * Distributable under LGPL license.
- * See terms of license at gnu.org.
- */
-package org.jboss.ejb3.test.ejbthree1058;
-
-import javax.ejb.EJBObject;
-
-/**
- * A StatefulRemote.
- * 
- * @author <a href="andrew.rubinger at redhat.com">ALR</a>
- * @version $Revision:  $
- */
-public interface StatefulRemote extends EJBObject
-{
-   public static final String JNDI_NAME_REMOTE = "StatefulBean/remote";
-
-   public static String TEST_STRING = "Test";
-
-   String test();
-}

Deleted: trunk/ejb3/src/test/org/jboss/ejb3/test/ejbthree1058/StatefulRemoteBean.java
===================================================================
--- trunk/ejb3/src/test/org/jboss/ejb3/test/ejbthree1058/StatefulRemoteBean.java	2007-10-15 22:48:29 UTC (rev 66144)
+++ trunk/ejb3/src/test/org/jboss/ejb3/test/ejbthree1058/StatefulRemoteBean.java	2007-10-16 00:27:03 UTC (rev 66145)
@@ -1,30 +0,0 @@
-/*
- * JBoss, the OpenSource J2EE webOS
- * 
- * Distributable under LGPL license.
- * See terms of license at gnu.org.
- */
-package org.jboss.ejb3.test.ejbthree1058;
-
-import javax.ejb.Remote;
-import javax.ejb.Stateful;
-
-import org.jboss.annotation.ejb.RemoteBinding;
-
-/**
- * A StatefulRemoteBean.
- * 
- * @author <a href="andrew.rubinger at redhat.com">ALR</a>
- * @version $Revision:  $
- */
- at Stateful
- at Remote(StatefulRemote.class)
- at RemoteBinding(jndiBinding = StatefulRemote.JNDI_NAME_REMOTE)
-public class StatefulRemoteBean
-{
-   // Required Implementations
-   public String test()
-   {
-      return StatefulRemote.TEST_STRING;
-   }
-}




More information about the jboss-cvs-commits mailing list