Package com.codetutr.domain

Examples of com.codetutr.domain.Person


  String[] names = {"Nikolaus Otto", "Robert Ford", "Gottlieb Daimler", "Lt. General Masaharu Homma"};

  @Override
  public Person getRandom() {
    Person person = new Person();
    person.setName(randomName());
    person.setAge(randomAge());
    return person;
  }
View Full Code Here


    return person;
  }

  @Override
  public Person getById(Long id) {
    Person person = new Person();
    person.setName(names[id.intValue()]);
    person.setAge(50);
    return person;
  }
View Full Code Here

TOP

Related Classes of com.codetutr.domain.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.