Package org.spw.model

Examples of org.spw.model.Person


    }
   
    public String buttonValidate_action() {
        // Persist the new object
        PersonController ctrl = new PersonController();
        Person object = getSessionBean1().getPerson();
        ctrl.update(object);
       
        return "success";
    }
View Full Code Here


       
        return "success";
    }
   
    public String buttonCancel_action() {
        Person object = getSessionBean1().getPerson();
        //cancel of new creation, return to list
        if (object == null || object.getIdContact() == null) {
            return "cancel";
        } else {//return to info
            return "success";
        }
    }
View Full Code Here

TOP

Related Classes of org.spw.model.Person

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.