From 924b18d7469204ceaae60d7345712ea09f75a674 Mon Sep 17 00:00:00 2001 From: Instrumental Date: Thu, 5 Apr 2018 20:17:18 -0500 Subject: Add Certs, Docker Build Issue-ID: AAF-211 Change-Id: Idc7630578155586a6e53d7af80dd16e4e0ac41ca Signed-off-by: Instrumental --- auth/auth-hello/pom.xml | 3 ++- .../src/main/java/org/onap/aaf/auth/hello/AAF_Hello.java | 15 ++------------- 2 files changed, 4 insertions(+), 14 deletions(-) (limited to 'auth/auth-hello') diff --git a/auth/auth-hello/pom.xml b/auth/auth-hello/pom.xml index 873ffff7..5dfca621 100644 --- a/auth/auth-hello/pom.xml +++ b/auth/auth-hello/pom.xml @@ -89,7 +89,8 @@ org.onap.aaf.auth.hello.AAF_Hello hello - cadi_prop_files=${project.conf_dir}/org.osaaf.hello.props + cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.hello.props + cadi_log_dir=${project.ext_root_dir}/logs/hello diff --git a/auth/auth-hello/src/main/java/org/onap/aaf/auth/hello/AAF_Hello.java b/auth/auth-hello/src/main/java/org/onap/aaf/auth/hello/AAF_Hello.java index b20bf168..8a85b4e8 100644 --- a/auth/auth-hello/src/main/java/org/onap/aaf/auth/hello/AAF_Hello.java +++ b/auth/auth-hello/src/main/java/org/onap/aaf/auth/hello/AAF_Hello.java @@ -22,7 +22,6 @@ package org.onap.aaf.auth.hello; -import java.io.File; import java.util.Map; import javax.servlet.Filter; @@ -119,19 +118,9 @@ public class AAF_Hello extends AbsService { public static void main(final String[] args) { try { - String propsFile = getArg(AAF_LOG4J_PREFIX, args, "org.osaaf")+".log4j.props"; - String log_dir = getArg(Config.CADI_LOGDIR,args,"./logs"); - String log_level = getArg(Config.CADI_LOGLEVEL,args,"INFO"); - File logs = new File(log_dir); - if(!logs.isDirectory()) { - logs.delete(); - } - if(!logs.exists()) { - logs.mkdirs(); - } - Log4JLogIt logIt = new Log4JLogIt(log_dir,log_level,propsFile, "hello"); + Log4JLogIt logIt = new Log4JLogIt(args, "hello"); PropAccess propAccess = new PropAccess(logIt,args); - + AAF_Hello service = new AAF_Hello(new AuthzEnv(propAccess)); JettyServiceStarter jss = new JettyServiceStarter(service); jss.start(); -- cgit 1.2.3-korg