summaryrefslogtreecommitdiffstats
path: root/base/util/src/com/netscape/cmsutil/password/PlainPasswordReader.java
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2012-03-24 02:08:08 -0500
committerMatthew Harmsen <mharmsen@redhat.com>2012-03-26 15:10:41 -0700
commit4a7ec07c942544b7ca27718a11dac00505c4de7b (patch)
treecceeb31a92d7b8b307300305fba77e642b7a6495 /base/util/src/com/netscape/cmsutil/password/PlainPasswordReader.java
parent007bc68f666ef5658274a1e27989d75f2a681a20 (diff)
downloadpki-4a7ec07c942544b7ca27718a11dac00505c4de7b.tar.gz
pki-4a7ec07c942544b7ca27718a11dac00505c4de7b.tar.xz
pki-4a7ec07c942544b7ca27718a11dac00505c4de7b.zip
Removed unnecessary pki folder.
Previously the source code was located inside a pki folder. This folder was created during svn migration and is no longer needed. This folder has now been removed and the contents have been moved up one level. Ticket #131
Diffstat (limited to 'base/util/src/com/netscape/cmsutil/password/PlainPasswordReader.java')
-rw-r--r--base/util/src/com/netscape/cmsutil/password/PlainPasswordReader.java52
1 files changed, 52 insertions, 0 deletions
diff --git a/base/util/src/com/netscape/cmsutil/password/PlainPasswordReader.java b/base/util/src/com/netscape/cmsutil/password/PlainPasswordReader.java
new file mode 100644
index 000000000..c6a138236
--- /dev/null
+++ b/base/util/src/com/netscape/cmsutil/password/PlainPasswordReader.java
@@ -0,0 +1,52 @@
+// --- BEGIN COPYRIGHT BLOCK ---
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; version 2 of the License.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this program; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+//
+// (C) 2007 Red Hat, Inc.
+// All rights reserved.
+// --- END COPYRIGHT BLOCK ---
+package com.netscape.cmsutil.password;
+
+import java.util.Properties;
+import java.io.*;
+import java.util.*;
+
+public class PlainPasswordReader implements IPasswordReader{
+ private String mPwdPath = "";
+ private Properties mPwdStore;
+
+ public PlainPasswordReader() {
+ }
+
+ public void init(String pwdPath)
+ throws IOException
+ {
+ mPwdStore = new Properties();
+ // initialize mPwdStore
+ mPwdPath = pwdPath;
+ mPwdStore = new Properties();
+
+ FileInputStream file = new FileInputStream(mPwdPath);
+ mPwdStore.load(file);
+ file.close();
+ }
+
+ public String getPassword(String tag) {
+ return (String) mPwdStore.getProperty(tag);
+ }
+
+ // return an array of String-based tag
+ public Enumeration getTags() {
+ return mPwdStore.propertyNames();
+ }
+}