]
Antonio Goncalves updated FORGE-2325:
-------------------------------------
Status: Pull Request Sent (was: Open)
Git Pull Request:
JSF converter and validator should be under the view package
------------------------------------------------------------
Key: FORGE-2325
URL:
https://issues.jboss.org/browse/FORGE-2325
Project: Forge
Issue Type: Sub-task
Components: Java EE
Affects Versions: 2.16.0.Final
Reporter: Antonio Goncalves
Assignee: Antonio Goncalves
Fix For: 2.x Future
If you type the following commands :
{code}
faces-new-bean --named MyBean
faces-new-converter --named MyConverter
faces-new-validator --named MyValidator
{code}
You get :
{code}
org.test.view
MyBean
org.test.validator
MyValidator
org.test.converter
MyConverter
{code}
By default it should be
{code}
org.test.view
MyBean
org.test.view.validator
MyValidator
org.test.view.converter
MyConverter
{code}