summaryrefslogtreecommitdiffstats
path: root/base/tps/src/org/dogtagpki/server/tps/cms/KRAServerSideKeyGenResponse.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/tps/src/org/dogtagpki/server/tps/cms/KRAServerSideKeyGenResponse.java')
-rw-r--r--base/tps/src/org/dogtagpki/server/tps/cms/KRAServerSideKeyGenResponse.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/base/tps/src/org/dogtagpki/server/tps/cms/KRAServerSideKeyGenResponse.java b/base/tps/src/org/dogtagpki/server/tps/cms/KRAServerSideKeyGenResponse.java
new file mode 100644
index 000000000..1836bcdbd
--- /dev/null
+++ b/base/tps/src/org/dogtagpki/server/tps/cms/KRAServerSideKeyGenResponse.java
@@ -0,0 +1,51 @@
+// --- 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) 2014 Red Hat, Inc.
+// All rights reserved.
+// --- END COPYRIGHT BLOCK ---
+
+package org.dogtagpki.server.tps.cms;
+
+import java.util.Hashtable;
+
+import org.dogtagpki.server.connector.IRemoteRequest;
+
+/**
+ * KRAServerSideKeyGenResponse is the class for the response to
+ * KRA Remote Request: serverSideKeyGen()
+ *
+ */
+public class KRAServerSideKeyGenResponse extends RemoteResponse
+{
+ public KRAServerSideKeyGenResponse(Hashtable<String, Object> ht) {
+ nameValTable = ht;
+ }
+
+ public String getErrorString() {
+ return (String) nameValTable.get(IRemoteRequest.RESPONSE_ERROR_STRING);
+ }
+
+ public String getPublicKey() {
+ return (String) nameValTable.get(IRemoteRequest.KRA_RESPONSE_PublicKey);
+ }
+
+ public String getWrappedPrivKey() {
+ return (String) nameValTable.get(IRemoteRequest.KRA_RESPONSE_Wrapped_PrivKey);
+ }
+
+ public String getIVParam() {
+ return (String) nameValTable.get(IRemoteRequest.KRA_RESPONSE_IV_Param);
+ }
+}