Skip to end of banner
Go to start of banner

getAllGroups

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Syntax

getAllGroups()

Description

Gets all groups in Confluence.

Parameters

None

Return type

String []

Returns an array of group name strings.

Example 1

return getAllGroups();

Results: returns confluence-administrators|confluence-users

Example 2

for(string g in getAllGroups()) {
    runnerLog(g);
}

Results: displays each group name on a new line

See also

  • No labels