Long userId = RandomUtils.nextLong(0,Long.MAX_VALUE);
Long originalAuthorId = RandomUtils.nextLong(0,Long.MAX_VALUE);
UUID tweetId = UUIDGen.getTimeUUID();
Date creationDate = new Date();
ClusteredTweetId id = new ClusteredTweetId(userId, tweetId, creationDate);
ClusteredTweetEntity tweet = new ClusteredTweetEntity(id, "this is a tweet", userId, false);
tweet = manager.insert(tweet);