X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=saml%2FSAMLConfig.h;h=e36640e546cc31c10f3520e949a990368660cb9b;hb=11cd3b15c71ee22f2818d810a17c213123e8c248;hp=17c6c5ae78447888c19927f58d651030d174445b;hpb=a30857e2c0f4bcd1817aa2939ffdc0856e93a533;p=shibboleth%2Fcpp-opensaml.git diff --git a/saml/SAMLConfig.h b/saml/SAMLConfig.h index 17c6c5a..e36640e 100644 --- a/saml/SAMLConfig.h +++ b/saml/SAMLConfig.h @@ -1,5 +1,5 @@ /* - * Copyright 2001-2006 Internet2 + * Copyright 2001-2007 Internet2 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -41,7 +41,6 @@ namespace opensaml { class SAML_API MessageDecoder; class SAML_API SAMLArtifact; class SAML_API SecurityPolicyRule; - class SAML_API URLEncoder; namespace saml2md { class SAML_API MetadataProvider; @@ -113,24 +112,6 @@ namespace opensaml { } /** - * Sets the global URLEncoder instance. - * This method must be externally synchronized with any code that uses the object. - * Any previously set object is destroyed. - * - * @param urlEncoder new URLEncoder instance to store - */ - void setURLEncoder(URLEncoder* urlEncoder); - - /** - * Returns the global URLEncoder instance. - * - * @return global URLEncoder or NULL - */ - URLEncoder* getURLEncoder() const { - return m_urlEncoder; - } - - /** * Generate random information using the underlying security library * * @param buf buffer for the information @@ -165,31 +146,28 @@ namespace opensaml { virtual std::string hashSHA1(const char* s, bool toHex=false)=0; /** Manages factories for MessageDecoder plugins. */ - xmltooling::PluginManager MessageDecoderManager; + xmltooling::PluginManager< MessageDecoder,std::string,std::pair > MessageDecoderManager; /** Manages factories for MessageEncoder plugins. */ - xmltooling::PluginManager MessageEncoderManager; + xmltooling::PluginManager< MessageEncoder,std::string,std::pair > MessageEncoderManager; /** Manages factories for SAMLArtifact plugins. */ - xmltooling::PluginManager SAMLArtifactManager; + xmltooling::PluginManager SAMLArtifactManager; /** Manages factories for SecurityPolicyRule plugins. */ - xmltooling::PluginManager SecurityPolicyRuleManager; + xmltooling::PluginManager SecurityPolicyRuleManager; /** Manages factories for MetadataProvider plugins. */ - xmltooling::PluginManager MetadataProviderManager; + xmltooling::PluginManager MetadataProviderManager; /** Manages factories for MetadataFilter plugins. */ - xmltooling::PluginManager MetadataFilterManager; + xmltooling::PluginManager MetadataFilterManager; protected: - SAMLConfig() : m_artifactMap(NULL), m_urlEncoder(NULL) {} + SAMLConfig() : m_artifactMap(NULL) {} /** Global ArtifactMap instance for use by artifact-related functions. */ ArtifactMap* m_artifactMap; - - /** Global URLEncoder instance for use by URL-related functions. */ - URLEncoder* m_urlEncoder; }; #if defined (_MSC_VER)