GSSAcquireCred works.
[gssweb.git] / json_gssapi / src / datamodel / GSSCredential.h
index ddef596..2e8971f 100644 (file)
@@ -65,9 +65,12 @@ public:
     
     void setValue(gss_cred_id_t cred) { this->credential = cred; }
     JSONObject *toJSONValue() { return( new JSONObject("not now") ); }
+    void setKey(std::string key) { this->hashKey = key; }
+    std::string getKey() const { return this->hashKey; }
     
 private:
     gss_cred_id_t credential;
+    std::string hashKey;
     
 };