An LDAP Group/Role
Properties
Name | Access | Type | Description |
---|---|---|---|
DistinguishedName | Read, Write | String | Distinguished name of the LDAP Group |
Errors | Read | IList of Error | Errors |
Name | Read, Write | String | Name of the LDAP Group |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $ldapGroup.HasErrors())
JavaScript
var booleanResponse = ldapGroup.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $ldapGroup.HasWarnings())
JavaScript
var booleanResponse = ldapGroup.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $ldapGroup.HasWarningsOrErrors())
JavaScript
var booleanResponse = ldapGroup.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$ldapGroup.ThrowErrors()
JavaScript
ldapGroup.ThrowErrors();