2
0
mirror of https://github.com/openkmip/pykmip synced 2026-01-17 07:53:14 +00:00
Files
pykmip/kmip/core/factories/payloads/response.py
Peter Hamilton 80ee64e600 Adding support for the Query operation
This change adds support for the Query operation, including updates to
the KMIP client and core object libraries, the KMIP client and core unit
test suites, and a Query unit demo.
2015-02-23 17:18:05 -05:00

57 lines
2.0 KiB
Python

# Copyright (c) 2014 The Johns Hopkins University/Applied Physics Laboratory
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from kmip.core.factories.payloads import PayloadFactory
from kmip.core.messages.payloads import create
from kmip.core.messages.payloads import create_key_pair
from kmip.core.messages.payloads import destroy
from kmip.core.messages.payloads import discover_versions
from kmip.core.messages.payloads import get
from kmip.core.messages.payloads import locate
from kmip.core.messages.payloads import query
from kmip.core.messages.payloads import rekey_key_pair
from kmip.core.messages.payloads import register
class ResponsePayloadFactory(PayloadFactory):
def _create_create_payload(self):
return create.CreateResponsePayload()
def _create_create_key_pair_payload(self):
return create_key_pair.CreateKeyPairResponsePayload()
def _create_register_payload(self):
return register.RegisterResponsePayload()
def _create_rekey_key_pair_payload(self):
return rekey_key_pair.RekeyKeyPairResponsePayload()
def _create_locate_payload(self):
return locate.LocateResponsePayload()
def _create_get_payload(self):
return get.GetResponsePayload()
def _create_destroy_payload(self):
return destroy.DestroyResponsePayload()
def _create_query_payload(self):
return query.QueryResponsePayload()
def _create_discover_versions_payload(self):
return discover_versions.DiscoverVersionsResponsePayload()