}
public Roles getUserRoles(String id, String userId)
{
StoredProject storedProject = (StoredProject)cache.get(projectCacheId(id));
Set<String> roleMapping = storedProject.roleMapping(userId);
Roles roles = new Roles();
if (roleMapping == null)
{
return roles;
} else