public class

ApplicationPropertyChangeEvent

extends AbstractEvent
java.lang.Object
   ↳ com.atlassian.jira.event.AbstractEvent
     ↳ com.atlassian.jira.event.config.ApplicationPropertyChangeEvent

Class Overview

Represents the consequence of an ApplicationProperty being set to a new value.

Summary

Constants
String KEY_METADATA
String KEY_NEW_VALUE
String KEY_OLD_VALUE
[Expand]
Inherited Fields
From class com.atlassian.jira.event.AbstractEvent
Public Constructors
ApplicationPropertyChangeEvent(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)
[Expand]
Inherited Methods
From class com.atlassian.jira.event.AbstractEvent
From class java.lang.Object
From interface com.atlassian.jira.event.JiraEvent

Constants

public static final String KEY_METADATA

Constant Value: "metadata"

public static final String KEY_NEW_VALUE

Constant Value: "newValue"

public static final String KEY_OLD_VALUE

Constant Value: "oldValue"

Public Constructors

public ApplicationPropertyChangeEvent (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)

Parameters
params the params as described above.