Author: aheritier
Date: Wed Nov 21 23:31:12 2007
New Revision: 597317

URL: http://svn.apache.org/viewvc?rev=597317&view=rev
Log:
Remove annotations to keep the compatibility with java 1.4

Modified:
    
maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-36/my-ejb/src/main/java/example/HelloBean.java

Modified: 
maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-36/my-ejb/src/main/java/example/HelloBean.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-36/my-ejb/src/main/java/example/HelloBean.java?rev=597317&r1=597316&r2=597317&view=diff
==============================================================================
--- 
maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-36/my-ejb/src/main/java/example/HelloBean.java
 (original)
+++ 
maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-36/my-ejb/src/main/java/example/HelloBean.java
 Wed Nov 21 23:31:12 2007
@@ -1,20 +1,20 @@
 package example;
 
-import javax.ejb.Stateless;
-import javax.ejb.TransactionAttribute;
-import static javax.ejb.TransactionAttributeType.SUPPORTS;
+//import javax.ejb.Stateless;
+//import javax.ejb.TransactionAttribute;
+//import static javax.ejb.TransactionAttributeType.SUPPORTS;
 
 /**
  * Implementation of the Hello bean.
  */
[EMAIL PROTECTED]
+//@Stateless
 public class HelloBean implements Hello {
   private String _greeting = "Default Hello";
   
   /**
    * Returns a hello, world string.
    */
-  @TransactionAttribute(SUPPORTS)
+  //@TransactionAttribute(SUPPORTS)
   public String hello()
   {
     return _greeting;


Reply via email to