Fetches the Password Policy set by the Admin in SCC for this Application.
Syntax
public static virtual PasswordPolicy *
getPasswordPolicy:
(NSError ** error)
Parameters
-
error –
A double pointer to the error object in case the operation results in an error
Returns
Returns the structure containing the Password policy Usage NSError* error = nil; PasswordPolicy *dvppStruct = [ODPAppSettings getPasswordPolicy:&error]; if (!error) { // Further processing }