
| 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.
|
|
|
AppFuse
Created: 23/May/07 04:55 PM
Updated: 23/May/07 05:51 PM
|
|
| Component/s: |
Tools - AMP
|
| Affects Version/s: |
2.0-M5
|
| Fix Version/s: |
2.0-M5
|
|
|
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 » |
|