X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-opensaml.git;a=blobdiff_plain;f=saml%2Fsaml1%2Fprofile%2Fimpl%2FAssertionValidator.cpp;h=9b570e9fefea28cdfb160f7fbe20f61830e52011;hp=edb4fceb36ac0b3de4e6d5ffdd6cd3fd3d4d3e4b;hb=d8a4f024b89272eae00618fc39e6127b6c191edd;hpb=9f10292e987cc822929bb83f9462e21874b9863a diff --git a/saml/saml1/profile/impl/AssertionValidator.cpp b/saml/saml1/profile/impl/AssertionValidator.cpp index edb4fce..9b570e9 100644 --- a/saml/saml1/profile/impl/AssertionValidator.cpp +++ b/saml/saml1/profile/impl/AssertionValidator.cpp @@ -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);