
| Key: |
APF-768
|
| Type: |
Bug
|
| Status: |
Resolved
|
| Resolution: |
Fixed
|
| Priority: |
Major
|
| Assignee: |
Matt Raible
|
| Reporter: |
Travis D
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
Environment:
|
JSF basic archetype
|
|
|
Only the first letter of the entity name should be made lower case.
For example entity "ModelObject"
In ModelObjectListTest:
GenericManager<ModelObject, Long> modelobjectManager =
(GenericManager<ModelObject, Long>) applicationContext.getBean("modelobjectManager");
Should be:
GenericManager<ModelObject, Long> modelObjectManager =
(GenericManager<ModelObject, Long>) applicationContext.getBean("modelObjectManager");
|
|
Description
|
Only the first letter of the entity name should be made lower case.
For example entity "ModelObject"
In ModelObjectListTest:
GenericManager<ModelObject, Long> modelobjectManager =
(GenericManager<ModelObject, Long>) applicationContext.getBean("modelobjectManager");
Should be:
GenericManager<ModelObject, Long> modelObjectManager =
(GenericManager<ModelObject, Long>) applicationContext.getBean("modelObjectManager");
|
Show » |
Sort Order:
|