2
0
mirror of https://github.com/openkmip/pykmip synced 2025-12-16 00:04:26 +00:00

Adding support for the State attribute

This change adds the State attribute, updating the attribute
factory to support creating it.
This commit is contained in:
Peter Hamilton
2016-08-27 17:11:45 -04:00
parent b46de1849e
commit 65ad4c6111
3 changed files with 13 additions and 5 deletions

View File

@@ -620,6 +620,12 @@ class CryptographicUsageMask(Integer):
value, Tags.CRYPTOGRAPHIC_USAGE_MASK)
class State(Enumeration):
def __init__(self, value=None):
super(State, self).__init__(enums.State, value, Tags.STATE)
# 3.33
class ObjectGroup(TextString):