2
0
mirror of https://github.com/openkmip/pykmip synced 2026-01-06 18:43:51 +00:00

Adding unit demos

This change adds a suite of unit demos which demonstrate how to use
individual KMIP client operations. These demos also feature better
argument handling, which will eventually be ported to the rest of the
demo suite. Some added debug logging is included.
This commit is contained in:
Peter Hamilton
2015-01-19 09:37:32 -05:00
parent c6d6db3dfe
commit 87575e1a15
11 changed files with 830 additions and 7 deletions

View File

@@ -71,6 +71,8 @@ class CreateKeyPairResult(OperationResult):
public_key_uuid=None,
private_key_template_attribute=None,
public_key_template_attribute=None):
super(CreateKeyPairResult, self).__init__(
result_status, result_reason, result_message)
self.private_key_uuid = private_key_uuid
self.public_key_uuid = public_key_uuid
self.private_key_template_attribute = private_key_template_attribute