987bd434921d8efc4195757d4d4f341632b3291d
[shibboleth/cpp-sp.git] / xmlproviders / XMLProviders.cpp
1 /*
2  *  Copyright 2001-2005 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /* XMLProviders.cpp - bootstraps the extension library
18
19    Scott Cantor
20    2/14/04
21
22    $History:$
23 */
24
25 #ifdef WIN32
26 # define XML_EXPORTS __declspec(dllexport)
27 #else
28 # define XML_EXPORTS
29 #endif
30
31 #include "internal.h"
32 #include <shib-target/shib-target.h>
33 #include <log4cpp/Category.hh>
34
35 using namespace saml;
36 using namespace shibboleth;
37 using namespace std;
38
39 // Metadata Factories
40
41 PlugManager::Factory TargetedIDFactory;
42 PlugManager::Factory XMLAAPFactory;
43
44 extern "C" int XML_EXPORTS saml_extension_init(void*)
45 {
46     // Register metadata factories (some are legacy aliases)
47     SAMLConfig& conf=SAMLConfig::getConfig();
48     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.common.provider.TargetedIDFactory",&TargetedIDFactory);
49     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.aap.provider.XMLAAP",&XMLAAPFactory);
50     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.target.provider.XMLAAP",&XMLAAPFactory);
51
52     return 0;
53 }
54
55 extern "C" void XML_EXPORTS saml_extension_term()
56 {
57     // Unregister metadata factories
58     SAMLConfig& conf=SAMLConfig::getConfig();
59     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.common.provider.TargetedIDFactory");
60     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.aap.provider.XMLAAP");
61     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.target.provider.XMLAAP");
62 }