Change license header, remove stale pkg files.
[shibboleth/cpp-opensaml.git] / saml / signature / SignatureProfileValidator.h
index 3c96d32..1c4f2c2 100644 (file)
@@ -1,50 +1,60 @@
-/*\r
- *  Copyright 2001-2006 Internet2\r
- * \r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *     http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- */\r
-\r
-/**\r
- * @file SignatureProfileValidator.h\r
- * \r
- * SAML-specific signature profile validator \r
- */\r
-\r
-#ifndef __saml_sigval_h__\r
-#define __saml_sigval_h__\r
-\r
-#include <saml/base.h>\r
-#include <saml/signature/SignableObject.h>\r
-#include <xmltooling/validation/Validator.h>\r
-\r
-namespace opensaml {\r
-\r
-    /**\r
-     * SAML-specific signature profile validator.\r
-     */\r
-    class SAML_API SignatureProfileValidator : public virtual xmltooling::Validator\r
-    {\r
-    public:\r
-        SignatureProfileValidator() {}\r
-        virtual ~SignatureProfileValidator() {}\r
-\r
-        void validate(const xmltooling::XMLObject* xmlObject) const;\r
-        \r
-        SignatureProfileValidator* clone() const {\r
-            return new SignatureProfileValidator();\r
-        }\r
-    };\r
-\r
-};\r
-\r
-#endif /* __saml_sigval_h__ */\r
+/**
+ * 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
+ *
+ * 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/signature/SignatureProfileValidator.h
+ * 
+ * SAML-specific signature profile validator.
+ */
+
+#ifndef __saml_sigval_h__
+#define __saml_sigval_h__
+
+#include <saml/base.h>
+#include <xmltooling/validation/Validator.h>
+
+namespace xmlsignature {
+    class XMLTOOL_API Signature;
+};
+
+namespace opensaml {
+
+    /**
+     * SAML-specific signature profile validator.
+     */
+    class SAML_API SignatureProfileValidator : public virtual xmltooling::Validator
+    {
+    public:
+        SignatureProfileValidator();
+        virtual ~SignatureProfileValidator();
+
+        void validate(const xmltooling::XMLObject* xmlObject) const;
+        
+        /**
+         * Type-safe validation method.
+         *
+         * @param signature Signature to validate
+         */
+        void validateSignature(const xmlsignature::Signature& signature) const;
+    };
+
+};
+
+#endif /* __saml_sigval_h__ */