/* * 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 uzzal */ public interface UserGroupRolesResource extends WritableResource<Feed> { public List<UserGroupRoleResource> getUserGroupRoleResources(); public UserGroupRoleResource add(Role role); }