Change license header.
[shibboleth/cpp-sp.git] / shibsp / metadata / MetadataProviderCriteria.h
index 286a4a0..a204c70 100644 (file)
@@ -1,17 +1,21 @@
-/*
- *  Copyright 2001-2008 Internet2
+/**
+ * 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.
  *
- * 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
+ * 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.
  */
 
 /**
 #ifndef __shibsp_metaprovcrit_h__
 #define __shibsp_metaprovcrit_h__
 
-#include <shibsp/Application.h>
+#include <shibsp/base.h>
+
 #include <saml/saml2/metadata/MetadataProvider.h>
 
 namespace shibsp {
 
+    class SHIBSP_API Application;
+
     /**
      * Extended criteria for metadata lookup for Shibboleth-aware metadata providers.
      */
@@ -38,8 +45,7 @@ namespace shibsp {
          *
          * @param app   application performing the lookup
          */
-        MetadataProviderCriteria(const Application& app) : application(app) {
-        }
+        MetadataProviderCriteria(const Application& app);
 
         /**
          * Constructor.
@@ -50,9 +56,9 @@ namespace shibsp {
          * @param prot  protocol support constant, if any
          * @param valid true iff stale metadata should be ignored
          */
-        MetadataProviderCriteria(const Application& app, const XMLCh* id, const xmltooling::QName* q=NULL, const XMLCh* prot=NULL, bool valid=true)
-            : opensaml::saml2md::MetadataProvider::Criteria(id, q, prot, valid), application(app) {
-        }
+        MetadataProviderCriteria(
+            const Application& app, const XMLCh* id, const xmltooling::QName* q=nullptr, const XMLCh* prot=nullptr, bool valid=true
+            );
 
         /**
          * Constructor.
@@ -63,9 +69,9 @@ namespace shibsp {
          * @param prot  protocol support constant, if any
          * @param valid true iff stale metadata should be ignored
          */
-        MetadataProviderCriteria(const Application& app, const char* id, const xmltooling::QName* q=NULL, const XMLCh* prot=NULL, bool valid=true)
-            : opensaml::saml2md::MetadataProvider::Criteria(id, q, prot, valid), application(app) {
-        }
+        MetadataProviderCriteria(
+            const Application& app, const char* id, const xmltooling::QName* q=nullptr, const XMLCh* prot=nullptr, bool valid=true
+            );
 
         /**
          * Constructor.
@@ -76,11 +82,13 @@ namespace shibsp {
          * @param prot  protocol support constant, if any
          * @param valid true iff stale metadata should be ignored
          */
-        MetadataProviderCriteria(const Application& app, const opensaml::SAMLArtifact* a, const xmltooling::QName* q=NULL, const XMLCh* prot=NULL, bool valid=true)
-            : opensaml::saml2md::MetadataProvider::Criteria(a, q, prot, valid), application(app) {
-        }
+        MetadataProviderCriteria(
+            const Application& app, const opensaml::SAMLArtifact* a, const xmltooling::QName* q=nullptr, const XMLCh* prot=nullptr, bool valid=true
+            );
+
+        ~MetadataProviderCriteria();
 
-        /** Controls whether stale metadata is ignored. */
+        /** The application performing the lookup. */
         const Application& application;
     };
 };