Examples of SocialGroup


Examples of com.ifyouwannabecool.domain.link.SocialGroup

*/
@Path ("/group")
public class SocialGroupServiceImpl implements SocialGroupService {

  public SocialGroup createSocialGroup(String groupLeader, Collection<String> memberIds, boolean exclusive) {
    SocialGroup socialGroup = new SocialGroup();

    //store the social group...
    return socialGroup;
  }
View Full Code Here

Examples of com.ifyouwannabecool.domain.link.SocialGroup

    //add the persona to the social group, throw the exception as necessary.
    return true;
  }

  public SocialGroup readGroup(String groupId) {
    SocialGroup group = new SocialGroup();
    group.setId(groupId);
    return group;
  }
View Full Code Here

Examples of com.ifyouwannabecool.domain.link.SocialGroup

)
@Path ("/group")
public class SocialGroupServiceImpl implements SocialGroupService {

  public SocialGroup createSocialGroup(String groupLeader, Collection<String> memberIds, boolean exclusive) {
    SocialGroup socialGroup = new SocialGroup();

    //store the social group...
    return socialGroup;
  }
View Full Code Here

Examples of com.ifyouwannabecool.domain.link.SocialGroup

    //add the persona to the social group, throw the exception as necessary.
    return true;
  }

  public SocialGroup readGroup(String groupId) {
    SocialGroup group = new SocialGroup();
    group.setId(groupId);
    return group;
  }
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.