------------------------------------------------------------ revno: 12359 committer: Lars Helge Ă˜verland <larshe...@gmail.com> branch nick: dhis2 timestamp: Tue 2013-10-01 12:35:04 +0200 message: Deprecation fix modified: dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/security/spring/SpringSecurityPasswordManager.java dhis-2/dhis-web/dhis-web-api-mobile/src/main/java/org/hisp/dhis/api/mobile/controller/MobileOrganisationUnitController.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-services/dhis-service-core/src/main/java/org/hisp/dhis/security/spring/SpringSecurityPasswordManager.java' --- dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/security/spring/SpringSecurityPasswordManager.java 2013-08-23 16:05:01 +0000 +++ dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/security/spring/SpringSecurityPasswordManager.java 2013-10-01 10:35:04 +0000 @@ -30,7 +30,7 @@ import org.hisp.dhis.security.PasswordManager; import org.hisp.dhis.security.UsernameSaltSource; -import org.springframework.security.authentication.encoding.PasswordEncoder; +import org.springframework.security.authentication.encoding.Md5PasswordEncoder; /** * @author Torgeir Lorange Ostby @@ -43,9 +43,9 @@ // Dependencies // ------------------------------------------------------------------------- - private PasswordEncoder passwordEncoder; + private Md5PasswordEncoder passwordEncoder; - public void setPasswordEncoder( PasswordEncoder passwordEncoder ) + public void setPasswordEncoder( Md5PasswordEncoder passwordEncoder ) { this.passwordEncoder = passwordEncoder; } === modified file 'dhis-2/dhis-web/dhis-web-api-mobile/src/main/java/org/hisp/dhis/api/mobile/controller/MobileOrganisationUnitController.java' --- dhis-2/dhis-web/dhis-web-api-mobile/src/main/java/org/hisp/dhis/api/mobile/controller/MobileOrganisationUnitController.java 2013-09-30 07:50:50 +0000 +++ dhis-2/dhis-web/dhis-web-api-mobile/src/main/java/org/hisp/dhis/api/mobile/controller/MobileOrganisationUnitController.java 2013-10-01 10:35:04 +0000 @@ -397,7 +397,6 @@ @RequestMapping( method = RequestMethod.GET, value = "{clientVersion}/LWUIT/orgUnits/{id}/findLostToFollowUp" ) @ResponseBody public String findLostToFollowUp( @PathVariable int id, @RequestHeader( "programId" ) String programId ) - throws NotAllowedException { return ""; }
_______________________________________________ Mailing list: https://launchpad.net/~dhis2-devs Post to : dhis2-devs@lists.launchpad.net Unsubscribe : https://launchpad.net/~dhis2-devs More help : https://help.launchpad.net/ListHelp