1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
# pylint: disable-msg=E0211
"""Interfaces for bug changes."""
__metaclass__ = type
__all__ = [
'IBugChange',
]
from zope.interface import (
Attribute,
Interface,
)
class IBugChange(Interface):
"""Represents a change to an `IBug`."""
when = Attribute("The timestamp for the BugChange.")
person = Attribute("The Person who made the change.")
change_level = Attribute(
"Type of the change to a bug expressed as `BugNotificationLevel`.")
def getBugActivity():
"""Return the `BugActivity` data for this change as a dict."""
def getBugNotification():
"""Return any `BugNotification`s for this event."""
|