dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #19818
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 8801: fixed filter bug
------------------------------------------------------------
revno: 8801
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Wed 2012-10-31 19:08:31 +0100
message:
fixed filter bug
modified:
dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/controller/user/CurrentUserController.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/controller/user/CurrentUserController.java'
--- dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/controller/user/CurrentUserController.java 2012-10-30 11:56:01 +0000
+++ dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/controller/user/CurrentUserController.java 2012-10-31 18:08:31 +0000
@@ -27,14 +27,6 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-import java.io.IOException;
-import java.util.ArrayList;
-import java.util.HashSet;
-import java.util.Set;
-
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-
import org.apache.commons.collections.CollectionUtils;
import org.hisp.dhis.api.utils.ContextUtils;
import org.hisp.dhis.api.utils.ContextUtils.CacheStrategy;
@@ -54,17 +46,20 @@
import org.hisp.dhis.message.MessageService;
import org.hisp.dhis.organisationunit.OrganisationUnit;
import org.hisp.dhis.organisationunit.OrganisationUnitService;
-import org.hisp.dhis.user.CurrentUserService;
-import org.hisp.dhis.user.User;
-import org.hisp.dhis.user.UserGroup;
-import org.hisp.dhis.user.UserGroupService;
-import org.hisp.dhis.user.UserService;
+import org.hisp.dhis.user.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.Set;
+
/**
* @author Morten Olav Hansen <mortenoh@xxxxxxxxx>
*/
@@ -73,6 +68,7 @@
public class CurrentUserController
{
public static final String RESOURCE_PATH = "/currentUser";
+
private static final int MAX_OBJECTS = 50;
@Autowired
@@ -92,7 +88,7 @@
@Autowired
private OrganisationUnitService organisationUnitService;
-
+
@Autowired
private ContextUtils contextUtils;
@@ -213,7 +209,7 @@
User currentUser = currentUserService.getCurrentUser();
contextUtils.configureResponse( response, ContextUtils.CONTENT_TYPE_JSON, CacheStrategy.CACHE_1_HOUR );
-
+
if ( currentUser == null )
{
ContextUtils.notFoundResponse( response, "User object is null, user is not authenticated." );
@@ -229,7 +225,7 @@
JacksonUtils.toJson( response.getOutputStream(), recipients );
}
- @SuppressWarnings("unchecked")
+ @SuppressWarnings( "unchecked" )
@RequestMapping( value = "/forms", produces = {"application/json", "text/*"} )
public void getForms( HttpServletResponse response ) throws IOException
{
@@ -261,7 +257,7 @@
if ( childDataSets.size() > 0 )
{
- organisationUnits.add( ou );
+ organisationUnits.add( child );
}
}
}