Package com.impetus.kundera.client.cassandra.composite

Examples of com.impetus.kundera.client.cassandra.composite.UserTimeLine


   
    private Object prepareData(String rowkey, int tweetId)
    {
        UUID timeLineId = UUID.randomUUID();
        Date currentDate = new Date();  
        UserTimeLine key = new UserTimeLine("mevivs"+rowkey, tweetId, timeLineId);
        PrimeUser user = new PrimeUser(key);
        user.setTweetBody("my first tweet");
        user.setTweetDate(currentDate);
        user.setName("vivek");
        return user;
View Full Code Here

TOP

Related Classes of com.impetus.kundera.client.cassandra.composite.UserTimeLine

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.