Setting tag plcapi-5.4-1
[plcapi.git] / PLC / Methods / BlacklistKey.py
index 17a0418..2afd664 100644 (file)
@@ -23,10 +23,6 @@ class BlacklistKey(Method):
         ]
 
     returns = Parameter(int, '1 if successful')
-   
-    event_type = 'Update'
-    object_type = 'Key'
-    object_ids = []
 
     def call(self, auth, key_id):
         # Get associated key details
@@ -35,7 +31,12 @@ class BlacklistKey(Method):
             raise PLCInvalidArgument, "No such key"
         key = keys[0]
 
+        # N.B.: Can blacklist any key, even foreign ones
+
         key.blacklist()
-       self.object_ids = [key['key_id']]
+
+        # Logging variables
+        self.event_objects = {'Key': [key['key_id']]}
+        self.message = 'Key %d blacklisted' % key['key_id']
 
         return 1