Package org.apache.rave.portal.model

Examples of org.apache.rave.portal.model.MongoDbUser


        return getPersonListFromAssociations(follower, FriendRequestStatus.SENT);
    }

    @Override
    public int removeAllFriendsAndRequests(String userid) {
        MongoDbUser person = (MongoDbUser) template.get(userid);
        int count = person.getFriends().size();
        person.setFriends(Lists.<MongoDbPersonAssociation>newArrayList());
        save(person);
        return count;
    }
View Full Code Here

TOP

Related Classes of org.apache.rave.portal.model.MongoDbUser

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.