package org.glassfish.test.jms.injection.ejb; import javax.annotation.Resource; import javax.ejb.*; import javax.inject.Inject; import javax.jms.*; import org.glassfish.test.jms.injection.ejb.SessionBeanInjection2; /** * * @author JIGWANG */ @Stateless(mappedName="SessionBeanInjection1/remote1") @TransactionManagement(TransactionManagementType.CONTAINER) public class SessionBeanInjection1 implements SessionBeanInjectionRemote1 { private static String transactionScope = "around TransactionScoped"; private static String preIdentical = "fingerPrint"; @EJB SessionBeanInjectionRemote2 bean2; @TransactionAttribute(TransactionAttributeType.REQUIRED) public Boolean sendMessage(String text) { String context1 = bean2.sendMessage1(text); String context2 = bean2.sendMessage2(text); return checkTransactionScope(context1, context2); } public Boolean checkTransactionScope(String context1, String context2){ if (context1.indexOf(transactionScope) != -1){ System.out.println("The context variables used in the first call are in transaction scope."); }else{ System.out.println("The context variables used in the first call are NOT in transaction scope."); return false; } if (context2.indexOf(transactionScope) != -1){ System.out.println("The context variables used in the second call are in transaction scope."); }else{ System.out.println("The context variables used in the second call are NOT in transaction scope."); return false; } String context1Annotation = context1.substring(context1.indexOf(preIdentical),context1.indexOf(transactionScope)); String context2Annotation = context2.substring(context2.indexOf(preIdentical),context2.indexOf(transactionScope)); if(context1Annotation.equals(context2Annotation)) { System.out.println("The context variables in the first and second calls to context.send() injected are using identical annotations."); }else{ System.out.println("The context variables in the first and second calls to context.send() injected are not using identical annotations."); return false; } if (context1.substring(context1.indexOf(transactionScope)).equals(context2.substring(context2.indexOf(transactionScope)))){ System.out.println("The context variables used in the first and second calls to context.send() take place in the same transaction."); }else{ System.out.println("The context variables used in the first and second calls to context.send() take place in the different transaction."); return false; } return true; } }