X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=saml%2FSAMLConfig.h;h=4944abb9baa8ddbea32f84f7e5c8454b27aa0b71;hb=3cbec746823d9c409f7caf3f4c6f5d69fac67333;hp=64bc575e34d330683343199b52d91692375dbfea;hpb=932cfaae2176c2eba1a9938dc420591a9551a7f3;p=shibboleth%2Fcpp-opensaml.git diff --git a/saml/SAMLConfig.h b/saml/SAMLConfig.h index 64bc575..4944abb 100644 --- a/saml/SAMLConfig.h +++ b/saml/SAMLConfig.h @@ -1,23 +1,27 @@ -/* - * 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. - * You may obtain a copy of the License at +/** + * Licensed to the University Corporation for Advanced Internet + * Development, Inc. (UCAID) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for + * additional information regarding copyright ownership. * - * http://www.apache.org/licenses/LICENSE-2.0 + * UCAID licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. You may obtain a copy of the + * License at * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, + * either express or implied. See the License for the specific + * language governing permissions and limitations under the License. */ /** * @file saml/SAMLConfig.h * - * Library configuration + * Library configuration. */ #ifndef __saml_config_h__ @@ -25,10 +29,9 @@ #include -#include -#include - #include +#include +#include /** * @namespace opensaml @@ -41,11 +44,13 @@ namespace opensaml { class SAML_API MessageDecoder; class SAML_API SAMLArtifact; class SAML_API SecurityPolicyRule; - class SAML_API URLEncoder; namespace saml2md { + class SAML_API ContactPerson; + class SAML_API EntityDescriptor; class SAML_API MetadataProvider; class SAML_API MetadataFilter; + class SAML_API RoleDescriptor; }; #if defined (_MSC_VER) @@ -60,7 +65,7 @@ namespace opensaml { { MAKE_NONCOPYABLE(SAMLConfig); public: - virtual ~SAMLConfig() {} + virtual ~SAMLConfig(); /** * Returns the global configuration object for the library. @@ -106,31 +111,11 @@ namespace opensaml { /** * Returns the global ArtifactMap instance. * - * @return global ArtifactMap or NULL + * @return global ArtifactMap or nullptr */ - ArtifactMap* getArtifactMap() const { - return m_artifactMap; - } + ArtifactMap* getArtifactMap() const; /** - * 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 @@ -155,6 +140,7 @@ namespace opensaml { virtual XMLCh* generateIdentifier()=0; /** + * @deprecated * Generate the SHA-1 hash of a string * * @param s NULL-terminated string to hash @@ -164,32 +150,52 @@ namespace opensaml { */ virtual std::string hashSHA1(const char* s, bool toHex=false)=0; + /** + * Sets the order of contact types to use in annotating exceptions with contact information. + * + * @param contactTypes whitespace-delimited list of contact types + */ + virtual void setContactPriority(const XMLCh* contactTypes)=0; + + /** + * Returns the appropriate contact to use for the entity. + * + * @param entity the entity to search + * @return a contact to use, or nullptr + */ + virtual const saml2md::ContactPerson* getContactPerson(const saml2md::EntityDescriptor& entity) const=0; + + /** + * Returns the appropriate contact to use for the role. + * + * @param entity the role to search + * @return a contact to use, or nullptr + */ + virtual const saml2md::ContactPerson* getContactPerson(const saml2md::RoleDescriptor& role) const=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(); /** 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)