auth::driver::get_parameters (public)

 auth::driver::get_parameters -impl_id impl_id

Defined in packages/acs-authentication/tcl/driver-procs.tcl

Returns a list of names of parameters for the driver

Switches:
-impl_id
(required)
Author:
Simon Carstensen <simon@collaboraid.biz>
Created:
2003-08-27

Partial Call Graph (max 5 caller/called nodes):
%3 test_auth_driver_get_parameter_values auth_driver_get_parameter_values (test acs-authentication) auth::driver::get_parameters auth::driver::get_parameters test_auth_driver_get_parameter_values->auth::driver::get_parameters acs_sc::invoke acs_sc::invoke (public) auth::driver::get_parameters->acs_sc::invoke ad_log ad_log (public) auth::driver::get_parameters->ad_log ad_try ad_try (public) auth::driver::get_parameters->ad_try auth::driver::get_parameter_values auth::driver::get_parameter_values (public) auth::driver::get_parameter_values->auth::driver::get_parameters packages/acs-admin/www/auth/authority-parameters.tcl packages/acs-admin/ www/auth/authority-parameters.tcl packages/acs-admin/www/auth/authority-parameters.tcl->auth::driver::get_parameters packages/acs-admin/www/auth/authority.tcl packages/acs-admin/ www/auth/authority.tcl packages/acs-admin/www/auth/authority.tcl->auth::driver::get_parameters

Testcases:
auth_driver_get_parameter_values
Source code:
    if { $impl_id eq "" } {
        return {}
    }

    set parameters {}

    ad_try {
        set parameters [acs_sc::invoke  -error  -impl_id $impl_id  -operation GetParameters]
    } on error {errorMsg} {
        ad_log Error "Error getting parameters for impl_id $impl_id: $errorMsg"
    }
    return $parameters
Generic XQL file:
packages/acs-authentication/tcl/driver-procs.xql

PostgreSQL XQL file:
packages/acs-authentication/tcl/driver-procs-postgresql.xql

Oracle XQL file:
packages/acs-authentication/tcl/driver-procs-oracle.xql

[ hide source ] | [ make this the default ]
Show another procedure: