auth::authority::delete (public)

 auth::authority::delete -authority_id authority_id

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

Delete an authority.

Switches:
-authority_id (required)

Testcases:
auth_authority_api
Source code:
    db_exec_plsql delete_authority {}
    auth::authority::get_id_flush
Generic XQL file:
packages/acs-authentication/tcl/authority-procs.xql

PostgreSQL XQL file:
<fullquery name="auth::authority::delete.delete_authority">
    <querytext>
            select authority__del(
                :authority_id
            );
        </querytext>
</fullquery>
packages/acs-authentication/tcl/authority-procs-postgresql.xql

Oracle XQL file:
<fullquery name="auth::authority::delete.delete_authority">
    <querytext>
            begin
                :1 := authority.del(
                    delete_authority_id => :authority_id
                );
            end;
        </querytext>
</fullquery>
packages/acs-authentication/tcl/authority-procs-oracle.xql

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