Package org.kurron.foundation.spring.example.model

Examples of org.kurron.foundation.spring.example.model.Person


    }

    @Override
    public Iterable<Person> getPerson() throws EchoPortError
    {
        final Person person = new Person();
        person.setFirstName( "Devan" );
        person.setLastName( "Kurr" );
        theRepository.save( person );
        return theRepository.findAll();
    }
View Full Code Here

TOP

Related Classes of org.kurron.foundation.spring.example.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.