[forge-issues] [JBoss JIRA] (FORGE-2081) Being able to add a new CDI event producer to an existing class

Antonio Goncalves (JIRA) issues at jboss.org
Mon Oct 20 11:05:35 EDT 2014


     [ https://issues.jboss.org/browse/FORGE-2081?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Antonio Goncalves updated FORGE-2081:
-------------------------------------
    Description: 
It would be useful to have a command to add a new CDI event producer to an existing class. A command such as : 

{code}
cdi-add-event-producer --named firePurchaseOrder --type PurchaseOrder
{code}

Would add to an existing class the following code :

{code}
   @Inject
   private Event<PurchaseOrder> eventPurchaseOrder;

   public void firePurchaseOrder()
   {	  
      PurchaseOrder purchaseOrder = new PurchaseOrder();	  
      event.fire(order);
   }
{code}


  was:
It would be useful to have a command to add a new CDI event producer to an existing class. A command such as : 

{code}
cdi-add-event-producer --named event --type PurchaseOrder
{code}

Would add to an existing class the following code :

{code}
   @Inject
   private Event<PurchaseOrder> event;

   public void firePurchaseOrder()
   {	  
      PurchaseOrder purchaseOrder = new PurchaseOrder();	  
      event.fire(order);
   }
{code}




> Being able to add a new CDI event producer to an existing class
> ---------------------------------------------------------------
>
>                 Key: FORGE-2081
>                 URL: https://issues.jboss.org/browse/FORGE-2081
>             Project: Forge
>          Issue Type: Sub-task
>          Components: Java EE
>    Affects Versions: 2.12.1.Final
>            Reporter: Antonio Goncalves
>             Fix For: 2.x Future
>
>
> It would be useful to have a command to add a new CDI event producer to an existing class. A command such as : 
> {code}
> cdi-add-event-producer --named firePurchaseOrder --type PurchaseOrder
> {code}
> Would add to an existing class the following code :
> {code}
>    @Inject
>    private Event<PurchaseOrder> eventPurchaseOrder;
>    public void firePurchaseOrder()
>    {	  
>       PurchaseOrder purchaseOrder = new PurchaseOrder();	  
>       event.fire(order);
>    }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.1#6329)


More information about the forge-issues mailing list