Fixed as per Java Code Conventions 11/27611/2
authorSRINIVAS V <srinivasa.mohan@huawei.com>
Mon, 8 Jan 2018 06:37:39 +0000 (12:07 +0530)
committerSRINIVAS V <srinivasa.mohan@huawei.com>
Mon, 8 Jan 2018 06:40:03 +0000 (06:40 +0000)
*Moved the constructors after the variables
*Deleted the commented code

Change-Id: I6afa9ae5b04fe5c8280fc9e08352aef699117567
Issue-ID: POLICY-336
Signed-off-by: SRINIVAS V <srinivasa.mohan@huawei.com>
POLICY-SDK-APP/src/main/java/org/onap/policy/admin/PolicyRestController.java
PolicyEngineClient/src/test/java/org/onap/policyengine/ConfigBasePolicyClient.java

index f38f3e2..64b8813 100644 (file)
@@ -84,23 +84,25 @@ public class PolicyRestController extends RestrictedBaseController{
        
        private static CommonClassDao commonClassDao;
        
-       public static CommonClassDao getCommonClassDao() {
-               return commonClassDao;
+       public PolicyRestController(){
+               //default constructor
        }
 
-       public static void setCommonClassDao(CommonClassDao commonClassDao) {
-               PolicyRestController.commonClassDao = commonClassDao;
-       }
-       
        @Autowired
        private PolicyRestController(CommonClassDao commonClassDao){
                PolicyRestController.commonClassDao = commonClassDao;
        }
        
-       public PolicyRestController(){
-               //default constructor
+       public static CommonClassDao getCommonClassDao() {
+               return commonClassDao;
        }
 
+       public static void setCommonClassDao(CommonClassDao commonClassDao) {
+               PolicyRestController.commonClassDao = commonClassDao;
+       }
+       
+
+
        @RequestMapping(value={"/policycreation/save_policy"}, method={RequestMethod.POST})
        public void policyCreationController(HttpServletRequest request, HttpServletResponse response) {
                String userId = UserUtils.getUserSession(request).getOrgUserId();
@@ -492,4 +494,4 @@ public class PolicyRestController extends RestrictedBaseController{
                callPAP(null, "POST", uri.trim());
        }
 
-}
\ No newline at end of file
+}
index b8dfdc1..cfcc146 100644 (file)
@@ -1,4 +1,4 @@
-/*-
+    /*-
  * ============LICENSE_START=======================================================
  * PolicyEngineClient
  * ================================================================================
@@ -47,8 +47,7 @@ public class ConfigBasePolicyClient{
             policyParameters.setConfigName("testBase"); //required
             policyParameters.setConfigBodyType(PolicyType.OTHER); //required
             policyParameters.setConfigBody("testing");  //required
-            //policyParameters.setPolicyScope("MikeConsole"); //Directory will be created where the Policies are saved... this displays a a subscope on the GUI
-            
+                        
             //Set the Config Attributes... These are Optional
             Map<String, String> configAttributes = new HashMap<>(); 
             configAttributes.put("Template", "SampleTemplate");