-- -- Copyright (C) 2001, 2002 OpenForce, Inc. -- -- This file is part of dotLRN. -- -- dotLRN is free software; you can redistribute it and/or modify it under the -- terms of the GNU General Public License as published by the Free Software -- Foundation; either version 2 of the License, or (at your option) any later -- version. -- -- dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY -- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -- FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -- details. -- -- -- Implementation of the profile provider interface for dotLRN Externals. -- -- @author yon@openforce.net -- @version $Id: dotlrn-external-profile-provider-create.sql,v 1.2 2002/03/29 19:14:44 yon Exp $ -- begin -- create the implementation select acs_sc_impl__new( 'profile_provider', 'dotlrn_external_profile_provider', 'dotlrn_external_profile_provider' ); -- add the bindings to the method implementations -- name method select acs_sc_impl_alias__new( 'profile_provider', 'dotlrn_external_profile_provider', 'name', 'dotlrn_external_profile_provider::name', 'TCL' ); -- prettyName method select acs_sc_impl_alias__new( 'profile_provider', 'dotlrn_external_profile_provider', 'prettyName', 'dotlrn_external_profile_provider::prettyName', 'TCL' ); -- render method select acs_sc_impl_alias__new( 'profile_provider', 'dotlrn_external_profile_provider', 'render', 'dotlrn_external_profile_provider::render', 'TCL' ); -- bind this implementation to the interface it implements select acs_sc_binding__new( 'profile_provider', 'dotlrn_external_profile_provider' ); end;