[DS-436] SWORD Authenticator doesn't support the special groups infrastructure

git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@4637 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Andrea Bollini
2009-12-17 11:47:00 +00:00
parent ad598e34ed
commit 1fec2f71c0
5 changed files with 31 additions and 1 deletions

View File

@@ -195,6 +195,10 @@ public class IPAuthentication implements AuthenticationMethod
public int[] getSpecialGroups(Context context, HttpServletRequest request)
throws SQLException
{
if (request == null)
{
return new int[0];
}
List<Integer> groupIDs = new ArrayList<Integer>();
String addr = request.getRemoteAddr();