/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.smartitengineering.user.client.api; import com.smartitengineering.util.rest.client.WritableResource; import java.util.List; import org.apache.abdera.model.Feed; /** * * @author modhu7 */ public interface UserGroupsResource extends WritableResource<Feed> { public List<UserGroupResource> getUserGroupResources(); public UserGroupResource create(UserGroup userGroup); public UserGroupsResource search(UserGroupFilter filter); }