Though named as a getter, your getter has the interface of a setter. try changing it from:
| public void getAgencyIncidentTypes( Agency selectedAgency )
| {
| this.agencyIncidentTypes = selectedAgency.getAgencyIncidentTypes();
| }
|
to
| public Agency getAgencyIncidentTypes()
| {
| return selectedAgency.getAgencyIncidentTypes();
| }
Keep the faith!
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4090827#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...