-- -- Implementation of the profile provider interface for dotLRN Admins. -- -- @author yon@openforce.net -- @version $Id: dotlrn-admin-profile-provider-create.sql,v 1.1 2002/03/29 16:58:17 ben Exp $ -- begin -- create the implementation select acs_sc_impl__new( 'profile_provider', 'dotlrn_admin_profile_provider', 'dotlrn_admin_profile_provider' ); -- add the bindings to the method implementations -- name method select acs_sc_impl_alias__new( 'profile_provider', 'dotlrn_admin_profile_provider', 'name', 'dotlrn_admin_profile_provider::name', 'TCL' ); -- prettyName method select acs_sc_impl_alias__new( 'profile_provider', 'dotlrn_admin_profile_provider', 'prettyName', 'dotlrn_admin_profile_provider::prettyName', 'TCL' ); -- render method select acs_sc_impl_alias__new( 'profile_provider', 'dotlrn_admin_profile_provider', 'render', 'dotlrn_admin_profile_provider::render', 'TCL' ); -- bind this implementation to the interface it implements select acs_sc_binding__new( 'profile_provider', 'dotlrn_admin_profile_provider' ); end;