Source code for cybox.objects.semaphore_object

# Copyright (c) 2017, The MITRE Corporation. All rights reserved.
# See LICENSE.txt for complete terms.

from mixbox import fields

import cybox.bindings.semaphore_object as semaphore_binding
from cybox.common import (ObjectProperties, String, UnsignedInteger,
                          PositiveInteger)


[docs]class Semaphore(ObjectProperties): _binding = semaphore_binding _binding_class = semaphore_binding.SemaphoreObjectType _namespace = 'http://cybox.mitre.org/objects#SemaphoreObject-2' _XSI_NS = "SemaphoreObj" _XSI_TYPE = "SemaphoreObjectType" named = fields.TypedField("named") current_count = fields.TypedField("Current_Count", UnsignedInteger) maximum_count = fields.TypedField("Maximum_Count", PositiveInteger) name = fields.TypedField("Name", String)