* Generates transaction management annotations for an Enterprise Bean
* @param bean The enterprise bean to generate annotations for
* @param descriptor The assembly descriptor
*/
public void processTransactionManagement(EnterpriseBean bean, AssemblyDescriptor descriptor) {
TransactionType transactionType = bean.getTransactionType();
if (transactionType != null && (! TransactionType.CONTAINER.equals(transactionType))) {
Map<String,Object> props = new HashMap<String, Object>();
props.put("value", TransactionManagementType.BEAN); //$NON-NLS-1$