public String saveOrUpdate()

in wildcard-method-selection/src/main/java/org/apache/struts/tutorials/wildcardmethod/action/PersonAction.java [50:60]


    public String saveOrUpdate() {
        log.debug("In saveOrUpdate method");
        if (person.getId() > -1) {
            personService.update(person);
        } else {
            personService.save(person);
        }

        personList = PersonService.getPersons();
        return SUCCESS;
    }