From: SRINIVAS V Date: Mon, 8 Jan 2018 06:37:39 +0000 (+0530) Subject: Fixed as per Java Code Conventions X-Git-Tag: v1.2.0~191 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=policy%2Fengine.git;a=commitdiff_plain;h=f99b843890966768267a05e2f4e237bad7c386f0 Fixed as per Java Code Conventions *Moved the constructors after the variables *Deleted the commented code Change-Id: I6afa9ae5b04fe5c8280fc9e08352aef699117567 Issue-ID: POLICY-336 Signed-off-by: SRINIVAS V --- diff --git a/POLICY-SDK-APP/src/main/java/org/onap/policy/admin/PolicyRestController.java b/POLICY-SDK-APP/src/main/java/org/onap/policy/admin/PolicyRestController.java index f38f3e266..64b88134b 100644 --- a/POLICY-SDK-APP/src/main/java/org/onap/policy/admin/PolicyRestController.java +++ b/POLICY-SDK-APP/src/main/java/org/onap/policy/admin/PolicyRestController.java @@ -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 +} diff --git a/PolicyEngineClient/src/test/java/org/onap/policyengine/ConfigBasePolicyClient.java b/PolicyEngineClient/src/test/java/org/onap/policyengine/ConfigBasePolicyClient.java index b8dfdc1f6..cfcc1460b 100644 --- a/PolicyEngineClient/src/test/java/org/onap/policyengine/ConfigBasePolicyClient.java +++ b/PolicyEngineClient/src/test/java/org/onap/policyengine/ConfigBasePolicyClient.java @@ -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 configAttributes = new HashMap<>(); configAttributes.put("Template", "SampleTemplate");