Fixed sonar issue in JscepCA 62/73562/2
authorezhil <ezhrajam@in.ibm.com>
Mon, 26 Nov 2018 18:20:20 +0000 (23:50 +0530)
committerEzhilarasi R <ezhrajam@in.ibm.com>
Mon, 26 Nov 2018 18:25:14 +0000 (18:25 +0000)
Removed unused imports
Issue-ID: AAF-644
Change-Id: If635545ae6bf4efcddb497d32db6d46d436a5843
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/JscepCA.java

index 4a35ca2..4caa339 100644 (file)
@@ -4,6 +4,8 @@
  * ===========================================================================
  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
  * ===========================================================================
+ * Modifications Copyright (C) 2018 IBM.
+ * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -26,22 +28,19 @@ import java.net.Authenticator;
 import java.net.MalformedURLException;
 import java.net.PasswordAuthentication;
 import java.net.URL;
-import java.security.cert.CertStoreException;
 import java.security.cert.Certificate;
-import java.security.cert.CertificateException;
 import java.security.cert.X509Certificate;
 import java.util.ArrayList;
 import java.util.List;
 import java.util.Map;
 import java.util.concurrent.ConcurrentHashMap;
 
-import org.bouncycastle.operator.OperatorCreationException;
+
 import org.bouncycastle.pkcs.PKCS10CertificationRequest;
 import org.jscep.client.Client;
 import org.jscep.client.ClientException;
 import org.jscep.client.EnrollmentResponse;
 import org.jscep.client.verification.CertificateVerifier;
-import org.jscep.transaction.TransactionException;
 import org.onap.aaf.auth.cm.cert.BCFactory;
 import org.onap.aaf.auth.cm.cert.CSRMeta;
 import org.onap.aaf.cadi.Access;