Package com.impetus.client.crud.entities

Examples of com.impetus.client.crud.entities.PersonBatchMongoEntity


    private List<PersonBatchMongoEntity> prepareData(Integer noOfRecords)
    {
        List<PersonBatchMongoEntity> persons = new ArrayList<PersonBatchMongoEntity>();
        for (int i = 1; i <= noOfRecords; i++)
        {
            PersonBatchMongoEntity o = new PersonBatchMongoEntity();
            o.setPersonId(i + "");
            o.setPersonName("vivek" + i);
            o.setAge(10);
            persons.add(o);
        }

        return persons;
    }
View Full Code Here

TOP

Related Classes of com.impetus.client.crud.entities.PersonBatchMongoEntity

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.