auth::user_info::GetUserInfo (private)

 auth::user_info::GetUserInfo -authority_id authority_id \
    -username username

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

Invoke the Register service contract operation for the given authority.

Switches:
-authority_id
(required)
Id of the authority.
-username
(required)

Partial Call Graph (max 5 caller/called nodes):
%3 auth::get_local_account auth::get_local_account (private) auth::user_info::GetUserInfo auth::user_info::GetUserInfo auth::get_local_account->auth::user_info::GetUserInfo auth::user_info::create_contract auth::user_info::create_contract (private) auth::user_info::create_contract->auth::user_info::GetUserInfo acs_sc::invoke acs_sc::invoke (public) auth::user_info::GetUserInfo->acs_sc::invoke auth::authority::get_element auth::authority::get_element (public) auth::user_info::GetUserInfo->auth::authority::get_element auth::driver::get_parameter_values auth::driver::get_parameter_values (public) auth::user_info::GetUserInfo->auth::driver::get_parameter_values

Testcases:
No testcase defined.
Source code:
    set impl_id [auth::authority::get_element -authority_id $authority_id -element "user_info_impl_id"]

    if { $impl_id eq "" } {
        # No implementation of authentication
        return { info_status no_account }
    }

    set parameters [auth::driver::get_parameter_values  -authority_id $authority_id  -impl_id $impl_id]

    return [acs_sc::invoke  -error  -impl_id $impl_id  -operation GetUserInfo  -call_args [list $username $parameters]]
Generic XQL file:
packages/acs-authentication/tcl/authentication-procs.xql

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

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

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