aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/main/java/org/onap/policy/pap/main/startstop/Main.java
diff options
context:
space:
mode:
authora.sreekumar <ajith.sreekumar@est.tech>2019-07-01 14:50:01 +0000
committera.sreekumar <ajith.sreekumar@est.tech>2019-07-01 14:50:01 +0000
commit9ef4186f69ef694e6251161622a33d7bc1400f39 (patch)
tree054b74bdc1699e85555e65c2341265c6daf2b758 /main/src/main/java/org/onap/policy/pap/main/startstop/Main.java
parentd848416090efd6850ab25011d8518b15525a1bdb (diff)
Remove topic.properties and incorporate into overall config file
1) The properties in the topic.properties file is moved into overall config json file and the topic.properties file is removed. 2) Common parameters such as RestServer and Topic related parameters from policy-common is used. Change-Id: I390bbe3cda101a69e7ce614404ecdfbf98598dd2 Issue-ID: POLICY-1744 Signed-off-by: a.sreekumar <ajith.sreekumar@est.tech>
Diffstat (limited to 'main/src/main/java/org/onap/policy/pap/main/startstop/Main.java')
-rw-r--r--main/src/main/java/org/onap/policy/pap/main/startstop/Main.java14
1 files changed, 2 insertions, 12 deletions
diff --git a/main/src/main/java/org/onap/policy/pap/main/startstop/Main.java b/main/src/main/java/org/onap/policy/pap/main/startstop/Main.java
index 6351fa80..ba73d354 100644
--- a/main/src/main/java/org/onap/policy/pap/main/startstop/Main.java
+++ b/main/src/main/java/org/onap/policy/pap/main/startstop/Main.java
@@ -21,10 +21,9 @@
package org.onap.policy.pap.main.startstop;
-import java.io.FileInputStream;
import java.util.Arrays;
import java.util.Properties;
-
+import org.onap.policy.common.endpoints.utils.ParameterUtils;
import org.onap.policy.common.utils.services.Registry;
import org.onap.policy.pap.main.PapConstants;
import org.onap.policy.pap.main.PolicyPapException;
@@ -81,16 +80,7 @@ public class Main {
}
// Read the properties
- final Properties props = new Properties();
- try {
- final String propFile = arguments.getFullPropertyFilePath();
- try (FileInputStream stream = new FileInputStream(propFile)) {
- props.load(stream);
- }
- } catch (final Exception e) {
- LOGGER.error(START_FAILED, e);
- return;
- }
+ Properties props = ParameterUtils.getTopicProperties(parameterGroup.getTopicParameterGroup());
// Initialize database
try {