Examples of CQLUser


Examples of com.impetus.client.cassandra.thrift.cql.CQLUser

    private List<CQLUser> prepareData(Integer noOfRecords)
    {
        List<CQLUser> persons = new ArrayList<CQLUser>();
        for (int i = 1; i <= noOfRecords; i++)
        {
            CQLUser user = new CQLUser();
            user.setId(i);
            user.setName("Kuldeep");
            user.setAge(24);
            persons.add(user);
        }

        return persons;
    }
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.