CreateActions |
|
Your trail: |
Difference between
version 60
and
version 59:
At line 103 changed 1 line. |
assertTrue(request.getAttribute(Constants.PERSON_KEY) != null); |
assertNotNull(request.getAttribute(Constants.PERSON_KEY)); |
At line 116 changed 1 line. |
assertTrue(personForm != null); |
assertNotNull(personForm); |
At line 200 changed 1 line. |
personForm.getFirstName() + " " + |
personForm.getFirstName() + ' ' + |
At line 223 changed 1 line. |
request.setAttribute(Constants.PERSON_KEY, convert(person)); |
personForm = (PersonForm) convert(person); |
updateFormBean(request, mapping, personForm); |
At line 247 changed 1 line. |
mgr.savePerson(convert(personForm)); |
Person person = (Person) convert(personForm); |
mgr.savePerson(person); |
At line 255 changed 1 line. |
request.getSession().setAttribute(Globals.MESSAGE_KEY, messages); |
// save messages in session to survive a redirect |
saveMessages(request.getSession(), messages); |
At line 290 added 1 line. |
* |
Back to CreateActions,
or to the Page History.
|