summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/profile/common
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/cms/profile/common')
-rw-r--r--pki/base/common/src/com/netscape/cms/profile/common/BasicProfile.java21
-rw-r--r--pki/base/common/src/com/netscape/cms/profile/common/CACertCAEnrollProfile.java3
-rw-r--r--pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java5
3 files changed, 5 insertions, 24 deletions
diff --git a/pki/base/common/src/com/netscape/cms/profile/common/BasicProfile.java b/pki/base/common/src/com/netscape/cms/profile/common/BasicProfile.java
index 7f624cb8b..696d0cd13 100644
--- a/pki/base/common/src/com/netscape/cms/profile/common/BasicProfile.java
+++ b/pki/base/common/src/com/netscape/cms/profile/common/BasicProfile.java
@@ -550,12 +550,6 @@ public abstract class BasicProfile implements IProfile {
throws EProfileException {
IConfigStore outputStore = mConfig.getSubStore("output");
- String output_list = null;
-
- try {
- output_list = outputStore.getString(PROP_OUTPUT_LIST, "");
- } catch (Exception ee) {
- }
IPluginInfo outputInfo = mRegistry.getPluginInfo("profileOutput",
outputId);
@@ -650,13 +644,6 @@ public abstract class BasicProfile implements IProfile {
throws EProfileException {
IConfigStore inputStore = mConfig.getSubStore("input");
- String input_list = null;
-
- try {
- input_list = inputStore.getString(PROP_INPUT_LIST, "");
- } catch (Exception ee) {
- }
-
IPluginInfo inputInfo = mRegistry.getPluginInfo("profileInput",
inputId);
@@ -856,14 +843,6 @@ public abstract class BasicProfile implements IProfile {
CMS.debug("WARNING, can't get default plugin id!");
}
- String constraintRoot = curId + "." + PROP_CONSTRAINT;
- String curConstraintClassId = null;
- try {
- curConstraintClassId = pStore.getString(constraintRoot + "." + PROP_CLASS_ID);
- } catch (Exception e) {
- CMS.debug("WARNING, can't get constraint plugin id!");
- }
-
//Disallow duplicate defaults with the following exceptions:
// noDefaultImpl, genericExtDefaultImpl
diff --git a/pki/base/common/src/com/netscape/cms/profile/common/CACertCAEnrollProfile.java b/pki/base/common/src/com/netscape/cms/profile/common/CACertCAEnrollProfile.java
index 3ad301b26..b95b22339 100644
--- a/pki/base/common/src/com/netscape/cms/profile/common/CACertCAEnrollProfile.java
+++ b/pki/base/common/src/com/netscape/cms/profile/common/CACertCAEnrollProfile.java
@@ -49,8 +49,7 @@ public class CACertCAEnrollProfile extends CAEnrollProfile
createProfileOutput("o1", "certOutputImpl", outputParams1);
// create policies
- IProfilePolicy policy1 =
- createProfilePolicy("set1", "p1",
+ createProfilePolicy("set1", "p1",
"userSubjectNameDefaultImpl", "noConstraintImpl");
IProfilePolicy policy2 =
diff --git a/pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java b/pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java
index f2e921a53..d574f0f94 100644
--- a/pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java
+++ b/pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java
@@ -379,7 +379,6 @@ public abstract class EnrollProfile extends BasicProfile
org.mozilla.jss.pkix.cms.SignedData cmcFullReq =
(org.mozilla.jss.pkix.cms.SignedData) cmcReq.getInterpretedContent();
org.mozilla.jss.pkix.cms.EncapsulatedContentInfo ci = cmcFullReq.getContentInfo();
- OBJECT_IDENTIFIER id = ci.getContentType();
OCTET_STRING content = ci.getContent();
ByteArrayInputStream s = new ByteArrayInputStream(content.toByteArray());
@@ -1158,7 +1157,9 @@ public abstract class EnrollProfile extends BasicProfile
/* get SPKAC Algorithm & Signature */
DerValue derSPKACContent[] = derIn.getSequence(3);
+ @SuppressWarnings("unused")
AlgorithmId mAlgId = AlgorithmId.parse(derSPKACContent[1]);
+ @SuppressWarnings("unused")
byte mSignature[] = derSPKACContent[2].getBitString();
/* get PKAC SPKI & Challenge */
@@ -1167,9 +1168,11 @@ public abstract class EnrollProfile extends BasicProfile
derIn = new DerInputStream(mPKAC);
DerValue derPKACContent[] = derIn.getSequence(2);
+ @SuppressWarnings("unused")
DerValue mDerSPKI = derPKACContent[0];
X509Key mSPKI = X509Key.parse(derPKACContent[0]);
+ @SuppressWarnings("unused")
String mChallenge;
DerValue mDerChallenge = derPKACContent[1];