Skip to main content

ERUCES::TEGroupInfo

#include <tegroup.h>

The TEGroupInfo class represents a group.

The TEGroupInfo class is derived from the TEPrincipalInfo class.

Inheritance

Static Public Attributes

TypeNameDescription
_TESTD stringCLASSNAME

Public Member Functions

MemberDescription
TEGroupInfo()The TEGroupInfo constructor is the default class constructor.
TEGroupInfo(const TEGroupInfo &)The TEGroupInfo constructor copies a TEGroupInfo object.
~TEGroupInfo()The TEGroupInfo destructor is the class destructor.
const _TESTD string getPrincipalName() constThe getPrincipalName method gets a principal's name.
void setGroupName(const _TESTD string &name)The setGroupName method sets a group name.
const _TESTD string getGroupName() constThe getGroupName method gets a group name.
size_t PrincipalCount() constThe principalCount method gets the number of principals in a group.
void getPrincipalIds(TEObjectContainer &container) constThe getPrincipalIDs method gets all the principal identifiers of a group.
bool addPrincipal(te_oid nid)The addPrincipal method adds a principal to a group.
bool removePrincipal(te_oid nid)The removePrincipal method removes a principal from a group.
void clearPrincipals()The clearPrincipals method clears all principals from a TEGroupInfo object.
const _TESTD string getClassName() constThe getClassName method gets a TEGroupInfo object's class name.
TEObject * clone() constThe clone method clones a TEGroupInfo object.

Member Function Documentation

TEGroupInfo()

The TEGroupInfo constructor is the default class constructor.

TEGroupInfo(const TEGroupInfo &)

The TEGroupInfo constructor copies a TEGroupInfo object.

Parameters

ParameterDescription
&A TEGroupInfo object to be copied.

~TEGroupInfo()

The TEGroupInfo destructor is the class destructor.

const _TESTD string getPrincipalName() const

The getPrincipalName method gets a principal's name.

Remark: It's the same as group name.

Returns: Returns a group's principal name.

void setGroupName(const _TESTD string &name)

The setGroupName method sets a group name.

Parameters

ParameterDescription
nameA string representing the group name to be set.

const _TESTD string getGroupName() const

The getGroupName method gets a group name.

Returns: Returns a string representing the group name.

size_t PrincipalCount() const

The principalCount method gets the number of principals in a group.

Returns: Returns the number of principals in a group.

void getPrincipalIds(TEObjectContainer &container) const

The getPrincipalIDs method gets all the principal identifiers of a group.

Parameters

ParameterDescription
containerA container to hold the returned principal IDs.

bool addPrincipal(te_oid nid)

The addPrincipal method adds a principal to a group.

Parameters

ParameterDescription
nidThe ID of the principal to be added.

Returns: Returns a boolean value indicating if the principal has been added to the group successfully.

bool removePrincipal(te_oid nid)

The removePrincipal method removes a principal from a group.

Parameters

ParameterDescription
nidThe ID of the principal to be removed.

Returns: Returns a boolean value indicating if the principal has been removed from the group successfully.

void clearPrincipals()

The clearPrincipals method clears all principals from a TEGroupInfo object.

const _TESTD string getClassName() const

The getClassName method gets a TEGroupInfo object's class name.

Returns: Returns a string representing the class name of a TEGroupInfo object.

TEObject * clone() const

The clone method clones a TEGroupInfo object.

Returns: Returns a cloned TEGroupInfo object.