X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=saml%2Fsaml2%2Fprofile%2Fimpl%2FAssertion20Validator.cpp;fp=saml%2Fsaml2%2Fprofile%2Fimpl%2FAssertion20Validator.cpp;h=b118d4b53073ecf90692041a445ea2b6b9cd79cd;hb=d8a4f024b89272eae00618fc39e6127b6c191edd;hp=b5c857fda3d1ace52db7571488f35cb69940793e;hpb=9f10292e987cc822929bb83f9462e21874b9863a;p=shibboleth%2Fcpp-opensaml.git diff --git a/saml/saml2/profile/impl/Assertion20Validator.cpp b/saml/saml2/profile/impl/Assertion20Validator.cpp index b5c857f..b118d4b 100644 --- a/saml/saml2/profile/impl/Assertion20Validator.cpp +++ b/saml/saml2/profile/impl/Assertion20Validator.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2001-2007 Internet2 + * Copyright 2001-2009 Internet2 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ /** * Assertion20Validator.cpp * - * SAML 2.0 basic assertion validator + * SAML 2.0 basic assertion validator. */ #include "internal.h" @@ -33,6 +33,15 @@ using namespace xmltooling::logging; using namespace xmltooling; using namespace std; +AssertionValidator::AssertionValidator(const XMLCh* recipient, const vector* audiences, time_t ts) + : m_recipient(recipient), m_audiences(audiences), m_ts(ts) +{ +} + +AssertionValidator::~AssertionValidator() +{ +} + void AssertionValidator::validate(const xmltooling::XMLObject* xmlObject) const { const Assertion* a=dynamic_cast(xmlObject);