Correct location of TransportOption feature, makes no sense inside policies.
[shibboleth/sp.git] / shibsp / ServiceProvider.h
index 2a322d6..9ef1dae 100644 (file)
@@ -26,6 +26,7 @@
 #include <shibsp/util/PropertySet.h>
 #ifndef SHIBSP_LITE
 # include <saml/binding/SecurityPolicyRule.h>
+# include <xmltooling/soap/SOAPTransport.h>
 # include <xmltooling/util/StorageService.h>
 #endif
 #include <xmltooling/Lockable.h>
@@ -115,13 +116,21 @@ namespace shibsp {
          * @return an array of policy rules
                 */
         virtual const std::vector<const opensaml::SecurityPolicyRule*>& getPolicyRules(const char* id) const=0;
+
+        /**
+         * Sets implementation-specific transport options.
+         *
+         * @param transport a SOAPTransport object
+         * @return  true iff all options were successfully set
+         */
+        virtual bool setTransportOptions(xmltooling::SOAPTransport& transport) const=0;
 #endif
 
         /**
          * Returns a RequestMapper instance.
          * 
          * @param required  true iff an exception should be thrown if no RequestMapper is available
-         * @param a RequestMapper
+         * @return  a RequestMapper
          */
         virtual RequestMapper* getRequestMapper(bool required=true) const=0;