getName()
The getName() method determines the name under which the UDX is registered to the database where the UDX is deployed.
This method is mandatory and must return a single string. The returned string is not case sensitive and can contain only standard ASCII or UTF8 alphanumeric characters (A-Z, a-z, 0-9), plus the underscore character (_).
When the UDX is compiled, the specified name is converted to upper case.
Example
function getName()
return "testfunction"
end