admGetNotificationProjectMappings

Description

Retrieves the mappings between notification schemes and projects.

Parameters

Return Type

JIssueNotificationSchemeProjectMapping

Example

JIssueNotificationSchemeProjectMapping[] mappings = admGetNotificationProjectMappings(); int indexCC = 1; for(JIssueNotificationSchemeProjectMapping mapping in mappings) { runnerLog("---mapping " + indexCC + "---"); runnerLog("notificationSchemeId = " + mapping.notificationSchemeId); runnerLog("projectId = " + mapping.projectId); indexCC++; } runnerLog("--------------");

See also