Manage the list of available authentification methods.
Example
>>> # Get the list of available authentication method names
>>> auth_methods = Authentication()
>>> auth_methods.get_method_names()
> ["ldap", "certificate", "token", "code"]
Example
>>> # Instantiate an authentication method.
>>> ldap_auth = auth_methods.get_auth_class(LdapAuthentication().method_name)("here.org")
>>> jwt_auth = auth_methods.get_auth_class("jwt")("token_secret")