Package com.atlassian.jira.event.config
Class ApplicationPropertyChangeEvent
java.lang.Object
com.atlassian.jira.event.AbstractEvent
com.atlassian.jira.event.config.ApplicationPropertyChangeEvent
- All Implemented Interfaces:
JiraEvent
Represents the consequence of an ApplicationProperty being set to a new value.
- Since:
- v4.4
-
Field Summary
FieldsFields inherited from class com.atlassian.jira.event.AbstractEvent
params, time
-
Constructor Summary
ConstructorsConstructorDescriptionApplicationPropertyChangeEvent
(Map params) Expects parameters to include: metadata: the instance of ApplicationPropertyMetadata that represents the property being changed oldValue: the string value before the change newValue: the string value after the change (this is not guaranteed to be different to oldValue by the publisher) -
Method Summary
Methods inherited from class com.atlassian.jira.event.AbstractEvent
equals, getParams, getTime, hashCode
-
Field Details
-
KEY_METADATA
- See Also:
-
KEY_OLD_VALUE
- See Also:
-
KEY_NEW_VALUE
- See Also:
-
-
Constructor Details
-
ApplicationPropertyChangeEvent
Expects parameters to include: metadata: the instance of ApplicationPropertyMetadata that represents the property being changed oldValue: the string value before the change newValue: the string value after the change (this is not guaranteed to be different to oldValue by the publisher)- Parameters:
params
- the params as described above.
-