diff options
author | 2017-09-20 20:08:52 +0000 | |
---|---|---|
committer | 2017-09-20 20:44:22 +0000 | |
commit | b50a02c4a97676a8d4e976dbbcd6c7f8e21713a3 (patch) | |
tree | ef673f7815011880d62863ad2d65f9ed98388729 /admportal/lib/CSPCheck.java | |
parent | 7f68e7464fa4076271c395c450d1b8b2a7afc6df (diff) |
remove jar files
jar files from lib directory were removed that were not needed. Added needed files into pom.xml file.
Change-Id: I7cd15cdb3b65f790e4dbb4334753cb51d08f1803
Issue-ID:SDNC-81
Signed-off-by: Al Rotundo <arotundo@att.com>
Former-commit-id: a11ee6416f6c565a3e8f979593855ac42dba10ce
Diffstat (limited to 'admportal/lib/CSPCheck.java')
-rw-r--r-- | admportal/lib/CSPCheck.java | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/admportal/lib/CSPCheck.java b/admportal/lib/CSPCheck.java deleted file mode 100644 index dac1d886..00000000 --- a/admportal/lib/CSPCheck.java +++ /dev/null @@ -1,27 +0,0 @@ -import esGateKeeper.*; -import java.util.*; -import java.io.*; -import java.net.*; -public class CSPCheck{ - -public static void main(String[] args){ - try{ - String attuid = ""; - if(args != null && args.length == 2){ - String secCookie = args[0]; - //validationEnv can be DEVL or PROD - String validationEnv=args[1]; - String retString = esGateKeeper.esGateKeeper(secCookie, "CSP", validationEnv, -5, "/tmp/"); - if(retString != null){ - String[] dataArr = retString.split("\\|"); - attuid= dataArr[5]; - - } - System.out.print("{" + "\"attuid\" : \"" + attuid + "\"}"); - } - }catch(Exception e){ - System.out.print("{" + "\"attuid\" : \"ERROR\"}"); - } -} -} - |