summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/profile
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/cms/profile')
-rw-r--r--pki/base/common/src/com/netscape/cms/profile/common/ProfileContext.java4
-rw-r--r--pki/base/common/src/com/netscape/cms/profile/common/RAEnrollProfile.java4
-rw-r--r--pki/base/common/src/com/netscape/cms/profile/input/SubjectNameInput.java4
3 files changed, 6 insertions, 6 deletions
diff --git a/pki/base/common/src/com/netscape/cms/profile/common/ProfileContext.java b/pki/base/common/src/com/netscape/cms/profile/common/ProfileContext.java
index 7a275b1e6..7d0686378 100644
--- a/pki/base/common/src/com/netscape/cms/profile/common/ProfileContext.java
+++ b/pki/base/common/src/com/netscape/cms/profile/common/ProfileContext.java
@@ -27,13 +27,13 @@ import com.netscape.certsrv.profile.IProfileContext;
* @version $Revision$, $Date$
*/
public class ProfileContext implements IProfileContext {
- private Hashtable m_Attrs = new Hashtable();
+ private Hashtable<String, String> m_Attrs = new Hashtable<String, String>();
public void set(String name, String value) {
m_Attrs.put(name, value);
}
public String get(String name) {
- return (String) m_Attrs.get(name);
+ return m_Attrs.get(name);
}
}
diff --git a/pki/base/common/src/com/netscape/cms/profile/common/RAEnrollProfile.java b/pki/base/common/src/com/netscape/cms/profile/common/RAEnrollProfile.java
index ed028ceeb..36bac1fa7 100644
--- a/pki/base/common/src/com/netscape/cms/profile/common/RAEnrollProfile.java
+++ b/pki/base/common/src/com/netscape/cms/profile/common/RAEnrollProfile.java
@@ -110,11 +110,11 @@ public class RAEnrollProfile extends EnrollProfile {
}
// request handling
- Enumeration names = ra.getRequestListenerNames();
+ Enumeration<String> names = ra.getRequestListenerNames();
if (names != null) {
while (names.hasMoreElements()) {
- String name = (String) names.nextElement();
+ String name = names.nextElement();
CMS.debug("CAEnrollProfile: listener " + name);
IRequestListener listener = ra.getRequestListener(name);
diff --git a/pki/base/common/src/com/netscape/cms/profile/input/SubjectNameInput.java b/pki/base/common/src/com/netscape/cms/profile/input/SubjectNameInput.java
index 55ede1386..db70da666 100644
--- a/pki/base/common/src/com/netscape/cms/profile/input/SubjectNameInput.java
+++ b/pki/base/common/src/com/netscape/cms/profile/input/SubjectNameInput.java
@@ -113,8 +113,8 @@ public class SubjectNameInput extends EnrollInput implements IProfileInput {
/**
* Returns selected value names based on the configuration.
*/
- public Enumeration getValueNames() {
- Vector v = new Vector();
+ public Enumeration<String> getValueNames() {
+ Vector<String> v = new Vector<String>();
String c_uid = getConfig(CONFIG_UID);
if (c_uid == null || c_uid.equals("")) {
v.addElement(VAL_UID); // default case