protected ApplicationBean1 getApplicationBean1() {
return (ApplicationBean1)getBean("ApplicationBean1");
}
public String hyperlinkCreateVolunteer_action() {
Person person = getSessionBean1().getPerson();
// if Person, create an instance of Volunteer
if (person instanceof Volunteer) {
return null;
} else {
getSessionBean1().setVolunteer(new Volunteer((Person) person));