summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cmscore/dbs/BigIntegerMapper.java
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2011-11-21 11:06:15 -0500
committerAdam Young <ayoung@redhat.com>2012-01-04 11:24:45 -0500
commitd6c9e9fe6c8c35fa74db79c74a6db9d71bb33912 (patch)
tree49570acfd492a6491198d8e4cce38398efd70916 /pki/base/common/src/com/netscape/cmscore/dbs/BigIntegerMapper.java
parente07fd0804fafcbaa3e3766702351eaeda4c7e81f (diff)
downloadpki-d6c9e9fe6c8c35fa74db79c74a6db9d71bb33912.tar.gz
pki-d6c9e9fe6c8c35fa74db79c74a6db9d71bb33912.tar.xz
pki-d6c9e9fe6c8c35fa74db79c74a6db9d71bb33912.zip
typesafety ACL Impls Random type safety cleanups.
Diffstat (limited to 'pki/base/common/src/com/netscape/cmscore/dbs/BigIntegerMapper.java')
-rw-r--r--pki/base/common/src/com/netscape/cmscore/dbs/BigIntegerMapper.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/pki/base/common/src/com/netscape/cmscore/dbs/BigIntegerMapper.java b/pki/base/common/src/com/netscape/cmscore/dbs/BigIntegerMapper.java
index 8d6c325f..7cd563f9 100644
--- a/pki/base/common/src/com/netscape/cmscore/dbs/BigIntegerMapper.java
+++ b/pki/base/common/src/com/netscape/cmscore/dbs/BigIntegerMapper.java
@@ -41,7 +41,7 @@ import com.netscape.certsrv.dbs.IDBObj;
public class BigIntegerMapper implements IDBAttrMapper {
private String mLdapName = null;
- private Vector v = new Vector();
+ private Vector<String> v = new Vector<String>();
/**
* Constructs BigInteger mapper.
@@ -54,7 +54,7 @@ public class BigIntegerMapper implements IDBAttrMapper {
/**
* Returns a list of supported ldap attribute names.
*/
- public Enumeration getSupportedLDAPAttributeNames() {
+ public Enumeration<String> getSupportedLDAPAttributeNames() {
return v.elements();
}