Examples of addJob()


Examples of org.springframework.data.mongodb.crossstore.test.Resume.addJob()

    Address address = new Address(12, "MAin St.", "Boston", "MA", "02101");

    Resume resume = new Resume();
    resume.addEducation("Skanstulls High School, 1975");
    resume.addEducation("Univ. of Stockholm, 1980");
    resume.addJob("DiMark, DBA, 1990-2000");
    resume.addJob("VMware, Developer, 2007-");

    final Person person = new Person("Thomas", 20);
    person.setAddress(address);
    person.setResume(resume);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.