GetEveryoneGroupName

Description

Returns the Everyone group name.

The Everyone group includes all users and can be used for permissions that need to be granted to all users. It is often necessary to establish a baseline permission from which exceptions can then be applied. The Everyone group is defined in all new databases and implicitly contains all users.

Syntaxe

VBScript

session.GetEveryoneGroupName 

Perl

$session->GetEveryoneGroupName(); 
Identificateur
Description
session
Objet Session représentant la session en cours d'accès à la base de données.
Valeur renvoyée
A String containing the Everyone group name.

Exemples

VBScript

set sessionObj = GetSession 

' Get the everyone group name
userName = sessionObj.GetEveryoneGroupName 

Perl

#Create a Rational ClearQuest session
$sessionObj = $entity->GetSession();

#Get the everyone group name
$userName = $sessionObj->GetEveryoneGroupName();

Feedback