X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=saml%2FSAMLConfig.h;h=4944abb9baa8ddbea32f84f7e5c8454b27aa0b71;hb=3cbec746823d9c409f7caf3f4c6f5d69fac67333;hp=a89ed868395a1f9990663939990da2ac79bbffea;hpb=e9554c255ad3c91c7c4976e7a1a54905903e66a2;p=shibboleth%2Fcpp-opensaml.git diff --git a/saml/SAMLConfig.h b/saml/SAMLConfig.h index a89ed86..4944abb 100644 --- a/saml/SAMLConfig.h +++ b/saml/SAMLConfig.h @@ -1,17 +1,21 @@ -/* - * Copyright 2001-2010 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. + * + * 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 * - * http://www.apache.org/licenses/LICENSE-2.0 + * 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. + * 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. */ /** @@ -42,8 +46,11 @@ namespace opensaml { class SAML_API SecurityPolicyRule; 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) @@ -143,6 +150,29 @@ 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< MessageDecoder,std::string,std::pair > MessageDecoderManager;