← Back to team overview

dhis2-devs team mailing list archive

[Branch ~dhis2-devs-core/dhis2/trunk] Rev 16029: Renamed class in order to follow naming conventions

 

------------------------------------------------------------
revno: 16029
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Tue 2014-07-08 18:56:38 +0200
message:
  Renamed class in order to follow naming conventions
renamed:
  dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/controller/PDFFormController.java => dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/controller/PdfFormController.java
modified:
  dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/controller/PdfFormController.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
=== renamed file 'dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/controller/PDFFormController.java' => 'dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/controller/PdfFormController.java'
--- dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/controller/PDFFormController.java	2014-07-08 16:35:33 +0000
+++ dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/controller/PdfFormController.java	2014-07-08 16:56:38 +0000
@@ -73,9 +73,9 @@
  */
 @Controller
 @RequestMapping(value = "/pdfForm")
-public class PDFFormController
+public class PdfFormController
 {
-    private static final Log log = LogFactory.getLog( PDFFormController.class );
+    private static final Log log = LogFactory.getLog( PdfFormController.class );
 
     // -------------------------------------------------------------------------
     // Dependencies
@@ -222,7 +222,7 @@
 
     @RequestMapping( value = "/programStage", method = RequestMethod.POST )
     @PreAuthorize("hasRole('ALL') or hasRole('F_PATIENT_DATAVALUE_ADD')")
-    public void sendFormPDF_ProgramStage( HttpServletRequest request, HttpServletResponse response )
+    public void sendFormPdfProgramStage( HttpServletRequest request, HttpServletResponse response )
         throws Exception
     {
         InputStream in = request.getInputStream();