X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-opensaml.git;a=blobdiff_plain;f=saml%2Fsaml1%2Fcore%2Fimpl%2FAssertionsSchemaValidators.cpp;h=72a6143618d93f8e3a0b9c99f29c990121203c4e;hp=df178bdb4009c7787bc4596533a7eeabe0599d09;hb=5263186a620ca02913980ad2d35d4045844e7a05;hpb=f458fb00695e7cbcd29efd3f8c940cf5bba2c818 diff --git a/saml/saml1/core/impl/AssertionsSchemaValidators.cpp b/saml/saml1/core/impl/AssertionsSchemaValidators.cpp index df178bd..72a6143 100644 --- a/saml/saml1/core/impl/AssertionsSchemaValidators.cpp +++ b/saml/saml1/core/impl/AssertionsSchemaValidators.cpp @@ -144,12 +144,12 @@ namespace opensaml { #define REGISTER_ELEMENT(cname) \ q=QName(SAMLConstants::SAML1_NS,cname::LOCAL_NAME); \ XMLObjectBuilder::registerBuilder(q,new cname##Builder()); \ - AssertionSchemaValidators.registerValidator(q,new cname##SchemaValidator()) + SchemaValidators.registerValidator(q,new cname##SchemaValidator()) #define REGISTER_TYPE(cname) \ q=QName(SAMLConstants::SAML1_NS,cname::TYPE_NAME); \ XMLObjectBuilder::registerBuilder(q,new cname##Builder()); \ - AssertionSchemaValidators.registerValidator(q,new cname##SchemaValidator()) + SchemaValidators.registerValidator(q,new cname##SchemaValidator()) #define REGISTER_ELEMENT_NOVAL(cname) \ q=QName(SAMLConstants::SAML1_NS,cname::LOCAL_NAME); \ @@ -159,8 +159,6 @@ namespace opensaml { q=QName(SAMLConstants::SAML1_NS,cname::TYPE_NAME); \ XMLObjectBuilder::registerBuilder(q,new cname##Builder()); -ValidatorSuite opensaml::saml1::AssertionSchemaValidators("AssertionSchemaValidators"); - void opensaml::saml1::registerAssertionClasses() { QName q; REGISTER_ELEMENT(Action);