DO NOT EDIT THE CONTENT OF THIS PAGE DIRECTLY (EXCEPT INSIDE THE DIV BELOW WITH ID=DESCRIPTION), UNLESS YOU KNOW WHAT YOU'RE DOING.
THE STRUCTURE OF THE CONTENT IS VITAL IN BEING ABLE TO AUTO UPDATE THE CONTENT THROUGH THE DOC GENERATOR.

Enter additional information related to this 'class' inside the {div} macro with 'id=description'


Method Summary
String
#getAttributeValue(alias)
Get attribute value
String[]
#getAttributeValues(alias)
Get an array of attribute values

Method Details
getAttributeValue
String
getAttributeValue
(alias)
Get attribute value
Parameters
{String} alias
Returns
String
Sample
var email = authenticateResult.getAttributeValue('email')

getAttributeValues
String[]
getAttributeValues
(alias)
Get an array of attribute values
Parameters
{String} alias
Returns
String[]
Sample
var namesArray = authenticateResult.getAttributeValues('names')
for (var i = 0; i < namesArray.length; i++) { 
	application.output(namesArray[i]); 
}